Merge remote-tracking branch 'origin/develop' into feature/OP-2378_maya-to-unreal-static-meshes

This commit is contained in:
Ondrej Samohel 2022-01-19 18:11:14 +01:00
commit 9797439d7d
No known key found for this signature in database
GPG key ID: 02376E18990A97C6
74 changed files with 6209 additions and 304 deletions

View file

@ -4,6 +4,7 @@
"admin_password": "",
"production_version": "",
"staging_version": "",
"version_check_interval": 5,
"environment": {
"__environment_keys__": {
"global": []

View file

@ -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"]

View file

@ -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",