Skip to content

Commit

Permalink
update DB
Browse files Browse the repository at this point in the history
  • Loading branch information
ltdrdata committed Jun 16, 2024
1 parent c60492d commit a05c76e
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions extension-node-map.json
Original file line number Diff line number Diff line change
Expand Up @@ -7952,6 +7952,7 @@
"DATASET_OpenAIChat",
"DATASET_OpenAIChatImage",
"DATASET_SearchAndReplace",
"DATASET_TXTFileLoader",
"DATASET_TXTFileSaver",
"DATASET_TagManipulatorByImageNames",
"DATASET_xCopy"
Expand Down
2 changes: 1 addition & 1 deletion glob/manager_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
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__), '..'))
Expand Down
1 change: 1 addition & 0 deletions js/comfyui-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ docStyle.innerHTML = `
height: 520px;
box-sizing: content-box;
z-index: 10000;
overflow-y: auto;
}
.cb-widget {
Expand Down
12 changes: 12 additions & 0 deletions node_db/new/custom-node-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@




{
"author": "kijai",
"title": "ComfyUI-B-LoRA",
Expand All @@ -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",
Expand Down
1 change: 1 addition & 0 deletions node_db/new/extension-node-map.json
Original file line number Diff line number Diff line change
Expand Up @@ -7952,6 +7952,7 @@
"DATASET_OpenAIChat",
"DATASET_OpenAIChatImage",
"DATASET_SearchAndReplace",
"DATASET_TXTFileLoader",
"DATASET_TXTFileSaver",
"DATASET_TagManipulatorByImageNames",
"DATASET_xCopy"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down

0 comments on commit a05c76e

Please sign in to comment.