fix photoshop settings

This commit is contained in:
Jakub Trllo 2024-02-09 13:14:16 +01:00
parent f6f09ce43b
commit 8fb6e1e4d4
2 changed files with 4 additions and 4 deletions

View file

@ -62,9 +62,9 @@ class CollectColorCodedInstancesPlugin(BaseSettingsModel):
enum_resolver=lambda: create_flatten_image_enum,
)
flatten_product_type_template: str = SettingsField(
flatten_product_name_template: str = SettingsField(
"",
title="Subset template for flatten image"
title="Product name template for flatten image"
)
color_code_mapping: list[ColorCodeMappings] = SettingsField(
@ -178,7 +178,7 @@ class PhotoshopPublishPlugins(BaseSettingsModel):
DEFAULT_PUBLISH_SETTINGS = {
"CollectColorCodedInstances": {
"create_flatten_image": "no",
"flatten_product_type_template": "",
"flatten_product_name_template": "",
"color_code_mapping": []
},
"CollectReview": {

View file

@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
"""Package declaring addon version."""
__version__ = "0.1.1"
__version__ = "0.1.2"