Rename visible node labels to DUMAS

This commit is contained in:
OpenClaw Agent
2026-07-10 09:49:50 +00:00
parent 67696a4e59
commit bd56a21b7f
3 changed files with 14 additions and 14 deletions

View File

@@ -27,12 +27,12 @@ NODE_CLASS_MAPPINGS = {
}
NODE_DISPLAY_NAME_MAPPINGS = {
"LTXDirectorCS": "LTX Director CS",
"MSRCharacterCS": "MSR Character CS",
"MSRCharacterSetCS": "MSR Character Set CS",
"LTXDirectorGuideCS": "LTX Director Guide CS",
"LTXDirectorCropGuidesCS": "LTX Director Crop Guides CS",
"CleanLatentSliceCS": "Clean Latent Slice CS",
"LTXDirectorCS": "LTX Director DUMAS",
"MSRCharacterCS": "MSR Character DUMAS",
"MSRCharacterSetCS": "MSR Character Set DUMAS",
"LTXDirectorGuideCS": "LTX Director Guide DUMAS",
"LTXDirectorCropGuidesCS": "LTX Director Crop Guides DUMAS",
"CleanLatentSliceCS": "Clean Latent Slice DUMAS",
}
WEB_DIRECTORY = "./js"

View File

@@ -1643,8 +1643,8 @@ class LTXDirector(io.ComfyNode):
def define_schema(cls):
return io.Schema(
node_id="LTXDirectorCS",
display_name="LTX Director CS",
category="WhatDreamsCost CS",
display_name="LTX Director DUMAS",
category="WhatDreamsCost DUMAS",
description=(
"Same as Prompt Relay Encode, but local prompts and segment lengths are edited "
"visually as draggable blocks on a timeline. The duration_frames input only sets the "

View File

@@ -21,8 +21,8 @@ class MSRCharacter(io.ComfyNode):
def define_schema(cls):
return io.Schema(
node_id="MSRCharacterCS",
display_name="MSR Character CS",
category="WhatDreamsCost CS",
display_name="MSR Character DUMAS",
category="WhatDreamsCost DUMAS",
description=(
"Reusable MSR character payload. Accepts up to two reference images plus "
"a description and optional alias for @alias prompt replacement."
@@ -78,8 +78,8 @@ class MSRCharacterSet(io.ComfyNode):
def define_schema(cls):
return io.Schema(
node_id="MSRCharacterSetCS",
display_name="MSR Character Set CS",
category="WhatDreamsCost CS",
display_name="MSR Character Set DUMAS",
category="WhatDreamsCost DUMAS",
description="Bundles up to six MSR Character nodes into one character set for the director.",
inputs=[
MSRCharacterData.Input("character_1", optional=True),