Merge pull request #1361 from ynput/bugfix/some-batchdelivery-related-issues

BatchDelivery related enhancements
This commit is contained in:
Jakub Trllo 2025-08-07 09:35:32 +02:00 committed by GitHub
commit 7bc54eb9ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 10 additions and 5 deletions

View file

@ -1403,7 +1403,12 @@ def _get_display_view_colorspace_name(config_path, display, view):
""" """
config = _get_ocio_config(config_path) config = _get_ocio_config(config_path)
return config.getDisplayViewColorSpaceName(display, view) colorspace = config.getDisplayViewColorSpaceName(display, view)
# Special token. See https://opencolorio.readthedocs.io/en/latest/guides/authoring/authoring.html#shared-views # noqa
if colorspace == "<USE_DISPLAY_NAME>":
colorspace = display
return colorspace
def _get_ocio_config_colorspaces(config_path): def _get_ocio_config_colorspaces(config_path):

View file

@ -39,7 +39,7 @@ class CollectAudio(pyblish.api.ContextPlugin):
"blender", "blender",
"houdini", "houdini",
"max", "max",
"circuit", "batchdelivery",
] ]
settings_category = "core" settings_category = "core"

View file

@ -55,7 +55,7 @@ class ExtractBurnin(publish.Extractor):
"max", "max",
"blender", "blender",
"unreal", "unreal",
"circuit", "batchdelivery",
] ]
settings_category = "core" settings_category = "core"

View file

@ -161,7 +161,7 @@ class ExtractReview(pyblish.api.InstancePlugin):
"aftereffects", "aftereffects",
"flame", "flame",
"unreal", "unreal",
"circuit", "batchdelivery",
"photoshop" "photoshop"
] ]

View file

@ -41,7 +41,7 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
"photoshop", "photoshop",
"unreal", "unreal",
"houdini", "houdini",
"circuit", "batchdelivery",
] ]
settings_category = "core" settings_category = "core"
enabled = False enabled = False