Skip to content

Commit

Permalink
Merge pull request #579 from ynput/bugfix/photoshop-add-missing-setti…
Browse files Browse the repository at this point in the history
…ngs-category

Photoshop: Add missing settings category
  • Loading branch information
iLLiCiTiT committed May 31, 2024
2 parents 5a06f9b + 543ae6d commit 242bc87
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class ExtractReview(publish.Extractor):
label = "Extract Review"
hosts = ["photoshop"]
families = ["review"]
settings_category = "photoshop"

# Extract Options
jpg_options = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class ValidateNamingRepair(pyblish.api.Action):
label = "Repair"
icon = "wrench"
on = "failed"
settings_category = "photoshop"

def process(self, context, plugin):

Expand Down
2 changes: 1 addition & 1 deletion server_addon/photoshop/client/ayon_photoshop/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring AYON addon 'photoshop' version."""
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion server_addon/photoshop/package.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "photoshop"
title = "Photoshop"
version = "0.2.0"
version = "0.2.1"

client_dir = "ayon_photoshop"

Expand Down

0 comments on commit 242bc87

Please sign in to comment.