Merge pull request #5906 from ynput/enhancement/OP-7197_nuke-default-colorspace-settings

Nuke: updated colorspace settings
This commit is contained in:
Jakub Ježek 2023-11-16 12:57:52 +01:00 committed by GitHub
commit 45197364c6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 18 deletions

View file

@ -19,16 +19,16 @@
"rules": {}
},
"viewer": {
"viewerProcess": "sRGB"
"viewerProcess": "sRGB (default)"
},
"baking": {
"viewerProcess": "rec709"
"viewerProcess": "rec709 (default)"
},
"workfile": {
"colorManagement": "Nuke",
"colorManagement": "OCIO",
"OCIO_config": "nuke-default",
"workingSpaceLUT": "linear",
"monitorLut": "sRGB"
"workingSpaceLUT": "scene_linear",
"monitorLut": "sRGB (default)"
},
"nodes": {
"requiredNodes": [
@ -76,7 +76,7 @@
{
"type": "text",
"name": "colorspace",
"value": "linear"
"value": "scene_linear"
},
{
"type": "bool",
@ -129,7 +129,7 @@
{
"type": "text",
"name": "colorspace",
"value": "linear"
"value": "scene_linear"
},
{
"type": "bool",
@ -177,7 +177,7 @@
{
"type": "text",
"name": "colorspace",
"value": "sRGB"
"value": "texture_paint"
},
{
"type": "bool",
@ -193,7 +193,7 @@
"inputs": [
{
"regex": "(beauty).*(?=.exr)",
"colorspace": "linear"
"colorspace": "scene_linear"
}
]
}

View file

@ -213,16 +213,16 @@ class ImageIOSettings(BaseSettingsModel):
DEFAULT_IMAGEIO_SETTINGS = {
"viewer": {
"viewerProcess": "sRGB"
"viewerProcess": "sRGB (default)"
},
"baking": {
"viewerProcess": "rec709"
"viewerProcess": "rec709 (default)"
},
"workfile": {
"color_management": "Nuke",
"color_management": "OCIO",
"native_ocio_config": "nuke-default",
"working_space": "linear",
"thumbnail_space": "sRGB",
"working_space": "scene_linear",
"thumbnail_space": "sRGB (default)",
},
"nodes": {
"required_nodes": [
@ -269,7 +269,7 @@ DEFAULT_IMAGEIO_SETTINGS = {
{
"type": "text",
"name": "colorspace",
"text": "linear"
"text": "scene_linear"
},
{
"type": "boolean",
@ -321,7 +321,7 @@ DEFAULT_IMAGEIO_SETTINGS = {
{
"type": "text",
"name": "colorspace",
"text": "linear"
"text": "scene_linear"
},
{
"type": "boolean",
@ -368,7 +368,7 @@ DEFAULT_IMAGEIO_SETTINGS = {
{
"type": "text",
"name": "colorspace",
"text": "sRGB"
"text": "texture_paint"
},
{
"type": "boolean",

View file

@ -1 +1 @@
__version__ = "0.1.4"
__version__ = "0.1.5"