AYON: Addons creation enhancements (#5356)

* updated nuke settings

* added addon version to zip filename

* fix Pattern type hint

* added ignored subdirs for openpype

* added titles to addons

* type hint fix - again

* modified settings conversion

* updated aftereffects settings

* updated blender settings

* updated clockify settings

* updated core settings

* updated deadline settings

* updated harmo settings

* updated kistsu settings

* updated maya settings

* updated muster settings

* updated royal render settings

* updated timers manager settings

* updated traypublisher settings

* implemented conversion of rr paths

* formatting fix
This commit is contained in:
Jakub Trllo 2023-07-28 11:51:23 +02:00 committed by GitHub
parent 6deace97d6
commit b43cac0b51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 341 additions and 246 deletions

View file

@ -3,7 +3,23 @@ from ayon_server.settings import BaseSettingsModel
class TimersManagerSettings(BaseSettingsModel):
auto_stop: bool = Field(True, title="Auto stop timer")
full_time: int = Field(15, title="Max idle time")
message_time: float = Field(0.5, title="When dialog will show")
disregard_publishing: bool = Field(False, title="Disregard publishing")
auto_stop: bool = Field(
True,
title="Auto stop timer",
scope=["studio"],
)
full_time: int = Field(
15,
title="Max idle time",
scope=["studio"],
)
message_time: float = Field(
0.5,
title="When dialog will show",
scope=["studio"],
)
disregard_publishing: bool = Field(
False,
title="Disregard publishing",
scope=["studio"],
)