Update descriptions for 'View' and 'Colorspace' settings. Add deprecation notice for 'Baking' setting in ImageIOSettings.

- Update descriptions for 'View' and 'Colorspace' settings to include information about using Anatomy context tokens.
- Add a deprecation notice for the 'Baking' setting in ImageIOSettings, recommending the use of 'Baking Target Colorspace'.
This commit is contained in:
Jakub Jezek 2024-06-07 18:19:18 +02:00
parent 67b59f9af4
commit 35e180149b
No known key found for this signature in database
GPG key ID: 06DBD609ADF27FD9
2 changed files with 11 additions and 4 deletions

View file

@ -153,7 +153,10 @@ class DisplayAndViewProfileModel(BaseSettingsModel):
view: str = SettingsField(
"",
title="View",
description="What view to use",
description=(
"What view to use. Anatomy context tokens can "
"be used to dynamically set the value."
),
)
@ -175,7 +178,10 @@ class ColorspaceConfigurationModel(BaseSettingsModel):
colorspace: str = SettingsField(
"",
title="Colorspace",
description="What colorspace name to use",
description=(
"What colorspace name to use. Anatomy context tokens can "
"be used to dynamically set the value."
),
)
display_view: DisplayAndViewProfileModel = SettingsField(

View file

@ -207,8 +207,9 @@ class ImageIOSettings(BaseSettingsModel):
baking: ViewProcessModel = SettingsField(
default_factory=ViewProcessModel,
title="Baking",
description="""Baking profile is used during
publishing baked colorspace data at knob viewerProcess"""
description="""[DEPRECATED - use 'Baking Target Colorspace' instead]
Baking profile is used during
publishing baked colorspace data at knob viewerProcess""",
)
workfile: WorkfileColorspaceSettings = SettingsField(