mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2026-01-26 05:50:17 +08:00
Compare commits
10 Commits
afff1be671
...
b9d4ef24db
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b9d4ef24db | ||
|
|
82cf838d28 | ||
|
|
9d1bc43a58 | ||
|
|
4711e81cec | ||
|
|
09f0656139 | ||
|
|
98cf72e0a2 | ||
|
|
10f3b6551c | ||
|
|
1fe90867a2 | ||
|
|
42aabcfec1 | ||
|
|
a3a51148c1 |
@ -33522,6 +33522,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "A general comfyui model loading plugin that supports loading unet models quantized in bnb-4bit (nf4 and fp4) format"
|
||||
},
|
||||
{
|
||||
"author": "mengqin",
|
||||
"title": "Twinflow Node for ComfyUI",
|
||||
"reference": "https://github.com/mengqin/ComfyUI-TwinFlow",
|
||||
"files": [
|
||||
"https://github.com/mengqin/ComfyUI-TwinFlow"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a set of sampling nodes specifically designed for fine-tuning Twinflow models."
|
||||
},
|
||||
{
|
||||
"author": "Artificial-Sweetener",
|
||||
"title": "WhiteRabbit",
|
||||
@ -37012,6 +37022,18 @@
|
||||
"description": "Advanced nodes for interaction with Olama (text, vision, image editing), with dynamic management of prompts via CSV.",
|
||||
"tags": ["prompt", "csv", "text", "random"]
|
||||
},
|
||||
{
|
||||
"author": "bulldog68",
|
||||
"title": "FMJ Save Image + Versions",
|
||||
"description": "Sauvegarde d’images avec métadonnées complètes (prompt, seed, versions logicielles) + chargement intelligent.",
|
||||
"reference": "https://github.com/bulldog68/ComfyUI_FMJ_SaveImageVersions",
|
||||
"files": [
|
||||
"https://github.com/bulldog68/ComfyUI_FMJ_SaveImageVersions"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"tags": ["save image", "metadonne"],
|
||||
"license": "GNUV3"
|
||||
},
|
||||
{
|
||||
"author": "Usonaki",
|
||||
"title": "ComfyUI-DyPE-Nunchaku",
|
||||
@ -40713,7 +40735,28 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Enhance ComfyUI workflow by providing powerful node search, attribute search, and port navigation features with Ctrl+F shortcut support."
|
||||
},
|
||||
|
||||
{
|
||||
"author": "shmbatom",
|
||||
"title": "Comfyui-ImageAB-Compare",
|
||||
"id": "Comfyui-ImageAB-Compare",
|
||||
"reference": "https://github.com/shmbatom/Comfyui-ImageAB-Compare",
|
||||
"files": [
|
||||
"https://github.com/shmbatom/Comfyui-ImageAB-Compare"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "image split comparison horizontally/vertically, real-time mouse interaction to adjust split ratios, bidirectional linkage between slider and mouse, and the ability to export comparison images with precise split lines."
|
||||
},
|
||||
{
|
||||
"author": "solidlime",
|
||||
"title": "Random Image Picker",
|
||||
"reference": "https://github.com/solidlime/Comfyui-Random_Image_Picker",
|
||||
"files": [
|
||||
"https://github.com/solidlime/Comfyui-Random_Image_Picker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for flexible image loading with file picker and random folder selection. Features instant preview, auto mode switching, and browser-based file selection.",
|
||||
"nodename_pattern": "RandomImagePicker"
|
||||
},
|
||||
|
||||
|
||||
|
||||
@ -41128,6 +41171,17 @@
|
||||
],
|
||||
"install_type": "unzip",
|
||||
"description": "This is a node to convert an image into a CMYK Halftone dot image."
|
||||
},
|
||||
{
|
||||
"author": "ageless-h",
|
||||
"title": "网格图像",
|
||||
"id": "comfyui_grid_image",
|
||||
"reference": "https://github.com/ageless-h/ComfyUI_Grid_image",
|
||||
"files": [
|
||||
"https://github.com/ageless-h/ComfyUI_Grid_image"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI节点 - 将多张图像拼接成网格图。支持动态输入(1-32张图像)、多种分辨率预设、行列设置,自动为每个网格添加顺序编号。"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@ -44,7 +44,7 @@ import manager_migration
|
||||
from node_package import InstalledNodePackage
|
||||
|
||||
|
||||
version_code = [3, 39]
|
||||
version_code = [3, 39, 1]
|
||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||
|
||||
|
||||
|
||||
@ -1,5 +1,49 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "bulldog68",
|
||||
"title": "FMJ Save Image + Versions",
|
||||
"description": "Sauvegarde d’images avec métadonnées complètes (prompt, seed, versions logicielles) + chargement intelligent.",
|
||||
"reference": "https://github.com/bulldog68/ComfyUI_FMJ_SaveImageVersions",
|
||||
"files": [
|
||||
"https://github.com/bulldog68/ComfyUI_FMJ_SaveImageVersions"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"tags": ["save image", "metadonne"],
|
||||
"license": "GNUV3"
|
||||
},
|
||||
{
|
||||
"author": "solidlime",
|
||||
"title": "Random Image Picker",
|
||||
"reference": "https://github.com/solidlime/Comfyui-Random_Image_Picker",
|
||||
"files": [
|
||||
"https://github.com/solidlime/Comfyui-Random_Image_Picker"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "ComfyUI custom node for flexible image loading with file picker and random folder selection. Features instant preview, auto mode switching, and browser-based file selection.",
|
||||
"nodename_pattern": "RandomImagePicker"
|
||||
},
|
||||
{
|
||||
"author": "mengqin",
|
||||
"title": "Twinflow Node for ComfyUI",
|
||||
"reference": "https://github.com/mengqin/ComfyUI-TwinFlow",
|
||||
"files": [
|
||||
"https://github.com/mengqin/ComfyUI-TwinFlow"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is a set of sampling nodes specifically designed for fine-tuning Twinflow models."
|
||||
},
|
||||
{
|
||||
"author": "shmbatom",
|
||||
"title": "Comfyui-ImageAB-Compare",
|
||||
"id": "Comfyui-ImageAB-Compare",
|
||||
"reference": "https://github.com/shmbatom/Comfyui-ImageAB-Compare",
|
||||
"files": [
|
||||
"https://github.com/shmbatom/Comfyui-ImageAB-Compare"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "image split comparison horizontally/vertically, real-time mouse interaction to adjust split ratios, bidirectional linkage between slider and mouse, and the ability to export comparison images with precise split lines."
|
||||
},
|
||||
{
|
||||
"author": "DanrisiUA",
|
||||
"title": "ComfyUI-ZImage-LoRA-Merger",
|
||||
|
||||
@ -370,10 +370,13 @@ try:
|
||||
pass
|
||||
|
||||
with std_log_lock:
|
||||
if self.is_stdout:
|
||||
original_stdout.flush()
|
||||
else:
|
||||
original_stderr.flush()
|
||||
try:
|
||||
if self.is_stdout:
|
||||
original_stdout.flush()
|
||||
else:
|
||||
original_stderr.flush()
|
||||
except (OSError, ValueError):
|
||||
pass
|
||||
|
||||
def close(self):
|
||||
self.flush()
|
||||
|
||||
@ -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 = "3.39"
|
||||
version = "3.39.1"
|
||||
license = { file = "LICENSE.txt" }
|
||||
dependencies = ["GitPython", "PyGithub", "matrix-nio", "transformers", "huggingface-hub>0.20", "typer", "rich", "typing-extensions", "toml", "uv", "chardet"]
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user