mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
Merge remote-tracking branch 'origin/develop' into feature/OP-2378_maya-to-unreal-static-meshes
This commit is contained in:
commit
9797439d7d
74 changed files with 6209 additions and 304 deletions
|
|
@ -4,6 +4,7 @@
|
|||
"admin_password": "",
|
||||
"production_version": "",
|
||||
"staging_version": "",
|
||||
"version_check_interval": 5,
|
||||
"environment": {
|
||||
"__environment_keys__": {
|
||||
"global": []
|
||||
|
|
|
|||
|
|
@ -469,6 +469,17 @@ class PathInput(InputEntity):
|
|||
# GUI attributes
|
||||
self.placeholder_text = self.schema_data.get("placeholder")
|
||||
|
||||
def set(self, value):
|
||||
# Strip value
|
||||
super(PathInput, self).set(value.strip())
|
||||
|
||||
def set_override_state(self, state, ignore_missing_defaults):
|
||||
super(PathInput, self).set_override_state(
|
||||
state, ignore_missing_defaults
|
||||
)
|
||||
# Strip current value
|
||||
self._current_value = self._current_value.strip()
|
||||
|
||||
|
||||
class RawJsonEntity(InputEntity):
|
||||
schema_types = ["raw-json"]
|
||||
|
|
|
|||
|
|
@ -47,6 +47,19 @@
|
|||
{
|
||||
"type": "splitter"
|
||||
},
|
||||
{
|
||||
"type": "label",
|
||||
"label": "Trigger validation if running OpenPype is using studio defined version each 'n' <b>minutes</b>. Validation happens in OpenPype tray application."
|
||||
},
|
||||
{
|
||||
"type": "number",
|
||||
"key": "version_check_interval",
|
||||
"label": "Version check interval",
|
||||
"minimum": 0
|
||||
},
|
||||
{
|
||||
"type": "splitter"
|
||||
},
|
||||
{
|
||||
"key": "environment",
|
||||
"label": "Environment",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue