Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Offloaded delivery processing workflow changes #930

Draft
wants to merge 10 commits into
base: develop
Choose a base branch
from
Draft
1 change: 1 addition & 0 deletions client/ayon_core/plugins/publish/collect_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class CollectAudio(pyblish.api.ContextPlugin):
"blender",
"houdini",
"max",
"circuit",
]

audio_product_name = "audioMain"
Expand Down
3 changes: 1 addition & 2 deletions client/ayon_core/plugins/publish/collect_otio_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ class CollectOtioReview(pyblish.api.InstancePlugin):

label = "Collect OTIO Review"
order = pyblish.api.CollectorOrder - 0.078
families = ["clip"]
hosts = ["resolve", "hiero", "flame"]
families = ["editorial.otio.review"]
Copy link
Member

@iLLiCiTiT iLLiCiTiT Nov 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change will disable otio review for all previous hosts ("resolve", "hiero", "flame"), are there related PRs in their repositories?


def process(self, instance):
# Not all hosts can import this module.
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_burnin.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ class ExtractBurnin(publish.Extractor):
"houdini",
"max",
"blender",
"unreal"
"unreal",
"circuit",
]

optional = True
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ class ExtractReview(pyblish.api.InstancePlugin):
"webpublisher",
"aftereffects",
"flame",
"unreal"
"unreal",
"circuit",
]

# Supported extensions
Expand Down
3 changes: 2 additions & 1 deletion client/ayon_core/plugins/publish/extract_thumbnail.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class ExtractThumbnail(pyblish.api.InstancePlugin):
"substancepainter",
"nuke",
"aftereffects",
"unreal"
"unreal",
"circuit",
]
enabled = False

Expand Down
Loading