Merge pull request #579 from ynput/bugfix/photoshop-add-missing-settings-category

Photoshop: Add missing settings category
This commit is contained in:
Jakub Trllo 2024-05-31 17:19:55 +02:00 committed by GitHub
commit 242bc8796b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 8 additions and 2 deletions

View file

@ -33,6 +33,7 @@ class CollectColorCodedInstances(pyblish.api.ContextPlugin):
order = pyblish.api.CollectorOrder
hosts = ["photoshop"]
targets = ["automated"]
settings_category = "photoshop"
# configurable by Settings
color_code_mapping = []

View file

@ -16,6 +16,7 @@ class CollectReview(pyblish.api.ContextPlugin):
label = "Collect Review"
hosts = ["photoshop"]
order = pyblish.api.CollectorOrder + 0.1
settings_category = "photoshop"
def process(self, context):
for instance in context:

View file

@ -22,6 +22,7 @@ class CollectVersion(pyblish.api.InstancePlugin):
hosts = ["photoshop"]
families = ["image", "review", "workfile"]
settings_category = "photoshop"
def process(self, instance):
workfile_version = instance.context.data["version"]

View file

@ -22,6 +22,7 @@ class ExtractImage(pyblish.api.ContextPlugin):
families = ["image", "background"]
formats = ["png", "jpg"]
settings_category = "photoshop"
def process(self, context):
stub = photoshop.stub()

View file

@ -29,6 +29,7 @@ class ExtractReview(publish.Extractor):
label = "Extract Review"
hosts = ["photoshop"]
families = ["review"]
settings_category = "photoshop"
# Extract Options
jpg_options = None

View file

@ -16,6 +16,7 @@ class ValidateNamingRepair(pyblish.api.Action):
label = "Repair"
icon = "wrench"
on = "failed"
settings_category = "photoshop"
def process(self, context, plugin):

View file

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'photoshop' version."""
__version__ = "0.2.0"
__version__ = "0.2.1"

View file

@ -1,6 +1,6 @@
name = "photoshop"
title = "Photoshop"
version = "0.2.0"
version = "0.2.1"
client_dir = "ayon_photoshop"