From 3aa83feeec3771d98eb780550d4b6cb9d98e88ae Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Wed, 4 Jun 2025 18:56:38 -0700 Subject: [PATCH 1/2] [refactor] remove version prefixes from Ideogram node categories (#8418) Simplifies node organization by consolidating all Ideogram nodes under a single category instead of version-specific subcategories. --- comfy_api_nodes/nodes_ideogram.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/comfy_api_nodes/nodes_ideogram.py b/comfy_api_nodes/nodes_ideogram.py index b1cbf511dca9..b8487355fadb 100644 --- a/comfy_api_nodes/nodes_ideogram.py +++ b/comfy_api_nodes/nodes_ideogram.py @@ -324,7 +324,7 @@ def INPUT_TYPES(cls) -> InputTypeDict: RETURN_TYPES = (IO.IMAGE,) FUNCTION = "api_call" - CATEGORY = "api node/image/Ideogram/v1" + CATEGORY = "api node/image/Ideogram" DESCRIPTION = cleandoc(__doc__ or "") API_NODE = True @@ -483,7 +483,7 @@ def INPUT_TYPES(cls) -> InputTypeDict: RETURN_TYPES = (IO.IMAGE,) FUNCTION = "api_call" - CATEGORY = "api node/image/Ideogram/v2" + CATEGORY = "api node/image/Ideogram" DESCRIPTION = cleandoc(__doc__ or "") API_NODE = True @@ -649,7 +649,7 @@ def INPUT_TYPES(cls) -> InputTypeDict: RETURN_TYPES = (IO.IMAGE,) FUNCTION = "api_call" - CATEGORY = "api node/image/Ideogram/v3" + CATEGORY = "api node/image/Ideogram" DESCRIPTION = cleandoc(__doc__ or "") API_NODE = True From 866f6cdab4bd5de95ee6296d1b418c455f67f929 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Wed, 4 Jun 2025 22:18:54 -0400 Subject: [PATCH 2/2] ComfyUI version 0.3.40 --- comfyui_version.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comfyui_version.py b/comfyui_version.py index f742410b1c36..6962c366190f 100644 --- a/comfyui_version.py +++ b/comfyui_version.py @@ -1,3 +1,3 @@ # This file is automatically generated by the build process when version is # updated in pyproject.toml. -__version__ = "0.3.39" +__version__ = "0.3.40" diff --git a/pyproject.toml b/pyproject.toml index 28a6158e028d..03841bc945bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ComfyUI" -version = "0.3.39" +version = "0.3.40" readme = "README.md" license = { file = "LICENSE" } requires-python = ">=3.9"