diff --git a/extension-node-map.json b/extension-node-map.json index ff33947b..9af436ee 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -7952,6 +7952,7 @@ "DATASET_OpenAIChat", "DATASET_OpenAIChatImage", "DATASET_SearchAndReplace", + "DATASET_TXTFileLoader", "DATASET_TXTFileSaver", "DATASET_TagManipulatorByImageNames", "DATASET_xCopy" diff --git a/glob/manager_core.py b/glob/manager_core.py index d665d17e..765a89c2 100644 --- a/glob/manager_core.py +++ b/glob/manager_core.py @@ -23,7 +23,7 @@ sys.path.append(glob_path) import cm_global from manager_util import * -version = [2, 38] +version = [2, 38, 1] version_str = f"V{version[0]}.{version[1]}" + (f'.{version[2]}' if len(version) > 2 else '') comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) diff --git a/js/comfyui-manager.js b/js/comfyui-manager.js index 1f07f4a5..53544c15 100644 --- a/js/comfyui-manager.js +++ b/js/comfyui-manager.js @@ -25,6 +25,7 @@ docStyle.innerHTML = ` height: 520px; box-sizing: content-box; z-index: 10000; + overflow-y: auto; } .cb-widget { diff --git a/node_db/new/custom-node-list.json b/node_db/new/custom-node-list.json index 782c5b58..282f8588 100644 --- a/node_db/new/custom-node-list.json +++ b/node_db/new/custom-node-list.json @@ -13,6 +13,7 @@ + { "author": "kijai", "title": "ComfyUI-B-LoRA", @@ -24,6 +25,17 @@ "install_type": "git-clone", "description": "Load and apply B-LoRA models, currently B-LoRA models only works with SDXL (sdxl_base_1.0)." }, + { + "author": "koopke", + "title": "ComfyUI-websocket-data-channel", + "id": "websocket-data-channel", + "reference": "https://github.com/koopke/ComfyUI-websocket-data-channel", + "files": [ + "https://github.com/koopke/ComfyUI-websocket-data-channel" + ], + "install_type": "git-clone", + "description": "Sending Data from a ComfyUI workflow to the websocket." + }, { "author": "baicai99", "title": "ComfyUI-FrameSkipping", diff --git a/node_db/new/extension-node-map.json b/node_db/new/extension-node-map.json index ff33947b..9af436ee 100644 --- a/node_db/new/extension-node-map.json +++ b/node_db/new/extension-node-map.json @@ -7952,6 +7952,7 @@ "DATASET_OpenAIChat", "DATASET_OpenAIChatImage", "DATASET_SearchAndReplace", + "DATASET_TXTFileLoader", "DATASET_TXTFileSaver", "DATASET_TagManipulatorByImageNames", "DATASET_xCopy" diff --git a/pyproject.toml b/pyproject.toml index 4bd3661a..f075388f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-manager" description = "ComfyUI-Manager provides features to install and manage custom nodes for ComfyUI, as well as various functionalities to assist with ComfyUI." -version = "2.38" +version = "2.38.1" license = "LICENSE" dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]