update DB

This commit is contained in:
Dr.Lt.Data 2024-06-16 17:14:42 +09:00
parent c60492d275
commit a05c76eca9
6 changed files with 17 additions and 2 deletions

View File

@ -7952,6 +7952,7 @@
"DATASET_OpenAIChat", "DATASET_OpenAIChat",
"DATASET_OpenAIChatImage", "DATASET_OpenAIChatImage",
"DATASET_SearchAndReplace", "DATASET_SearchAndReplace",
"DATASET_TXTFileLoader",
"DATASET_TXTFileSaver", "DATASET_TXTFileSaver",
"DATASET_TagManipulatorByImageNames", "DATASET_TagManipulatorByImageNames",
"DATASET_xCopy" "DATASET_xCopy"

View File

@ -23,7 +23,7 @@ sys.path.append(glob_path)
import cm_global import cm_global
from manager_util import * 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 '') 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__), '..')) comfyui_manager_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))

View File

@ -25,6 +25,7 @@ docStyle.innerHTML = `
height: 520px; height: 520px;
box-sizing: content-box; box-sizing: content-box;
z-index: 10000; z-index: 10000;
overflow-y: auto;
} }
.cb-widget { .cb-widget {

View File

@ -13,6 +13,7 @@
{ {
"author": "kijai", "author": "kijai",
"title": "ComfyUI-B-LoRA", "title": "ComfyUI-B-LoRA",
@ -24,6 +25,17 @@
"install_type": "git-clone", "install_type": "git-clone",
"description": "Load and apply B-LoRA models, currently B-LoRA models only works with SDXL (sdxl_base_1.0)." "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", "author": "baicai99",
"title": "ComfyUI-FrameSkipping", "title": "ComfyUI-FrameSkipping",

View File

@ -7952,6 +7952,7 @@
"DATASET_OpenAIChat", "DATASET_OpenAIChat",
"DATASET_OpenAIChatImage", "DATASET_OpenAIChatImage",
"DATASET_SearchAndReplace", "DATASET_SearchAndReplace",
"DATASET_TXTFileLoader",
"DATASET_TXTFileSaver", "DATASET_TXTFileSaver",
"DATASET_TagManipulatorByImageNames", "DATASET_TagManipulatorByImageNames",
"DATASET_xCopy" "DATASET_xCopy"

View File

@ -1,7 +1,7 @@
[project] [project]
name = "comfyui-manager" 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." 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" license = "LICENSE"
dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"] dependencies = ["GitPython", "PyGithub", "matrix-client==0.4.0", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions"]