Merge pull request #4097 from pypeclub/feature/validate_frame_range_settings

Publisher: Settings for validate frame range
This commit is contained in:
Jakub Trllo 2022-11-15 15:27:54 +01:00 committed by GitHub
commit 39d1467b35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 51 additions and 0 deletions

View file

@ -303,5 +303,12 @@
"extensions": [
".mov"
]
},
"publish": {
"ValidateFrameRange": {
"enabled": true,
"optional": true,
"active": true
}
}
}

View file

@ -311,6 +311,24 @@
"object_type": "text"
}
]
},
{
"type": "dict",
"collapsible": true,
"key": "publish",
"label": "Publish plugins",
"children": [
{
"type": "schema_template",
"name": "template_validate_plugin",
"template_data": [
{
"key": "ValidateFrameRange",
"label": "Validate frame range"
}
]
}
]
}
]
}

View file

@ -0,0 +1,26 @@
[
{
"type": "dict",
"collapsible": true,
"key": "{key}",
"label": "{label}",
"checkbox_key": "enabled",
"children": [
{
"type": "boolean",
"key": "enabled",
"label": "Enabled"
},
{
"type": "boolean",
"key": "optional",
"label": "Optional"
},
{
"type": "boolean",
"key": "active",
"label": "Active"
}
]
}
]