diff --git a/client/ayon_core/tools/workfiles/widgets/files_widget_published.py b/client/ayon_core/tools/workfiles/widgets/files_widget_published.py index 2ce8569a9b..07122046be 100644 --- a/client/ayon_core/tools/workfiles/widgets/files_widget_published.py +++ b/client/ayon_core/tools/workfiles/widgets/files_widget_published.py @@ -10,7 +10,6 @@ from ayon_core.tools.utils.delegates import PrettyTimeDelegate from .utils import BaseOverlayFrame - REPRE_ID_ROLE = QtCore.Qt.UserRole + 1 FILEPATH_ROLE = QtCore.Qt.UserRole + 2 AUTHOR_ROLE = QtCore.Qt.UserRole + 3 @@ -249,7 +248,7 @@ class PublishedFilesModel(QtGui.QStandardItemModel): # Handle roles for first column col = index.column() - if col != 1: + if col == 0: return super().data(index, role) if role == QtCore.Qt.DecorationRole: diff --git a/server_addon/aftereffects/server/settings/imageio.py b/server_addon/aftereffects/server/settings/imageio.py index 4657425c81..c191af5d6c 100644 --- a/server_addon/aftereffects/server/settings/imageio.py +++ b/server_addon/aftereffects/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/blender/server/settings/imageio.py b/server_addon/blender/server/settings/imageio.py index 412d01638f..06eec09e7b 100644 --- a/server_addon/blender/server/settings/imageio.py +++ b/server_addon/blender/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/celaction/server/imageio.py b/server_addon/celaction/server/imageio.py index 1e1ac6ff52..e0e685a244 100644 --- a/server_addon/celaction/server/imageio.py +++ b/server_addon/celaction/server/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/flame/server/settings/imageio.py b/server_addon/flame/server/settings/imageio.py index 3f6ec31ef4..abd058ee13 100644 --- a/server_addon/flame/server/settings/imageio.py +++ b/server_addon/flame/server/settings/imageio.py @@ -40,13 +40,28 @@ class ImageIORemappingModel(BaseSettingsModel): class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/fusion/server/imageio.py b/server_addon/fusion/server/imageio.py index e93dc2ae00..4d4688e269 100644 --- a/server_addon/fusion/server/imageio.py +++ b/server_addon/fusion/server/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/harmony/server/settings/imageio.py b/server_addon/harmony/server/settings/imageio.py index a4b481f91f..02f39a9d1b 100644 --- a/server_addon/harmony/server/settings/imageio.py +++ b/server_addon/harmony/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/hiero/server/settings/imageio.py b/server_addon/hiero/server/settings/imageio.py index 9e15e15597..83ae7024f9 100644 --- a/server_addon/hiero/server/settings/imageio.py +++ b/server_addon/hiero/server/settings/imageio.py @@ -87,13 +87,28 @@ class RegexInputsModel(BaseSettingsModel): class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/houdini/server/settings/imageio.py b/server_addon/houdini/server/settings/imageio.py index c4f4813d51..d77ff0751c 100644 --- a/server_addon/houdini/server/settings/imageio.py +++ b/server_addon/houdini/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/max/server/settings/imageio.py b/server_addon/max/server/settings/imageio.py index 221f85a41f..9c6f1b6409 100644 --- a/server_addon/max/server/settings/imageio.py +++ b/server_addon/max/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/maya/server/settings/imageio.py b/server_addon/maya/server/settings/imageio.py index f4cdf3fbff..521f89aea7 100644 --- a/server_addon/maya/server/settings/imageio.py +++ b/server_addon/maya/server/settings/imageio.py @@ -12,13 +12,28 @@ from ayon_server.settings import ( class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/nuke/server/settings/imageio.py b/server_addon/nuke/server/settings/imageio.py index 34deb351ed..a34cb4ab05 100644 --- a/server_addon/nuke/server/settings/imageio.py +++ b/server_addon/nuke/server/settings/imageio.py @@ -177,15 +177,28 @@ class MonitorProcessModel(BaseSettingsModel): class ImageIOConfigModel(BaseSettingsModel): - _isGroup: bool = True + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/photoshop/server/settings/imageio.py b/server_addon/photoshop/server/settings/imageio.py index 9178497c6c..c514f58173 100644 --- a/server_addon/photoshop/server/settings/imageio.py +++ b/server_addon/photoshop/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/resolve/server/imageio.py b/server_addon/resolve/server/imageio.py index 9540f5d1d9..301e98e90c 100644 --- a/server_addon/resolve/server/imageio.py +++ b/server_addon/resolve/server/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/substancepainter/server/settings/imageio.py b/server_addon/substancepainter/server/settings/imageio.py index ea685047b0..05aafd5215 100644 --- a/server_addon/substancepainter/server/settings/imageio.py +++ b/server_addon/substancepainter/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/traypublisher/server/settings/imageio.py b/server_addon/traypublisher/server/settings/imageio.py index 06a18a39ca..0f4659527f 100644 --- a/server_addon/traypublisher/server/settings/imageio.py +++ b/server_addon/traypublisher/server/settings/imageio.py @@ -4,13 +4,27 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) diff --git a/server_addon/tvpaint/server/settings/imageio.py b/server_addon/tvpaint/server/settings/imageio.py index aaf3fbf34e..ec7ee19e13 100644 --- a/server_addon/tvpaint/server/settings/imageio.py +++ b/server_addon/tvpaint/server/settings/imageio.py @@ -4,13 +4,28 @@ from ayon_server.settings.validators import ensure_unique_names class ImageIOConfigModel(BaseSettingsModel): + """[DEPRECATED] Addon OCIO config settings. Please set the OCIO config + path in the Core addon profiles here + (ayon+settings://core/imageio/ocio_config_profiles). + """ + override_global_config: bool = SettingsField( False, - title="Override global OCIO config" + title="Override global OCIO config", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), ) filepath: list[str] = SettingsField( default_factory=list, - title="Config path" + title="Config path", + description=( + "DEPRECATED functionality. Please set the OCIO config path in the " + "Core addon profiles here (ayon+settings://core/imageio/" + "ocio_config_profiles)." + ), )