Compare commits
50 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
897debb106 | ||
|
|
0b43716c56 | ||
|
|
4ad1c8a238 | ||
|
|
9578ce0820 | ||
|
|
c5d8a1b3ad | ||
|
|
99049db807 | ||
|
|
70de42ccea | ||
|
|
fb74f39793 | ||
|
|
ef130b23ef | ||
|
|
2549dc7d20 | ||
|
|
85a03e6249 | ||
|
|
0903f28b0c | ||
|
|
c663907e37 | ||
|
|
830be27eb2 | ||
|
|
041f4e4bb5 | ||
|
|
d3fa87fd94 | ||
|
|
4dffb5d593 | ||
|
|
b114672e03 | ||
|
|
3c3713553e | ||
|
|
fd164862f3 | ||
|
|
ac8804ca6a | ||
|
|
429e13bf4d | ||
|
|
5d9578d231 | ||
|
|
f4e0ce2ad4 | ||
|
|
aff6785e0b | ||
|
|
2656fae9c9 | ||
|
|
3ed10e304d | ||
|
|
7d17ef0da1 | ||
|
|
0202cf07d5 | ||
|
|
ad9c35e44b | ||
|
|
65286803a5 | ||
|
|
16bd58667c | ||
|
|
939d556c7e | ||
|
|
823d5459af | ||
|
|
10bd619712 | ||
|
|
9f5b0c9ddd | ||
|
|
87eadb4825 | ||
|
|
5b91e4214c | ||
|
|
fd5c120d36 | ||
|
|
3075764402 | ||
|
|
bdad599f36 | ||
|
|
29ab428979 | ||
|
|
4e92b06baa | ||
|
|
faf1209eba | ||
|
|
4dee009d51 | ||
|
|
9ad54bb86c | ||
|
|
2710d72e07 | ||
|
|
c3a1401960 | ||
|
|
585cc0d991 | ||
|
|
15ecb5b1d4 |
@@ -225,7 +225,7 @@ In `ComfyUI-Manager` V3.0 and later, configuration files and dynamically generat
|
|||||||
|
|
||||||
## Support of missing nodes installation
|
## Support of missing nodes installation
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
* When you click on the ```Install Missing Custom Nodes``` button in the menu, it displays a list of extension nodes that contain nodes not currently present in the workflow.
|
* When you click on the ```Install Missing Custom Nodes``` button in the menu, it displays a list of extension nodes that contain nodes not currently present in the workflow.
|
||||||
|
|
||||||
|
|||||||
21
cm-cli.py
21
cm-cli.py
@@ -12,6 +12,7 @@ from rich import print
|
|||||||
from typing_extensions import List, Annotated
|
from typing_extensions import List, Annotated
|
||||||
import re
|
import re
|
||||||
import git
|
import git
|
||||||
|
import importlib
|
||||||
|
|
||||||
|
|
||||||
sys.path.append(os.path.dirname(__file__))
|
sys.path.append(os.path.dirname(__file__))
|
||||||
@@ -70,9 +71,8 @@ core.check_invalid_nodes()
|
|||||||
def read_downgrade_blacklist():
|
def read_downgrade_blacklist():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(core.manager_config.path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'downgrade_blacklist' in default_conf:
|
if 'downgrade_blacklist' in default_conf:
|
||||||
@@ -88,12 +88,20 @@ read_downgrade_blacklist() # This is a preparation step for manager_core
|
|||||||
|
|
||||||
|
|
||||||
class Ctx:
|
class Ctx:
|
||||||
|
folder_paths = None
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.channel = 'default'
|
self.channel = 'default'
|
||||||
self.no_deps = False
|
self.no_deps = False
|
||||||
self.mode = 'cache'
|
self.mode = 'cache'
|
||||||
self.user_directory = None
|
self.user_directory = None
|
||||||
self.custom_nodes_paths = [os.path.join(core.comfy_path, 'custom_nodes')]
|
self.custom_nodes_paths = [os.path.join(core.comfy_path, 'custom_nodes')]
|
||||||
|
|
||||||
|
if Ctx.folder_paths is None:
|
||||||
|
try:
|
||||||
|
Ctx.folder_paths = importlib.import_module('folder_paths')
|
||||||
|
except ImportError:
|
||||||
|
print("Warning: Unable to import folder_paths module")
|
||||||
|
|
||||||
def set_channel_mode(self, channel, mode):
|
def set_channel_mode(self, channel, mode):
|
||||||
if mode is not None:
|
if mode is not None:
|
||||||
@@ -110,7 +118,7 @@ class Ctx:
|
|||||||
if channel is not None:
|
if channel is not None:
|
||||||
self.channel = channel
|
self.channel = channel
|
||||||
|
|
||||||
asyncio.run(unified_manager.reload(cache_mode=self.mode == 'cache'))
|
asyncio.run(unified_manager.reload(cache_mode=self.mode == 'cache', dont_wait=False))
|
||||||
asyncio.run(unified_manager.load_nightly(self.channel, self.mode))
|
asyncio.run(unified_manager.load_nightly(self.channel, self.mode))
|
||||||
|
|
||||||
def set_no_deps(self, no_deps):
|
def set_no_deps(self, no_deps):
|
||||||
@@ -127,9 +135,9 @@ class Ctx:
|
|||||||
core.update_user_directory(user_directory)
|
core.update_user_directory(user_directory)
|
||||||
|
|
||||||
if os.path.exists(core.manager_pip_overrides_path):
|
if os.path.exists(core.manager_pip_overrides_path):
|
||||||
cm_global.pip_overrides = {'numpy': 'numpy<2'}
|
|
||||||
with open(core.manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
with open(core.manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||||
cm_global.pip_overrides = json.load(json_file)
|
cm_global.pip_overrides = json.load(json_file)
|
||||||
|
cm_global.pip_overrides = {'numpy': 'numpy<2'}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_startup_scripts_path():
|
def get_startup_scripts_path():
|
||||||
@@ -145,7 +153,10 @@ class Ctx:
|
|||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_custom_nodes_paths():
|
def get_custom_nodes_paths():
|
||||||
return folder_paths.get_folder_paths('custom_nodes')
|
if Ctx.folder_paths is None:
|
||||||
|
print("Error: folder_paths module is not available")
|
||||||
|
return []
|
||||||
|
return Ctx.folder_paths.get_folder_paths('custom_nodes')
|
||||||
|
|
||||||
|
|
||||||
cmd_ctx = Ctx()
|
cmd_ctx = Ctx()
|
||||||
|
|||||||
673
custom-node-list.json
Normal file → Executable file
673
custom-node-list.json
Normal file → Executable file
@@ -4004,6 +4004,28 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Integrates GLSL shader support."
|
"description": "Integrates GLSL shader support."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Spout",
|
||||||
|
"id": "jovi_spout",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Spout",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Spout"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Nodes for using Spout streams."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Jovi_Measure",
|
||||||
|
"id": "jovi_measure",
|
||||||
|
"reference": "https://github.com/Amorano/Jovi_Measure",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Amorano/Jovi_Measure"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Image metrics nodes for ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Umikaze-job",
|
"author": "Umikaze-job",
|
||||||
"title": "select_folder_path_easy",
|
"title": "select_folder_path_easy",
|
||||||
@@ -5463,7 +5485,7 @@
|
|||||||
"https://github.com/Limitex/ComfyUI-Diffusers"
|
"https://github.com/Limitex/ComfyUI-Diffusers"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This extension enables the use of the diffuser pipeline in ComfyUI."
|
"description": "This extension enables the use of the diffuser pipeline in ComfyUI. It also includes nodes related to Stream Diffusion."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "aiXander",
|
"author": "aiXander",
|
||||||
@@ -7417,6 +7439,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This node provides lip-sync capabilities in ComfyUI using ByteDance's LatentSync model. It allows you to synchronize video lips with audio input."
|
"description": "This node provides lip-sync capabilities in ComfyUI using ByteDance's LatentSync model. It allows you to synchronize video lips with audio input."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "ShmuelRonen",
|
||||||
|
"title": "ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"reference": "https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ShmuelRonen/ComfyUI-HunyuanVideoSamplerSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node implementation for optimized video generation and motion effects, designed to work with Hunyuan text-to-video models."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "redhottensors",
|
"author": "redhottensors",
|
||||||
"title": "ComfyUI-Prediction",
|
"title": "ComfyUI-Prediction",
|
||||||
@@ -8296,17 +8328,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This node improves the quality of the image mask. more suitable for image composite matting"
|
"description": "This node improves the quality of the image mask. more suitable for image composite matting"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "Pos13",
|
|
||||||
"title": "Cyclist",
|
|
||||||
"id": "cyclist",
|
|
||||||
"reference": "https://github.com/Pos13/comfyui-cyclist",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/Pos13/comfyui-cyclist"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "This extension provides tools to iterate generation results between runs. In general, it's for cycles."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "ExponentialML",
|
"author": "ExponentialML",
|
||||||
"title": "ComfyUI_ModelScopeT2V",
|
"title": "ComfyUI_ModelScopeT2V",
|
||||||
@@ -9940,7 +9961,7 @@
|
|||||||
"https://github.com/smthemex/ComfyUI_Stable_Makeup"
|
"https://github.com/smthemex/ComfyUI_Stable_Makeup"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "You can apply makeup to the characters in comfyui\nStable_Makeup From: [a/Stable_Makeup](https://github.com/Xiaojiu-z/Stable-Makeup)"
|
"description": "you can using stable makeup when use comfyUI"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "smthemex",
|
"author": "smthemex",
|
||||||
@@ -10231,6 +10252,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
"description": "You can use TRELLIS in comfyUI\n[a/TRELLIS](https://github.com/microsoft/TRELLIS/tree/main), Structured 3D Latents for Scalable and Versatile 3D Generation"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "smthemex",
|
||||||
|
"title": "ComfyUI_SVFR",
|
||||||
|
"reference": "https://github.com/smthemex/ComfyUI_SVFR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/smthemex/ComfyUI_SVFR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SVFR is a unified framework for face video restoration that supports tasks such as BFR, Colorization, Inpainting,you can use it in ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "choey",
|
"author": "choey",
|
||||||
"title": "Comfy-Topaz",
|
"title": "Comfy-Topaz",
|
||||||
@@ -11361,7 +11392,27 @@
|
|||||||
"https://github.com/GraftingRayman/ComfyUI_GraftingRayman"
|
"https://github.com/GraftingRayman/ComfyUI_GraftingRayman"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Image Manipulation Nodes"
|
"description": "Image Manipulation and Prompt Generation Nodes"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI QueueTube",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI_QueueTube",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI_QueueTube"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "These nodes allow your YouTube LiveStream viewers to create on your local ComfyUI, you can make this a members only feature with a screen behind you displaying your members creations"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "GraftingRayman",
|
||||||
|
"title": "ComfyUI-PuLID-Flux-GR",
|
||||||
|
"reference": "https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/GraftingRayman/ComfyUI-PuLID-Flux-GR"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a PuLID node that has been extended with new features."
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "royceschultz",
|
"author": "royceschultz",
|
||||||
@@ -12657,17 +12708,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Nodes:Image Dimension Resizer, Image Sizer, Random Ratio, Show Text, Random Title Character, Random Wildcard Tag Picker, Random Show Atm Loc Outfit, Contains Word, Elements Concatenator, ..."
|
"description": "Nodes:Image Dimension Resizer, Image Sizer, Random Ratio, Show Text, Random Title Character, Random Wildcard Tag Picker, Random Show Atm Loc Outfit, Contains Word, Elements Concatenator, ..."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "leiweiqiang",
|
|
||||||
"title": "ComfyUI-TRA",
|
|
||||||
"id": "tra",
|
|
||||||
"reference": "https://github.com/leiweiqiang/ComfyUI-TRA",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/leiweiqiang/ComfyUI-TRA"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Nodes:TCL EbSynth, TCL Extract Frames (From File), TCL Extract Frames (From Video), TCL Combine Frames, TCL Save Video (From Frames)"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "hwhaocool",
|
"author": "hwhaocool",
|
||||||
"title": "ComfyUI-Select-Any",
|
"title": "ComfyUI-Select-Any",
|
||||||
@@ -13323,6 +13363,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Perform a Fast Fourier Transform on the image, and then users can freely select the filtering range to filter the image. The main function is to remove the grid patterns on the image, and it can also perform high-pass filtering and low-pass filtering. The detailed workflow is shown in the figure below. The PNG file contains the ComfyUI workflow.The working principle is similar to the FFT filter in Photoshop."
|
"description": "Perform a Fast Fourier Transform on the image, and then users can freely select the filtering range to filter the image. The main function is to remove the grid patterns on the image, and it can also perform high-pass filtering and low-pass filtering. The detailed workflow is shown in the figure below. The PNG file contains the ComfyUI workflow.The working principle is similar to the FFT filter in Photoshop."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "fssorc",
|
||||||
|
"title": "ComfyUI_RopeWrapper",
|
||||||
|
"reference": "https://github.com/fssorc/ComfyUI_RopeWrapper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/fssorc/ComfyUI_RopeWrapper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Wrap Rope into ComfyUI, do a little change to use in ComfyUI. All credit goes to Hillobar and his ROPE [ㅁ/https://github.com/Hillobar/Rope](https://github.com/Hillobar/Rope)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "BetaDoggo",
|
"author": "BetaDoggo",
|
||||||
"title": "ComfyUI YetAnotherSafetyChecker",
|
"title": "ComfyUI YetAnotherSafetyChecker",
|
||||||
@@ -14066,6 +14116,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI nodes to use CompareModelWeights"
|
"description": "ComfyUI nodes to use CompareModelWeights"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "leeguandong",
|
||||||
|
"title": "ComfyUI_FluxCustomId",
|
||||||
|
"reference": "https://github.com/leeguandong/ComfyUI_FluxCustomId",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/leeguandong/ComfyUI_FluxCustomId"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI nodes to use FluxCustomId\nOriginal repo: [a/https://github.com/damo-cv/FLUX-customID](https://github.com/damo-cv/FLUX-customID)"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "lenskikh",
|
"author": "lenskikh",
|
||||||
"title": "Propmt Worker",
|
"title": "Propmt Worker",
|
||||||
@@ -15511,17 +15571,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This repository contains a custom node for ComfyUI that pads an image to be square, filling the new pixels black."
|
"description": "This repository contains a custom node for ComfyUI that pads an image to be square, filling the new pixels black."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "amorano",
|
|
||||||
"title": "Cozy Link Toggle",
|
|
||||||
"id": "cozyLinkToggle",
|
|
||||||
"reference": "https://github.com/cozy-comfyui/cozy_link_toggle",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/cozy-comfyui/cozy_link_toggle"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "Toggle ComfyUI Graph Links On/Off from the Menu Bar. Provides an easy example on how to register and use the ComfyUI menubar extensions."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "revirevy",
|
"author": "revirevy",
|
||||||
"title": "Comfyui_saveimage_imgbb",
|
"title": "Comfyui_saveimage_imgbb",
|
||||||
@@ -16133,6 +16182,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Implementation of Fast Fourier Transform in COMFYUI"
|
"description": "Implementation of Fast Fourier Transform in COMFYUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "laogou666",
|
||||||
|
"title": "Comfyui-LG_Relight",
|
||||||
|
"reference": "https://github.com/LAOGOU-666/Comfyui-LG_Relight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui-LG_Relight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple implementation of real-time 3D lighting in ComfyUI. It's an open-source node, have fun playing around!"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "VertexStudio",
|
"author": "VertexStudio",
|
||||||
"title": "roblox-comfyui-nodes",
|
"title": "roblox-comfyui-nodes",
|
||||||
@@ -17217,6 +17276,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Another comfy implementation for the short video generation project hpcaitech/Open-Sora, supporting latest V2 and V3 models as well as image to video functions, etc."
|
"description": "Another comfy implementation for the short video generation project hpcaitech/Open-Sora, supporting latest V2 and V3 models as well as image to video functions, etc."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "bombax-xiaoice",
|
||||||
|
"title": "ComfyUI-OpenSoraPlan",
|
||||||
|
"reference": "https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bombax-xiaoice/ComfyUI-OpenSoraPlan"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Another comfy implementation for the short video generation project PKU-YuanGroup/Open-Sora-Plan, supporting latest 1.3.0 and 1.2.0 and image to video feature, etc."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "chenbaiyujason",
|
"author": "chenbaiyujason",
|
||||||
"title": "ComfyUI-SCStepFun",
|
"title": "ComfyUI-SCStepFun",
|
||||||
@@ -17441,6 +17510,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "StyleModelApply adds more controls"
|
"description": "StyleModelApply adds more controls"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "yichengup",
|
||||||
|
"title": "Comfyui_Redux_Advanced",
|
||||||
|
"reference": "https://github.com/yichengup/Comfyui_Redux_Advanced",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yichengup/Comfyui_Redux_Advanced"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Redux style adds more controls"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "Horizon Team",
|
"author": "Horizon Team",
|
||||||
"title": "ComfyUI_FluxMod",
|
"title": "ComfyUI_FluxMod",
|
||||||
@@ -17899,13 +17978,23 @@
|
|||||||
{
|
{
|
||||||
"author": "5x00",
|
"author": "5x00",
|
||||||
"title": "ComfyUI-VLM_Captions",
|
"title": "ComfyUI-VLM_Captions",
|
||||||
"reference": "https://github.com/5x00/ComfyUI-VLM_Captions",
|
"reference": "https://github.com/5x00/ComfyUI-VLM-Captions",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/5x00/ComfyUI-VLM_Captions"
|
"https://github.com/5x00/ComfyUI-VLM-Captions"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "A simple ComfyUI node that let's you use Claude or ChatGPT 4o's VLM capabilities to generate captions/tags for images."
|
"description": "A simple ComfyUI node that let's you use Claude or ChatGPT 4o's VLM capabilities to generate captions/tags for images."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-PiAPI-Faceswap",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-PiAPI-Faceswap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-PiAPI-Faceswap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple ComfyUI nodes that integrates [a/PiAPI faceswap](https://piapi.ai/faceswap-api) service into ComfyUI. This can be helpful if you're trying to create a workflow that includes faceswap for commercial usage."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "ClownsharkBatwing",
|
"author": "ClownsharkBatwing",
|
||||||
"title": "RES4LYF",
|
"title": "RES4LYF",
|
||||||
@@ -18022,6 +18111,17 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Write prompt words like WebUI"
|
"description": "Write prompt words like WebUI"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "weilin9999",
|
||||||
|
"title": "WeiLin-Comfyui-Tools",
|
||||||
|
"id": "Comfyui-Tools",
|
||||||
|
"reference": "https://github.com/weilin9999/WeiLin-Comfyui-Tools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/weilin9999/WeiLin-Comfyui-Tools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "quickly use the prompt word tool in ComfyUI"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "jax-explorer",
|
"author": "jax-explorer",
|
||||||
"title": "comfyui-model-dynamic-loader",
|
"title": "comfyui-model-dynamic-loader",
|
||||||
@@ -18052,6 +18152,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
"description": "ComfyUI Custom Nodes for 'AniDoc: Animation Creation Made Easier'. This approach automates line art video colorization using a novel model that aligns color information from references, ensures temporal consistency, and reduces manual effort in animation production."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "LucipherDev",
|
||||||
|
"title": "ComfyUI-TangoFlux",
|
||||||
|
"reference": "https://github.com/LucipherDev/ComfyUI-TangoFlux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LucipherDev/ComfyUI-TangoFlux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI Custom Nodes for 'TangoFlux: Super Fast and Faithful Text to Audio Generation with Flow Matching'. This generates high-quality 44.1kHz audio up to 30 seconds using just a text prompt."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "envy-ai",
|
"author": "envy-ai",
|
||||||
"title": "ComfyUI-ConDelta",
|
"title": "ComfyUI-ConDelta",
|
||||||
@@ -18541,6 +18651,16 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is a ComfyUI plugin that makes it easier to call and run workflows from RunningHub in your local ComfyUI setup."
|
"description": "This is a ComfyUI plugin that makes it easier to call and run workflows from RunningHub in your local ComfyUI setup."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "shahkoorosh",
|
||||||
|
"title": "ComfyUI-PersianText",
|
||||||
|
"reference": "https://github.com/shahkoorosh/ComfyUI-PersianText",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/shahkoorosh/ComfyUI-PersianText"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A powerful ComfyUI node for rendering text with advanced styling options, including full support for Persian/Farsi and Arabic scripts."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "wqjuser",
|
"author": "wqjuser",
|
||||||
"title": "ComfyUI-Chat-Image",
|
"title": "ComfyUI-Chat-Image",
|
||||||
@@ -18797,6 +18917,483 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "Run DDUF in ComfyUI - powered by Diffusers."
|
"description": "Run DDUF in ComfyUI - powered by Diffusers."
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"author": "AconexOfficial",
|
||||||
|
"title": "ComfyUI GOAT Nodes",
|
||||||
|
"reference": "https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/AconexOfficial/ComfyUI_GOAT_Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes to level up your workflows performance and streamline specific functions."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Jaminanim",
|
||||||
|
"title": "ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"reference": "https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Jaminanim/ComfyUI-Random-Int-Divisor-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A set of custom ComfyUI nodes for generating random integers within a range, adjusted to the nearest multiple of a user-defined divisor. Needlessly includes both an efficient and simple list implementation. Updates with each generation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "cenzijing",
|
||||||
|
"title": "ComfyUI-Markmap",
|
||||||
|
"reference": "https://github.com/cenzijing/ComfyUI-Markmap",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cenzijing/ComfyUI-Markmap"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI custom node for creating mindmaps from markdown"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bongsang",
|
||||||
|
"title": "ComfyUI-Bongsang",
|
||||||
|
"reference": "https://github.com/bongsang/ComfyUI-Bongsang",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/bongsang/ComfyUI-Bongsang"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The 'ComfyUI-Bongsang' is very useful tools for a diffusion model developer."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "muxueChen",
|
||||||
|
"title": "CosyVoice2 for ComfyUI",
|
||||||
|
"reference": "https://github.com/muxueChen/ComfyUI_NTCosyVoice",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/muxueChen/ComfyUI_NTCosyVoice"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_NTCosyVoice is a plugin of ComfyUI for Cosysvoice2"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "inventorado",
|
||||||
|
"title": "ComfyUI Neural Network Toolkit NNT ",
|
||||||
|
"id": "nnt",
|
||||||
|
"reference": "https://github.com/inventorado/ComfyUI_NNT",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/inventorado/ComfyUI_NNT"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Neural Network Toolkit (NNT) for ComfyUI is an extensive set of custom ComfyUI nodes for designing, training, and fine-tuning neural networks. This toolkit allows defining models, layers, training workflows, transformers, and tensor operations in a visual manner using nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Hullabalo",
|
||||||
|
"title": "ComfyUI-Loop",
|
||||||
|
"reference": "https://github.com/Hullabalo/ComfyUI-Loop",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Hullabalo/ComfyUI-Loop"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A pair of nodes (Load Image and Save Image) to create a simple loop in your ComfyUI inpainting workflow, without the need of loading your last saved image"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "hodanajan",
|
||||||
|
"title": "optimal-crop-resolution",
|
||||||
|
"reference": "https://github.com/hodanajan/optimal-crop-resolution",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/hodanajan/optimal-crop-resolution"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI node to calculate optimal resolution to crop the image to (from a list of aspect ratios)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "JJ",
|
||||||
|
"title": "ComfyUI-Jtils",
|
||||||
|
"reference": "https://github.com/cnbjjj/ComfyUI-Jtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cnbjjj/ComfyUI-Jtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "An extension for ComfyUI that adds utility functions and nodes not available in the default setup."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "billwuhao",
|
||||||
|
"title": "ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"reference": "https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/billwuhao/ComfyUI_OneButtonPrompt_Flux"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI_OneButtonPrompt_Flux is a Flux prompt generation node. The subject can be 'human,' 'other' or a combination of both. For human, pose settings can be enabled. Additionally, various styles can be applied. Finally, combine it with 'Prompt Enhancement' to seamlessly automate image generation, eliminating the hassle of designing prompts."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "pandaer119",
|
||||||
|
"title": "ComfyUI_pandai",
|
||||||
|
"reference": "https://github.com/pandaer119/ComfyUI_pandai",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/pandaer119/ComfyUI_pandai"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Introduction The ComfyUI_pandai node is a custom ComfyUI node designed to interact with the DeepSeek API. It supports text generation, translation, and text polishing. With this node, users can easily generate text, translate content, and refine the generated text for better quality."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "umiyuki",
|
||||||
|
"title": "ComfyUI Pad To Eight",
|
||||||
|
"reference": "https://github.com/umiyuki/comfyui-pad-to-eight",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/umiyuki/comfyui-pad-to-eight"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom ComfyUI node that pads an image to a multiple of 8 width."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Meettya",
|
||||||
|
"title": "ComfyUI-OneForOne",
|
||||||
|
"reference": "https://github.com/Meettya/ComfyUI-OneForOne",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Meettya/ComfyUI-OneForOne"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Node:Image Fit Calculator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "KunmyonChoi",
|
||||||
|
"title": "ComfyUI_S3_direct",
|
||||||
|
"reference": "https://github.com/KunmyonChoi/ComfyUI_S3_direct",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/KunmyonChoi/ComfyUI_S3_direct"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom_node that load and save file directly from S3\nSimplified version of [a/https://github.com/kealiu/ComfyUI-S3-Tools](https://github.com/kealiu/ComfyUI-S3-Tools)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ChenDarYen",
|
||||||
|
"title": "ComfyUI-TimestepShiftModel",
|
||||||
|
"reference": "https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ChenDarYen/ComfyUI-TimestepShiftModel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a ComfyUI implementation of the timestep shift technique used in [a/NitroFusion: High-Fidelity Single-Step Diffusion through Dynamic Adversarial Training.](https://arxiv.org/abs/2412.02030)\nFor more details, visit the official [a/NitroFusion GitHub repository](https://github.com/ChenDarYen/NitroFusion)."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-HunyuanVideoMultiLora",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-HunyuanVideoMultiLora"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom LoRA-loading node designed to prevent issues such as blurriness and other artifacts when loading multiple LoRAs in HunYuan Video.\nUsage Instructions: The connection method remains unchanged from the original. The only difference is the additional blocks_type option. Please select double_blocks."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "facok",
|
||||||
|
"title": "ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"reference": "https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/facok/ComfyUI-TeaCacheHunyuanVideo"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This is a TeaCache acceleration node for HunYuan Video, supporting the native node workflow for seamless upgrades. Simply choose the acceleration multiplier you want—currently, three levels are available."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FinetunersAI",
|
||||||
|
"title": "ComfyUI_Finetuners_Suite",
|
||||||
|
"reference": "https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FinetunersAI/ComfyUI_Finetuners_Suite"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A suite of nodes for ComfyUI that helps making ComfyUI more accesible for artists"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-GigapixelAI",
|
||||||
|
"id": "gigapixel",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-GigapixelAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-GigapixelAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use gigapixelai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sh570655308",
|
||||||
|
"title": "ComfyUI-TopazVideoAI",
|
||||||
|
"id": "tvai",
|
||||||
|
"reference": "https://github.com/sh570655308/ComfyUI-TopazVideoAI",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sh570655308/ComfyUI-TopazVideoAI"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes use topazvideoai in comfyui."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jammyfu",
|
||||||
|
"title": "Painting Coder Utils",
|
||||||
|
"id": "painting-coder-utils",
|
||||||
|
"reference": "https://github.com/jammyfu/ComfyUI_PaintingCoderUtils",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jammyfu/ComfyUI_PaintingCoderUtils"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A practical collection of nodes for ComfyUI that streamlines image and text processing workflows. Features include image optimized resolution adjustment, text cleaning tools, dynamic image/text combination, and mask preview utilities. Perfect for artists and developers looking to enhance their AI art creation pipeline."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "welltop-cn",
|
||||||
|
"title": "ComfyUI-TeaCache",
|
||||||
|
"id": "teacache",
|
||||||
|
"reference": "https://github.com/welltop-cn/ComfyUI-TeaCache",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/welltop-cn/ComfyUI-TeaCache"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Unofficial implementation of [ali-vilab/TeaCache](https://github.com/ali-vilab/TeaCache) for ComfyUI"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "calcuis",
|
||||||
|
"title": "gguf",
|
||||||
|
"id": "gguf",
|
||||||
|
"reference": "https://github.com/calcuis/gguf",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/calcuis/gguf"
|
||||||
|
],
|
||||||
|
"preemptions":[
|
||||||
|
"LoaderGGUF",
|
||||||
|
"ClipLoaderGGUF",
|
||||||
|
"DualClipLoaderGGUF",
|
||||||
|
"TripleClipLoaderGGUF",
|
||||||
|
"LoaderGGUFAdvanced",
|
||||||
|
"GGUFSave"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "gguf node for comfyui"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ainewsto",
|
||||||
|
"title": "comfyui-labs-google",
|
||||||
|
"reference": "https://github.com/ainewsto/comfyui-labs-google",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ainewsto/comfyui-labs-google"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: ComfyUI-ImageFx, ComfyUI-Whisk"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ViewData",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ViewData",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ViewData"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that displays the type and contents of whatever is connected to the input. In the case of a Tensor object, it shows the shape instead of its value."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-JMESPath",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-JMESPath",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-JMESPath"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/JMESPath](https://jmespath.org/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-jq",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-jq",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-jq"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that runs a [a/jq](https://jqlang.github.io/jq/) query against input JSON and outputs the result."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-ImageLabel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-ImageLabel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-ImageLabel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node that extends an image vertically to add a label either above or below it."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gremlation",
|
||||||
|
"title": "ComfyUI-TrackAndWheel",
|
||||||
|
"reference": "https://github.com/gremlation/ComfyUI-TrackAndWheel",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gremlation/ComfyUI-TrackAndWheel"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI extension that improves panning and zooming on trackpads and with the mouse wheel."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nmlen",
|
||||||
|
"title": "comfyui-mosaic-blur",
|
||||||
|
"reference": "https://github.com/nmlen/comfyui-mosaic-blur",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nmlen/comfyui-mosaic-blur"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A simple mosaic blur node for ComfyUI that uses CV2 or Pillow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "jerrylongyan",
|
||||||
|
"title": "ComfyUI-My-Mask",
|
||||||
|
"reference": "https://github.com/jerrylongyan/ComfyUI-My-Mask",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/jerrylongyan/ComfyUI-My-Mask"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Some nodes for processing masks, currently including nodes that fill in the concave parts of existing masks with convex hulls."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mira-6",
|
||||||
|
"title": "comfyui-sasolver",
|
||||||
|
"reference": "https://github.com/mira-6/comfyui-sasolver",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mira-6/comfyui-sasolver"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "SASolver for Comfyui. Adapted from [a/comfyanonymous/ComfyUI#4454](https://github.com/comfyanonymous/ComfyUI/pull/4454) and [a/https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler](https://github.com/Koishi-Star/Euler-Smea-Dyn-Sampler)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "dreamhartley",
|
||||||
|
"title": "ComfyUI_show_seed",
|
||||||
|
"reference": "https://github.com/dreamhartley/ComfyUI_show_seed",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/dreamhartley/ComfyUI_show_seed"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node that saves images while displaying the seed value used in generation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "bubbliiiing",
|
||||||
|
"title": "Video Generation Nodes for EasyAnimate",
|
||||||
|
"id": "easyanimatenodes",
|
||||||
|
"reference": "https://github.com/aigc-apps/EasyAnimate",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aigc-apps/EasyAnimate"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Video Generation Nodes for EasyAnimate, which suppors text-to-video, image-to-video, video-to-video and different controls."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "DraconicDragon",
|
||||||
|
"title": "ComfyUI-Venice-API",
|
||||||
|
"reference": "https://github.com/DraconicDragon/ComfyUI-Venice-API",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/DraconicDragon/ComfyUI-Venice-API"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node implementation for ComfyUI that integrates with venice.ai's Flux and SDXL image generation models. This project is adapted from [a/ComfyUI-FLUX-TOGETHER-API](https://github.com/BZcreativ/ComfyUI-FLUX-TOGETHER-API) to work with the venice.ai API."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Wenaka2004",
|
||||||
|
"title": "ComfyUI-TagClassifier",
|
||||||
|
"reference": "https://github.com/Wenaka2004/ComfyUI-TagClassifier",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Wenaka2004/ComfyUI-TagClassifier"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI custom node,use Deepseek v3 to classify the input tags"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-render",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-render"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The ultimate openpose render node for ComfyUI with flexible input, output and adjustment."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-estimator"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Super fast tensorrt performance with accuate pose estimation of dwpose model, giving the detecting threshold control, plus pose image render and pose json format output. Fine control for pose plotting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "westNeighbor",
|
||||||
|
"title": "ComfyUI-ultimate-openpose-estimator",
|
||||||
|
"reference": "https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/westNeighbor/ComfyUI-ultimate-openpose-editor"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Enhanced features with flexible choice of inputs and outputs, fine control for pose plotting, freedom to composite poses and fast local pose editting."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "a-und-b",
|
||||||
|
"title": "ComfyUI_Delay",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_Delay",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_Delay"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple custom node for ComfyUI to artificially delay a workflow at any point."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "a-und-b",
|
||||||
|
"title": "ComfyUI_JSON_Helper",
|
||||||
|
"reference": "https://github.com/a-und-b/ComfyUI_JSON_Helper",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/a-und-b/ComfyUI_JSON_Helper"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple custom node for ComfyUI that converts JSON strings to JSON objects."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dial",
|
||||||
|
"title": "Redial Discomphy - Discord Integration for ComfyUI",
|
||||||
|
"reference": "https://github.com/r3dial/redial-discomphy",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dial/redial-discomphy"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node for ComfyUI that enables direct posting of images, videos, and messages to Discord channels. This node seamlessly integrates your ComfyUI workflows with Discord communication, allowing you to automatically share your generated content."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "Comfyui-Template-Loader",
|
||||||
|
"reference": "https://github.com/r3dsd/comfyui-template-loader",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/r3dsd/comfyui-template-loader"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Easily Load Your Frequently Used Prompts in ComfyUI\nWith ComfyUI Template Loader, managing and reusing your favorite prompts has never been simpler. Save time and streamline your workflow by loading your go-to templates with just a few clicks!"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "r3dsd",
|
||||||
|
"title": "HommageTools for ComfyUI",
|
||||||
|
"reference": "https://github.com/ArtHommage/HommageTools",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ArtHommage/HommageTools"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Entry point for HommageTools node collection for ComfyUI. Handles node registration, imports, and logging configuration."
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -4,7 +4,6 @@ import os
|
|||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
import git
|
import git
|
||||||
import configparser
|
|
||||||
import json
|
import json
|
||||||
import yaml
|
import yaml
|
||||||
import requests
|
import requests
|
||||||
@@ -13,13 +12,13 @@ from git.remote import RemoteProgress
|
|||||||
|
|
||||||
|
|
||||||
comfy_path = os.environ.get('COMFYUI_PATH')
|
comfy_path = os.environ.get('COMFYUI_PATH')
|
||||||
|
git_exe_path = os.environ.get('GIT_EXE_PATH')
|
||||||
|
|
||||||
if comfy_path is None:
|
if comfy_path is None:
|
||||||
print("\n[bold yellow]WARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.[/bold yellow]", file=sys.stderr)
|
print("\nWARN: The `COMFYUI_PATH` environment variable is not set. Assuming `custom_nodes/ComfyUI-Manager/../../` as the ComfyUI path.", file=sys.stderr)
|
||||||
comfy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
|
comfy_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..'))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def download_url(url, dest_folder, filename=None):
|
def download_url(url, dest_folder, filename=None):
|
||||||
# Ensure the destination folder exists
|
# Ensure the destination folder exists
|
||||||
if not os.path.exists(dest_folder):
|
if not os.path.exists(dest_folder):
|
||||||
@@ -43,7 +42,6 @@ def download_url(url, dest_folder, filename=None):
|
|||||||
print(f"Failed to download file from {url}")
|
print(f"Failed to download file from {url}")
|
||||||
|
|
||||||
|
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
nodelist_path = os.path.join(os.path.dirname(__file__), "custom-node-list.json")
|
||||||
working_directory = os.getcwd()
|
working_directory = os.getcwd()
|
||||||
|
|
||||||
@@ -126,9 +124,47 @@ def gitcheck(path, do_fetch=False):
|
|||||||
print("CUSTOM NODE CHECK: Error")
|
print("CUSTOM NODE CHECK: Error")
|
||||||
|
|
||||||
|
|
||||||
|
def get_remote_name(repo):
|
||||||
|
available_remotes = [remote.name for remote in repo.remotes]
|
||||||
|
if 'origin' in available_remotes:
|
||||||
|
return 'origin'
|
||||||
|
elif 'upstream' in available_remotes:
|
||||||
|
return 'upstream'
|
||||||
|
elif len(available_remotes) > 0:
|
||||||
|
return available_remotes[0]
|
||||||
|
|
||||||
|
if not available_remotes:
|
||||||
|
print(f"[ComfyUI-Manager] No remotes are configured for this repository: {repo.working_dir}")
|
||||||
|
else:
|
||||||
|
print(f"[ComfyUI-Manager] Available remotes in '{repo.working_dir}': ")
|
||||||
|
for remote in available_remotes:
|
||||||
|
print(f"- {remote}")
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
remote_name = get_remote_name(repo)
|
||||||
repo.git.checkout(default_branch)
|
|
||||||
|
try:
|
||||||
|
if remote_name is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
default_branch = repo.git.symbolic_ref(f'refs/remotes/{remote_name}/HEAD').replace(f'refs/remotes/{remote_name}/', '')
|
||||||
|
repo.git.checkout(default_branch)
|
||||||
|
return True
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout(repo.heads.master)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
if remote_name is not None:
|
||||||
|
repo.git.checkout('-b', 'master', f'{remote_name}/master')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def gitpull(path):
|
def gitpull(path):
|
||||||
@@ -431,10 +467,8 @@ def restore_pip_snapshot(pips, options):
|
|||||||
|
|
||||||
|
|
||||||
def setup_environment():
|
def setup_environment():
|
||||||
config = configparser.ConfigParser()
|
if git_exe_path is not None:
|
||||||
config.read(config_path)
|
git.Git().update_environment(GIT_PYTHON_GIT_EXECUTABLE=git_exe_path)
|
||||||
if 'default' in config and 'git_exe' in config['default'] and config['default']['git_exe'] != '':
|
|
||||||
git.Git().update_environment(GIT_PYTHON_GIT_EXECUTABLE=config['default']['git_exe'])
|
|
||||||
|
|
||||||
|
|
||||||
setup_environment()
|
setup_environment()
|
||||||
|
|||||||
5421
github-stats.json
5421
github-stats.json
File diff suppressed because it is too large
Load Diff
@@ -4,23 +4,49 @@ from typing import List
|
|||||||
import manager_util
|
import manager_util
|
||||||
import toml
|
import toml
|
||||||
import os
|
import os
|
||||||
|
import asyncio
|
||||||
|
|
||||||
base_url = "https://api.comfy.org"
|
base_url = "https://api.comfy.org"
|
||||||
|
|
||||||
|
|
||||||
async def get_cnr_data(page=1, limit=1000, cache_mode=True):
|
lock = asyncio.Lock()
|
||||||
try:
|
|
||||||
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
|
||||||
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
|
||||||
|
|
||||||
|
is_cache_loading = False
|
||||||
|
|
||||||
|
async def get_cnr_data(page=1, limit=1000, cache_mode=True, dont_wait=True):
|
||||||
|
global is_cache_loading
|
||||||
|
|
||||||
|
uri = f'{base_url}/nodes?page={page}&limit={limit}'
|
||||||
|
|
||||||
|
def touch(json_obj):
|
||||||
for v in json_obj['nodes']:
|
for v in json_obj['nodes']:
|
||||||
if 'latest_version' not in v:
|
if 'latest_version' not in v:
|
||||||
v['latest_version'] = dict(version='nightly')
|
v['latest_version'] = dict(version='nightly')
|
||||||
|
|
||||||
|
|
||||||
|
if cache_mode:
|
||||||
|
if dont_wait:
|
||||||
|
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode, dont_wait=True) # fallback
|
||||||
|
|
||||||
|
if 'nodes' in json_obj:
|
||||||
|
touch(json_obj)
|
||||||
|
return json_obj['nodes']
|
||||||
|
else:
|
||||||
|
return {}
|
||||||
|
|
||||||
|
is_cache_loading = True
|
||||||
|
|
||||||
|
try:
|
||||||
|
json_obj = await manager_util.get_data_with_cache(uri, cache_mode=cache_mode)
|
||||||
|
touch(json_obj)
|
||||||
|
|
||||||
return json_obj['nodes']
|
return json_obj['nodes']
|
||||||
except:
|
except:
|
||||||
res = {}
|
res = {}
|
||||||
print("Cannot connect to comfyregistry.")
|
print("Cannot connect to comfyregistry.")
|
||||||
|
finally:
|
||||||
|
if cache_mode:
|
||||||
|
is_cache_loading = False
|
||||||
|
|
||||||
return res
|
return res
|
||||||
|
|
||||||
@@ -92,7 +118,7 @@ def install_node(node_id, version=None):
|
|||||||
|
|
||||||
|
|
||||||
def all_versions_of_node(node_id):
|
def all_versions_of_node(node_id):
|
||||||
url = f"https://api.comfy.org/nodes/{node_id}/versions"
|
url = f"{base_url}/nodes/{node_id}/versions?statuses=NodeVersionStatusActive&statuses=NodeVersionStatusPending"
|
||||||
|
|
||||||
response = requests.get(url)
|
response = requests.get(url)
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
@@ -113,7 +139,7 @@ def read_cnr_info(fullpath):
|
|||||||
data = toml.load(f)
|
data = toml.load(f)
|
||||||
|
|
||||||
project = data.get('project', {})
|
project = data.get('project', {})
|
||||||
name = project.get('name')
|
name = project.get('name').strip().lower()
|
||||||
version = project.get('version')
|
version = project.get('version')
|
||||||
|
|
||||||
urls = project.get('urls', {})
|
urls = project.get('urls', {})
|
||||||
@@ -129,3 +155,26 @@ def read_cnr_info(fullpath):
|
|||||||
return None
|
return None
|
||||||
except Exception:
|
except Exception:
|
||||||
return None # not valid CNR node pack
|
return None # not valid CNR node pack
|
||||||
|
|
||||||
|
|
||||||
|
def generate_cnr_id(fullpath, cnr_id):
|
||||||
|
cnr_id_path = os.path.join(fullpath, '.git', '.cnr-id')
|
||||||
|
try:
|
||||||
|
if not os.path.exists(cnr_id_path):
|
||||||
|
with open(cnr_id_path, "w") as f:
|
||||||
|
return f.write(cnr_id)
|
||||||
|
except:
|
||||||
|
print(f"[ComfyUI Manager] unable to create file: {cnr_id_path}")
|
||||||
|
|
||||||
|
|
||||||
|
def read_cnr_id(fullpath):
|
||||||
|
cnr_id_path = os.path.join(fullpath, '.git', '.cnr-id')
|
||||||
|
try:
|
||||||
|
if os.path.exists(cnr_id_path):
|
||||||
|
with open(cnr_id_path) as f:
|
||||||
|
return f.read().strip()
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
"""
|
||||||
|
description:
|
||||||
|
`manager_core` contains the core implementation of the management functions in ComfyUI-Manager.
|
||||||
|
"""
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
@@ -36,7 +41,7 @@ import manager_downloader
|
|||||||
from node_package import InstalledNodePackage
|
from node_package import InstalledNodePackage
|
||||||
|
|
||||||
|
|
||||||
version_code = [3, 3, 5]
|
version_code = [3, 7]
|
||||||
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
version_str = f"V{version_code[0]}.{version_code[1]}" + (f'.{version_code[2]}' if len(version_code) > 2 else '')
|
||||||
|
|
||||||
|
|
||||||
@@ -45,6 +50,7 @@ DEFAULT_CHANNEL = "https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/ma
|
|||||||
|
|
||||||
default_custom_nodes_path = None
|
default_custom_nodes_path = None
|
||||||
|
|
||||||
|
|
||||||
def get_default_custom_nodes_path():
|
def get_default_custom_nodes_path():
|
||||||
global default_custom_nodes_path
|
global default_custom_nodes_path
|
||||||
if default_custom_nodes_path is None:
|
if default_custom_nodes_path is None:
|
||||||
@@ -74,6 +80,16 @@ def get_comfyui_tag():
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def get_script_env():
|
||||||
|
copied = os.environ.copy()
|
||||||
|
git_exe = get_config().get('git_exe')
|
||||||
|
if git_exe is not None:
|
||||||
|
copied['GIT_EXE_PATH'] = git_exe
|
||||||
|
copied['COMFYUI_PATH'] = comfy_path
|
||||||
|
|
||||||
|
return copied
|
||||||
|
|
||||||
|
|
||||||
invalid_nodes = {}
|
invalid_nodes = {}
|
||||||
|
|
||||||
|
|
||||||
@@ -177,6 +193,10 @@ def update_user_directory(user_dir):
|
|||||||
manager_channel_list_path = os.path.join(manager_files_path, 'channels.list')
|
manager_channel_list_path = os.path.join(manager_files_path, 'channels.list')
|
||||||
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
||||||
manager_components_path = os.path.join(manager_files_path, "components")
|
manager_components_path = os.path.join(manager_files_path, "components")
|
||||||
|
manager_util.cache_dir = os.path.join(manager_files_path, "cache")
|
||||||
|
|
||||||
|
if not os.path.exists(manager_util.cache_dir):
|
||||||
|
os.makedirs(manager_util.cache_dir)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import folder_paths
|
import folder_paths
|
||||||
@@ -213,7 +233,7 @@ def remap_pip_package(pkg):
|
|||||||
def is_blacklisted(name):
|
def is_blacklisted(name):
|
||||||
name = name.strip()
|
name = name.strip()
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([^ ]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([^ ]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -228,7 +248,7 @@ def is_blacklisted(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
return True
|
return True
|
||||||
@@ -242,7 +262,7 @@ def is_installed(name):
|
|||||||
if name.startswith('#'):
|
if name.startswith('#'):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([0-9.a-zA-Z]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -257,12 +277,33 @@ def is_installed(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
pkg = manager_util.get_installed_packages().get(name.lower())
|
||||||
|
if pkg is None:
|
||||||
|
return False # update if not installed
|
||||||
|
|
||||||
|
if match is None:
|
||||||
|
return True # don't update if version is not specified
|
||||||
|
|
||||||
|
if match.group(2) in ['>', '>=']:
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
||||||
|
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
||||||
|
|
||||||
|
if match.group(2) == '==':
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
|
if match.group(2) == '~=':
|
||||||
|
if manager_util.StrictVersion(pkg) == manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
return name.lower() in manager_util.get_installed_packages()
|
return name.lower() in manager_util.get_installed_packages()
|
||||||
|
|
||||||
|
|
||||||
@@ -436,6 +477,7 @@ class UnifiedManager:
|
|||||||
cnr = self.get_cnr_by_repo(url)
|
cnr = self.get_cnr_by_repo(url)
|
||||||
commit_hash = git_utils.get_commit_hash(fullpath)
|
commit_hash = git_utils.get_commit_hash(fullpath)
|
||||||
if cnr:
|
if cnr:
|
||||||
|
cnr_utils.generate_cnr_id(fullpath, cnr['id'])
|
||||||
return {'id': cnr['id'], 'cnr': cnr, 'ver': 'nightly', 'hash': commit_hash}
|
return {'id': cnr['id'], 'cnr': cnr, 'ver': 'nightly', 'hash': commit_hash}
|
||||||
else:
|
else:
|
||||||
url = os.path.basename(url)
|
url = os.path.basename(url)
|
||||||
@@ -465,7 +507,7 @@ class UnifiedManager:
|
|||||||
if node_package.is_disabled and node_package.is_nightly:
|
if node_package.is_disabled and node_package.is_nightly:
|
||||||
self.nightly_inactive_nodes[node_package.id] = node_package.fullpath
|
self.nightly_inactive_nodes[node_package.id] = node_package.fullpath
|
||||||
|
|
||||||
if node_package.is_enabled:
|
if node_package.is_enabled and not node_package.is_unknown:
|
||||||
self.active_nodes[node_package.id] = node_package.version, node_package.fullpath
|
self.active_nodes[node_package.id] = node_package.version, node_package.fullpath
|
||||||
|
|
||||||
if node_package.is_enabled and node_package.is_unknown:
|
if node_package.is_enabled and node_package.is_unknown:
|
||||||
@@ -622,7 +664,7 @@ class UnifiedManager:
|
|||||||
|
|
||||||
return latest
|
return latest
|
||||||
|
|
||||||
async def reload(self, cache_mode):
|
async def reload(self, cache_mode, dont_wait=True):
|
||||||
self.custom_node_map_cache = {}
|
self.custom_node_map_cache = {}
|
||||||
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
self.cnr_inactive_nodes = {} # node_id -> node_version -> fullpath
|
||||||
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
self.nightly_inactive_nodes = {} # node_id -> fullpath
|
||||||
@@ -631,7 +673,7 @@ class UnifiedManager:
|
|||||||
self.active_nodes = {} # node_id -> node_version * fullpath
|
self.active_nodes = {} # node_id -> node_version * fullpath
|
||||||
|
|
||||||
# reload 'cnr_map' and 'repo_cnr_map'
|
# reload 'cnr_map' and 'repo_cnr_map'
|
||||||
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode)
|
cnrs = await cnr_utils.get_cnr_data(cache_mode=cache_mode, dont_wait=dont_wait)
|
||||||
|
|
||||||
for x in cnrs:
|
for x in cnrs:
|
||||||
self.cnr_map[x['id']] = x
|
self.cnr_map[x['id']] = x
|
||||||
@@ -662,7 +704,7 @@ class UnifiedManager:
|
|||||||
res = {}
|
res = {}
|
||||||
|
|
||||||
channel_url = normalize_channel(channel)
|
channel_url = normalize_channel(channel)
|
||||||
if channel:
|
if channel_url:
|
||||||
if mode not in ['remote', 'local', 'cache']:
|
if mode not in ['remote', 'local', 'cache']:
|
||||||
print(f"[bold red]ERROR: Invalid mode is specified `--mode {mode}`[/bold red]", file=sys.stderr)
|
print(f"[bold red]ERROR: Invalid mode is specified `--mode {mode}`[/bold red]", file=sys.stderr)
|
||||||
return {}
|
return {}
|
||||||
@@ -681,8 +723,12 @@ class UnifiedManager:
|
|||||||
return res
|
return res
|
||||||
|
|
||||||
async def get_custom_nodes(self, channel, mode):
|
async def get_custom_nodes(self, channel, mode):
|
||||||
default_channel = normalize_channel('default')
|
# default_channel = normalize_channel('default')
|
||||||
cache = self.custom_node_map_cache.get((default_channel, mode)) # CNR/nightly should always be based on the default channel.
|
# cache = self.custom_node_map_cache.get((default_channel, mode)) # CNR/nightly should always be based on the default channel.
|
||||||
|
|
||||||
|
|
||||||
|
channel = normalize_channel(channel)
|
||||||
|
cache = self.custom_node_map_cache.get((channel, mode)) # CNR/nightly should always be based on the default channel.
|
||||||
|
|
||||||
if cache is not None:
|
if cache is not None:
|
||||||
return cache
|
return cache
|
||||||
@@ -1185,16 +1231,21 @@ class UnifiedManager:
|
|||||||
repo = git.Repo(repo_path)
|
repo = git.Repo(repo_path)
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
return result.fail(f"Failed to switch to default branch: {repo_path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
if current_branch.tracking_branch() is None:
|
if current_branch.tracking_branch() is None:
|
||||||
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
else:
|
else:
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
|
|
||||||
|
if remote_name is None:
|
||||||
|
return result.fail(f"Failed to get remote when installing: {repo_path}")
|
||||||
|
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
@@ -1237,6 +1288,8 @@ class UnifiedManager:
|
|||||||
return ManagedResult('skip').with_msg('Up to date')
|
return ManagedResult('skip').with_msg('Up to date')
|
||||||
|
|
||||||
def unified_update(self, node_id, version_spec=None, instant_execution=False, no_deps=False, return_postinstall=False):
|
def unified_update(self, node_id, version_spec=None, instant_execution=False, no_deps=False, return_postinstall=False):
|
||||||
|
orig_print(f"\x1b[2K\rUpdating: {node_id}", end='')
|
||||||
|
|
||||||
if version_spec is None:
|
if version_spec is None:
|
||||||
version_spec = self.resolve_unspecified_version(node_id, guess_mode='active')
|
version_spec = self.resolve_unspecified_version(node_id, guess_mode='active')
|
||||||
|
|
||||||
@@ -1272,7 +1325,10 @@ class UnifiedManager:
|
|||||||
custom_nodes = await self.get_custom_nodes(channel, mode)
|
custom_nodes = await self.get_custom_nodes(channel, mode)
|
||||||
the_node = custom_nodes.get(node_id)
|
the_node = custom_nodes.get(node_id)
|
||||||
if the_node is not None:
|
if the_node is not None:
|
||||||
repo_url = the_node['files'][0]
|
if version_spec == 'unknown':
|
||||||
|
repo_url = the_node['files'][0]
|
||||||
|
else: # nightly
|
||||||
|
repo_url = the_node['reference']
|
||||||
else:
|
else:
|
||||||
result = ManagedResult('install')
|
result = ManagedResult('install')
|
||||||
return result.fail(f"Node '{node_id}@{version_spec}' not found in [{channel}, {mode}]")
|
return result.fail(f"Node '{node_id}@{version_spec}' not found in [{channel}, {mode}]")
|
||||||
@@ -1295,7 +1351,10 @@ class UnifiedManager:
|
|||||||
if version_spec == 'unknown':
|
if version_spec == 'unknown':
|
||||||
self.unknown_active_nodes[node_id] = to_path
|
self.unknown_active_nodes[node_id] = to_path
|
||||||
elif version_spec == 'nightly':
|
elif version_spec == 'nightly':
|
||||||
|
cnr_utils.generate_cnr_id(to_path, node_id)
|
||||||
self.active_nodes[node_id] = 'nightly', to_path
|
self.active_nodes[node_id] = 'nightly', to_path
|
||||||
|
else:
|
||||||
|
return res
|
||||||
|
|
||||||
return res.with_target(version_spec)
|
return res.with_target(version_spec)
|
||||||
|
|
||||||
@@ -1347,6 +1406,63 @@ class UnifiedManager:
|
|||||||
unified_manager = UnifiedManager()
|
unified_manager = UnifiedManager()
|
||||||
|
|
||||||
|
|
||||||
|
def identify_node_pack_from_path(fullpath):
|
||||||
|
module_name = os.path.basename(fullpath)
|
||||||
|
if module_name.endswith('.git'):
|
||||||
|
module_name = module_name[:-4]
|
||||||
|
|
||||||
|
repo_url = git_utils.git_url(fullpath)
|
||||||
|
if repo_url is None:
|
||||||
|
# cnr
|
||||||
|
cnr = cnr_utils.read_cnr_info(fullpath)
|
||||||
|
if cnr is not None:
|
||||||
|
return module_name, cnr['version'], cnr['id']
|
||||||
|
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
# nightly or unknown
|
||||||
|
cnr_id = cnr_utils.read_cnr_id(fullpath)
|
||||||
|
commit_hash = git_utils.get_commit_hash(fullpath)
|
||||||
|
|
||||||
|
if cnr_id is not None:
|
||||||
|
return module_name, commit_hash, cnr_id
|
||||||
|
else:
|
||||||
|
return module_name, commit_hash, ''
|
||||||
|
|
||||||
|
|
||||||
|
def get_installed_node_packs():
|
||||||
|
res = {}
|
||||||
|
|
||||||
|
for x in get_custom_nodes_paths():
|
||||||
|
for y in os.listdir(x):
|
||||||
|
if y == '__pycache__' or y == '.disabled':
|
||||||
|
continue
|
||||||
|
|
||||||
|
fullpath = os.path.join(x, y)
|
||||||
|
info = identify_node_pack_from_path(fullpath)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
is_disabled = not y.endswith('.disabled')
|
||||||
|
|
||||||
|
res[info[0]] = { 'ver': info[1], 'cnr_id': info[2], 'enabled': is_disabled }
|
||||||
|
|
||||||
|
disabled_dirs = os.path.join(x, '.disabled')
|
||||||
|
if os.path.exists(disabled_dirs):
|
||||||
|
for y in os.listdir(disabled_dirs):
|
||||||
|
if y == '__pycache__':
|
||||||
|
continue
|
||||||
|
|
||||||
|
fullpath = os.path.join(disabled_dirs, y)
|
||||||
|
info = identify_node_pack_from_path(fullpath)
|
||||||
|
if info is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
res[info[0]] = { 'ver': info[1], 'cnr_id': info[2], 'enabled': False }
|
||||||
|
|
||||||
|
return res
|
||||||
|
|
||||||
|
|
||||||
def get_channel_dict():
|
def get_channel_dict():
|
||||||
global channel_dict
|
global channel_dict
|
||||||
|
|
||||||
@@ -1389,9 +1505,7 @@ class ManagerFuncs:
|
|||||||
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
print(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
new_env = os.environ.copy()
|
subprocess.check_call(cmd, cwd=cwd, env=get_script_env())
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
|
||||||
subprocess.check_call(cmd, cwd=cwd, env=new_env)
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
@@ -1403,7 +1517,6 @@ def write_config():
|
|||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config['default'] = {
|
config['default'] = {
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': get_config()['badge_mode'],
|
|
||||||
'git_exe': get_config()['git_exe'],
|
'git_exe': get_config()['git_exe'],
|
||||||
'channel_url': get_config()['channel_url'],
|
'channel_url': get_config()['channel_url'],
|
||||||
'share_option': get_config()['share_option'],
|
'share_option': get_config()['share_option'],
|
||||||
@@ -1444,7 +1557,6 @@ def read_config():
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
'preview_method': default_conf['preview_method'] if 'preview_method' in default_conf else manager_funcs.get_current_preview_method(),
|
'preview_method': default_conf['preview_method'] if 'preview_method' in default_conf else manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': default_conf['badge_mode'] if 'badge_mode' in default_conf else 'none',
|
|
||||||
'git_exe': default_conf['git_exe'] if 'git_exe' in default_conf else '',
|
'git_exe': default_conf['git_exe'] if 'git_exe' in default_conf else '',
|
||||||
'channel_url': default_conf['channel_url'] if 'channel_url' in default_conf else DEFAULT_CHANNEL,
|
'channel_url': default_conf['channel_url'] if 'channel_url' in default_conf else DEFAULT_CHANNEL,
|
||||||
'share_option': default_conf['share_option'] if 'share_option' in default_conf else 'all',
|
'share_option': default_conf['share_option'] if 'share_option' in default_conf else 'all',
|
||||||
@@ -1463,7 +1575,6 @@ def read_config():
|
|||||||
except Exception:
|
except Exception:
|
||||||
return {
|
return {
|
||||||
'preview_method': manager_funcs.get_current_preview_method(),
|
'preview_method': manager_funcs.get_current_preview_method(),
|
||||||
'badge_mode': 'none',
|
|
||||||
'git_exe': '',
|
'git_exe': '',
|
||||||
'channel_url': DEFAULT_CHANNEL,
|
'channel_url': DEFAULT_CHANNEL,
|
||||||
'share_option': 'all',
|
'share_option': 'all',
|
||||||
@@ -1489,9 +1600,47 @@ def get_config():
|
|||||||
return cached_config
|
return cached_config
|
||||||
|
|
||||||
|
|
||||||
|
def get_remote_name(repo):
|
||||||
|
available_remotes = [remote.name for remote in repo.remotes]
|
||||||
|
if 'origin' in available_remotes:
|
||||||
|
return 'origin'
|
||||||
|
elif 'upstream' in available_remotes:
|
||||||
|
return 'upstream'
|
||||||
|
elif len(available_remotes) > 0:
|
||||||
|
return available_remotes[0]
|
||||||
|
|
||||||
|
if not available_remotes:
|
||||||
|
print(f"[ComfyUI-Manager] No remotes are configured for this repository: {repo.working_dir}")
|
||||||
|
else:
|
||||||
|
print(f"[ComfyUI-Manager] Available remotes in '{repo.working_dir}': ")
|
||||||
|
for remote in available_remotes:
|
||||||
|
print(f"- {remote}")
|
||||||
|
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def switch_to_default_branch(repo):
|
def switch_to_default_branch(repo):
|
||||||
default_branch = repo.git.symbolic_ref('refs/remotes/origin/HEAD').replace('refs/remotes/origin/', '')
|
remote_name = get_remote_name(repo)
|
||||||
repo.git.checkout(default_branch)
|
|
||||||
|
try:
|
||||||
|
if remote_name is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
default_branch = repo.git.symbolic_ref(f'refs/remotes/{remote_name}/HEAD').replace(f'refs/remotes/{remote_name}/', '')
|
||||||
|
repo.git.checkout(default_branch)
|
||||||
|
return True
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
repo.git.checkout(repo.heads.master)
|
||||||
|
except:
|
||||||
|
try:
|
||||||
|
if remote_name is not None:
|
||||||
|
repo.git.checkout('-b', 'master', f'{remote_name}/master')
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
print("[ComfyUI Manager] Failed to switch to the default branch")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
def try_install_script(url, repo_path, install_cmd, instant_execution=False):
|
||||||
@@ -1542,9 +1691,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
|||||||
else:
|
else:
|
||||||
command = [sys.executable, git_script_path, "--check", path]
|
command = [sys.executable, git_script_path, "--check", path]
|
||||||
|
|
||||||
new_env = os.environ.copy()
|
new_env = get_script_env()
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path(), env=new_env)
|
||||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=get_default_custom_nodes_path())
|
|
||||||
output, _ = process.communicate()
|
output, _ = process.communicate()
|
||||||
output = output.decode('utf-8').strip()
|
output = output.decode('utf-8').strip()
|
||||||
|
|
||||||
@@ -1595,10 +1743,8 @@ def __win_check_git_update(path, do_fetch=False, do_update=False):
|
|||||||
|
|
||||||
|
|
||||||
def __win_check_git_pull(path):
|
def __win_check_git_pull(path):
|
||||||
new_env = os.environ.copy()
|
|
||||||
new_env["COMFYUI_PATH"] = comfy_path
|
|
||||||
command = [sys.executable, git_script_path, "--pull", path]
|
command = [sys.executable, git_script_path, "--pull", path]
|
||||||
process = subprocess.Popen(command, env=new_env, cwd=get_default_custom_nodes_path())
|
process = subprocess.Popen(command, env=get_script_env(), cwd=get_default_custom_nodes_path())
|
||||||
process.wait()
|
process.wait()
|
||||||
|
|
||||||
|
|
||||||
@@ -1675,7 +1821,11 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
# Fetch the latest commits from the remote repository
|
# Fetch the latest commits from the remote repository
|
||||||
repo = git.Repo(path)
|
repo = git.Repo(path)
|
||||||
|
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
|
|
||||||
|
if remote_name is None:
|
||||||
|
raise ValueError(f"No remotes are configured for this repository: {path}")
|
||||||
|
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
|
|
||||||
if not do_update and repo.head.is_detached:
|
if not do_update and repo.head.is_detached:
|
||||||
@@ -1685,7 +1835,8 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
return True, True # detached branch is treated as updatable
|
return True, True # detached branch is treated as updatable
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch detached branch to default branch: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
@@ -1698,11 +1849,13 @@ def git_repo_update_check_with(path, do_fetch=False, do_update=False, no_deps=Fa
|
|||||||
|
|
||||||
if do_update:
|
if do_update:
|
||||||
if repo.is_dirty():
|
if repo.is_dirty():
|
||||||
print(f"STASH: '{path}' is dirty.")
|
print(f"\nSTASH: '{path}' is dirty.")
|
||||||
repo.git.stash()
|
repo.git.stash()
|
||||||
|
|
||||||
if f'{remote_name}/{branch_name}' not in repo.refs:
|
if f'{remote_name}/{branch_name}' not in repo.refs:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch to default branch while updating: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
@@ -1861,7 +2014,8 @@ def git_pull(path):
|
|||||||
repo.git.stash()
|
repo.git.stash()
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
raise ValueError(f"Failed to switch to default branch while pulling: {path}")
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
@@ -2125,14 +2279,15 @@ def update_path(repo_path, instant_execution=False, no_deps=False):
|
|||||||
repo = git.Repo(repo_path)
|
repo = git.Repo(repo_path)
|
||||||
|
|
||||||
if repo.head.is_detached:
|
if repo.head.is_detached:
|
||||||
switch_to_default_branch(repo)
|
if not switch_to_default_branch(repo):
|
||||||
|
return "fail"
|
||||||
|
|
||||||
current_branch = repo.active_branch
|
current_branch = repo.active_branch
|
||||||
branch_name = current_branch.name
|
branch_name = current_branch.name
|
||||||
|
|
||||||
if current_branch.tracking_branch() is None:
|
if current_branch.tracking_branch() is None:
|
||||||
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
print(f"[ComfyUI-Manager] There is no tracking branch ({current_branch})")
|
||||||
remote_name = 'origin'
|
remote_name = get_remote_name(repo)
|
||||||
else:
|
else:
|
||||||
remote_name = current_branch.tracking_branch().remote_name
|
remote_name = current_branch.tracking_branch().remote_name
|
||||||
remote = repo.remote(name=remote_name)
|
remote = repo.remote(name=remote_name)
|
||||||
@@ -2151,6 +2306,7 @@ def update_path(repo_path, instant_execution=False, no_deps=False):
|
|||||||
f"-----------------------------------------------------------------------------------------\n"
|
f"-----------------------------------------------------------------------------------------\n"
|
||||||
f'git config --global --add safe.directory "{safedir_path}"\n'
|
f'git config --global --add safe.directory "{safedir_path}"\n'
|
||||||
f"-----------------------------------------------------------------------------------------\n")
|
f"-----------------------------------------------------------------------------------------\n")
|
||||||
|
return "fail"
|
||||||
|
|
||||||
commit_hash = repo.head.commit.hexsha
|
commit_hash = repo.head.commit.hexsha
|
||||||
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
remote_commit_hash = repo.refs[f'{remote_name}/{branch_name}'].object.hexsha
|
||||||
@@ -2220,11 +2376,14 @@ def check_state_of_git_node_pack_single(item, do_fetch=False, do_update_check=Tr
|
|||||||
|
|
||||||
if dir_path and os.path.exists(dir_path):
|
if dir_path and os.path.exists(dir_path):
|
||||||
if do_update_check:
|
if do_update_check:
|
||||||
update_state, success = git_repo_update_check_with(dir_path, do_fetch, do_update)
|
try:
|
||||||
if (do_update_check or do_update) and update_state:
|
update_state, success = git_repo_update_check_with(dir_path, do_fetch, do_update)
|
||||||
item['update-state'] = 'true'
|
if (do_update_check or do_update) and update_state:
|
||||||
elif do_update and not success:
|
item['update-state'] = 'true'
|
||||||
item['update-state'] = 'fail'
|
elif do_update and not success:
|
||||||
|
item['update-state'] = 'fail'
|
||||||
|
except Exception:
|
||||||
|
print(f"[ComfyUI-Manager] Failed to check state of the git node pack: {dir_path}")
|
||||||
|
|
||||||
|
|
||||||
def get_installed_pip_packages():
|
def get_installed_pip_packages():
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ class ManagerFuncsInComfyUI(core.ManagerFuncs):
|
|||||||
logging.error(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
logging.error(f"[ComfyUI-Manager] Unexpected behavior: `{cmd}`")
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, bufsize=1)
|
process = subprocess.Popen(cmd, cwd=cwd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True, bufsize=1, env=core.get_script_env())
|
||||||
|
|
||||||
stdout_thread = threading.Thread(target=handle_stream, args=(process.stdout, ""))
|
stdout_thread = threading.Thread(target=handle_stream, args=(process.stdout, ""))
|
||||||
stderr_thread = threading.Thread(target=handle_stream, args=(process.stderr, "[!]"))
|
stderr_thread = threading.Thread(target=handle_stream, args=(process.stderr, "[!]"))
|
||||||
@@ -153,10 +153,6 @@ def set_preview_method(method):
|
|||||||
set_preview_method(core.get_config()['preview_method'])
|
set_preview_method(core.get_config()['preview_method'])
|
||||||
|
|
||||||
|
|
||||||
def set_badge_mode(mode):
|
|
||||||
core.get_config()['badge_mode'] = mode
|
|
||||||
|
|
||||||
|
|
||||||
def set_default_ui_mode(mode):
|
def set_default_ui_mode(mode):
|
||||||
core.get_config()['default_ui'] = mode
|
core.get_config()['default_ui'] = mode
|
||||||
|
|
||||||
@@ -541,17 +537,18 @@ def populate_markdown(x):
|
|||||||
x['title'] = manager_util.sanitize_tag(x['title'])
|
x['title'] = manager_util.sanitize_tag(x['title'])
|
||||||
|
|
||||||
|
|
||||||
|
# freeze imported version
|
||||||
|
startup_time_installed_node_packs = core.get_installed_node_packs()
|
||||||
@routes.get("/customnode/installed")
|
@routes.get("/customnode/installed")
|
||||||
async def installed_list(request):
|
async def installed_list(request):
|
||||||
unified_manager = core.unified_manager
|
mode = request.query.get('mode', 'default')
|
||||||
|
|
||||||
await unified_manager.reload('cache')
|
if mode == 'imported':
|
||||||
await unified_manager.get_custom_nodes('default', 'cache')
|
res = startup_time_installed_node_packs
|
||||||
|
else:
|
||||||
|
res = core.get_installed_node_packs()
|
||||||
|
|
||||||
return web.json_response({
|
return web.json_response(res, content_type='application/json')
|
||||||
node_id: package.version if package.is_from_cnr else package.get_commit_hash()
|
|
||||||
for node_id, package in unified_manager.installed_node_packages.items() if not package.disabled
|
|
||||||
}, content_type='application/json')
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/customnode/getlist")
|
@routes.get("/customnode/getlist")
|
||||||
@@ -820,7 +817,7 @@ async def get_cnr_versions(request):
|
|||||||
node_name = request.match_info.get("node_name", None)
|
node_name = request.match_info.get("node_name", None)
|
||||||
versions = core.cnr_utils.all_versions_of_node(node_name)
|
versions = core.cnr_utils.all_versions_of_node(node_name)
|
||||||
|
|
||||||
if versions:
|
if versions is not None:
|
||||||
return web.json_response(versions, content_type='application/json')
|
return web.json_response(versions, content_type='application/json')
|
||||||
|
|
||||||
return web.Response(status=400)
|
return web.Response(status=400)
|
||||||
@@ -861,6 +858,8 @@ async def install_custom_node(request):
|
|||||||
cnr_id = json_data.get('id')
|
cnr_id = json_data.get('id')
|
||||||
skip_post_install = json_data.get('skip_post_install')
|
skip_post_install = json_data.get('skip_post_install')
|
||||||
|
|
||||||
|
git_url = None
|
||||||
|
|
||||||
if json_data['version'] != 'unknown':
|
if json_data['version'] != 'unknown':
|
||||||
selected_version = json_data.get('selected_version', 'latest')
|
selected_version = json_data.get('selected_version', 'latest')
|
||||||
if selected_version != 'nightly':
|
if selected_version != 'nightly':
|
||||||
@@ -868,14 +867,22 @@ async def install_custom_node(request):
|
|||||||
node_spec_str = f"{cnr_id}@{selected_version}"
|
node_spec_str = f"{cnr_id}@{selected_version}"
|
||||||
else:
|
else:
|
||||||
node_spec_str = f"{cnr_id}@nightly"
|
node_spec_str = f"{cnr_id}@nightly"
|
||||||
|
git_url = [json_data.get('reference')]
|
||||||
|
if git_url is None:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
|
return web.Response(status=404, text=f"Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
else:
|
else:
|
||||||
# unknown
|
# unknown
|
||||||
unknown_name = os.path.basename(json_data['files'][0])
|
unknown_name = os.path.basename(json_data['files'][0])
|
||||||
node_spec_str = f"{unknown_name}@unknown"
|
node_spec_str = f"{unknown_name}@unknown"
|
||||||
|
git_url = json_data.get('files')
|
||||||
|
|
||||||
# apply security policy if not cnr node (nightly isn't regarded as cnr node)
|
# apply security policy if not cnr node (nightly isn't regarded as cnr node)
|
||||||
if risky_level is None:
|
if risky_level is None:
|
||||||
risky_level = await get_risky_level(json_data['files'], json_data.get('pip', []))
|
if git_url is not None:
|
||||||
|
risky_level = await get_risky_level(git_url, json_data.get('pip', []))
|
||||||
|
else:
|
||||||
|
return web.Response(status=404, text=f"Following node pack doesn't provide `nightly` version: ${git_url}")
|
||||||
|
|
||||||
if not is_allowed_security_level(risky_level):
|
if not is_allowed_security_level(risky_level):
|
||||||
logging.error(SECURITY_MESSAGE_GENERAL)
|
logging.error(SECURITY_MESSAGE_GENERAL)
|
||||||
@@ -891,7 +898,11 @@ async def install_custom_node(request):
|
|||||||
# discard post install if skip_post_install mode
|
# discard post install if skip_post_install mode
|
||||||
|
|
||||||
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
if res.action not in ['skip', 'enable', 'install-git', 'install-cnr', 'switch-cnr']:
|
||||||
return web.Response(status=400, text=f"Installation failed: {res}")
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return web.Response(status=400, text=res.msg)
|
||||||
|
elif not res.result:
|
||||||
|
logging.error(f"[ComfyUI-Manager] Installation failed:\n{res.msg}")
|
||||||
|
return web.Response(status=400, text=res.msg)
|
||||||
|
|
||||||
return web.Response(status=200, text="Installation success.")
|
return web.Response(status=200, text="Installation success.")
|
||||||
|
|
||||||
@@ -915,10 +926,10 @@ async def fix_custom_node(request):
|
|||||||
res = core.unified_manager.unified_fix(node_name, node_ver)
|
res = core.unified_manager.unified_fix(node_name, node_ver)
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
logging.error(f"\nERROR: An error occurred while fixing '{node_name}@{node_ver}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while fixing '{node_name}@{node_ver}'.")
|
return web.Response(status=400, text=f"An error occurred while fixing '{node_name}@{node_ver}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -932,10 +943,10 @@ async def install_custom_node_git_url(request):
|
|||||||
res = await core.gitclone_install(url)
|
res = await core.gitclone_install(url)
|
||||||
|
|
||||||
if res.action == 'skip':
|
if res.action == 'skip':
|
||||||
logging.info(f"Already installed: '{res.target}'")
|
logging.info(f"\nAlready installed: '{res.target}'")
|
||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
elif res.result:
|
elif res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
|
|
||||||
logging.error(res.msg)
|
logging.error(res.msg)
|
||||||
@@ -974,10 +985,10 @@ async def uninstall_custom_node(request):
|
|||||||
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
res = core.unified_manager.unified_uninstall(node_name, is_unknown)
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while uninstalling '{node_name}'.")
|
logging.error(f"\nERROR: An error occurred while uninstalling '{node_name}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while uninstalling '{node_name}'.")
|
return web.Response(status=400, text=f"An error occurred while uninstalling '{node_name}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -1001,10 +1012,10 @@ async def update_custom_node(request):
|
|||||||
manager_util.clear_pip_cache()
|
manager_util.clear_pip_cache()
|
||||||
|
|
||||||
if res.result:
|
if res.result:
|
||||||
logging.info("After restarting ComfyUI, please refresh the browser.")
|
logging.info("\nAfter restarting ComfyUI, please refresh the browser.")
|
||||||
return web.json_response({}, content_type='application/json')
|
return web.json_response({}, content_type='application/json')
|
||||||
|
|
||||||
logging.error(f"ERROR: An error occurred while updating '{node_name}'.")
|
logging.error(f"\nERROR: An error occurred while updating '{node_name}'.")
|
||||||
return web.Response(status=400, text=f"An error occurred while updating '{node_name}'.")
|
return web.Response(status=400, text=f"An error occurred while updating '{node_name}'.")
|
||||||
|
|
||||||
|
|
||||||
@@ -1153,17 +1164,6 @@ async def preview_method(request):
|
|||||||
return web.Response(status=200)
|
return web.Response(status=200)
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/badge_mode")
|
|
||||||
async def badge_mode(request):
|
|
||||||
if "value" in request.rel_url.query:
|
|
||||||
set_badge_mode(request.rel_url.query['value'])
|
|
||||||
core.write_config()
|
|
||||||
else:
|
|
||||||
return web.Response(text=core.get_config()['badge_mode'], status=200)
|
|
||||||
|
|
||||||
return web.Response(status=200)
|
|
||||||
|
|
||||||
|
|
||||||
@routes.get("/manager/default_ui")
|
@routes.get("/manager/default_ui")
|
||||||
async def default_ui_mode(request):
|
async def default_ui_mode(request):
|
||||||
if "value" in request.rel_url.query:
|
if "value" in request.rel_url.query:
|
||||||
@@ -1301,9 +1301,13 @@ def restart(self):
|
|||||||
sys_argv.remove('--windows-standalone-build')
|
sys_argv.remove('--windows-standalone-build')
|
||||||
|
|
||||||
if sys.platform.startswith('win32'):
|
if sys.platform.startswith('win32'):
|
||||||
return os.execv(sys.executable, ['"' + sys.executable + '"', '"' + sys_argv[0] + '"'] + sys_argv[1:])
|
cmds = ['"' + sys.executable + '"', '"' + sys_argv[0] + '"'] + sys_argv[1:]
|
||||||
else:
|
else:
|
||||||
return os.execv(sys.executable, [sys.executable] + sys_argv)
|
cmds = [sys.executable] + sys_argv
|
||||||
|
|
||||||
|
print(f"Command: {cmds}", flush=True)
|
||||||
|
|
||||||
|
return os.execv(sys.executable, cmds)
|
||||||
|
|
||||||
|
|
||||||
@routes.post("/manager/component/save")
|
@routes.post("/manager/component/save")
|
||||||
@@ -1410,13 +1414,16 @@ async def default_cache_update():
|
|||||||
|
|
||||||
await asyncio.gather(a, b, c, d, e)
|
await asyncio.gather(a, b, c, d, e)
|
||||||
|
|
||||||
|
# load at least once
|
||||||
|
await core.unified_manager.reload('cache', dont_wait=False)
|
||||||
|
await core.unified_manager.get_custom_nodes('default', 'cache')
|
||||||
|
|
||||||
# NOTE: hide migration button temporarily.
|
# NOTE: hide migration button temporarily.
|
||||||
# if not core.get_config()['skip_migration_check']:
|
# if not core.get_config()['skip_migration_check']:
|
||||||
# await core.check_need_to_migrate()
|
# await core.check_need_to_migrate()
|
||||||
# else:
|
# else:
|
||||||
# logging.info("[ComfyUI-Manager] Migration check is skipped...")
|
# logging.info("[ComfyUI-Manager] Migration check is skipped...")
|
||||||
|
|
||||||
|
|
||||||
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
|
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
|
||||||
|
|
||||||
if not os.path.exists(core.manager_config_path):
|
if not os.path.exists(core.manager_config_path):
|
||||||
|
|||||||
@@ -1,3 +1,8 @@
|
|||||||
|
"""
|
||||||
|
description:
|
||||||
|
`manager_util` is the lightest module shared across the prestartup_script, main code, and cm-cli of ComfyUI-Manager.
|
||||||
|
"""
|
||||||
|
|
||||||
import aiohttp
|
import aiohttp
|
||||||
import json
|
import json
|
||||||
import threading
|
import threading
|
||||||
@@ -6,11 +11,13 @@ from datetime import datetime
|
|||||||
import subprocess
|
import subprocess
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
|
import logging
|
||||||
|
|
||||||
|
|
||||||
cache_lock = threading.Lock()
|
cache_lock = threading.Lock()
|
||||||
|
|
||||||
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__), '..'))
|
||||||
cache_dir = os.path.join(comfyui_manager_path, '.cache')
|
cache_dir = os.path.join(comfyui_manager_path, '.cache') # This path is also updated together in **manager_core.update_user_directory**.
|
||||||
|
|
||||||
|
|
||||||
# DON'T USE StrictVersion - cannot handle pre_release version
|
# DON'T USE StrictVersion - cannot handle pre_release version
|
||||||
@@ -123,15 +130,26 @@ async def get_data(uri, silent=False):
|
|||||||
return json_obj
|
return json_obj
|
||||||
|
|
||||||
|
|
||||||
async def get_data_with_cache(uri, silent=False, cache_mode=True):
|
async def get_data_with_cache(uri, silent=False, cache_mode=True, dont_wait=False):
|
||||||
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
cache_uri = str(simple_hash(uri)) + '_' + os.path.basename(uri).replace('&', "_").replace('?', "_").replace('=', "_")
|
||||||
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
cache_uri = os.path.join(cache_dir, cache_uri+'.json')
|
||||||
|
|
||||||
|
if cache_mode and dont_wait:
|
||||||
|
# NOTE: return the cache if possible, even if it is expired, so do not cache
|
||||||
|
if not os.path.exists(cache_uri):
|
||||||
|
logging.error(f"[ComfyUI-Manager] The network connection is unstable, so it is operating in fallback mode: {uri}")
|
||||||
|
|
||||||
|
return {}
|
||||||
|
else:
|
||||||
|
if not is_file_created_within_one_day(cache_uri):
|
||||||
|
logging.error(f"[ComfyUI-Manager] The network connection is unstable, so it is operating in outdated cache mode: {uri}")
|
||||||
|
|
||||||
|
return await get_data(cache_uri, silent=silent)
|
||||||
|
|
||||||
if cache_mode and is_file_created_within_one_day(cache_uri):
|
if cache_mode and is_file_created_within_one_day(cache_uri):
|
||||||
json_obj = await get_data(cache_uri, silent=silent)
|
json_obj = await get_data(cache_uri, silent=silent)
|
||||||
else:
|
else:
|
||||||
json_obj = await get_data(uri, silent=silent)
|
json_obj = await get_data(uri, silent=silent)
|
||||||
|
|
||||||
with cache_lock:
|
with cache_lock:
|
||||||
with open(cache_uri, "w", encoding='utf-8') as file:
|
with open(cache_uri, "w", encoding='utf-8') as file:
|
||||||
json.dump(json_obj, file, indent=4, sort_keys=True)
|
json.dump(json_obj, file, indent=4, sort_keys=True)
|
||||||
|
|||||||
@@ -45,6 +45,11 @@ async function tryInstallCustomNode(event) {
|
|||||||
show_message('This action is not allowed with this security level configuration.');
|
show_message('This action is not allowed with this security level configuration.');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
else if(response.status == 400) {
|
||||||
|
let msg = await res.text();
|
||||||
|
show_message(msg);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
let response = await api.fetchApi("/manager/reboot");
|
let response = await api.fetchApi("/manager/reboot");
|
||||||
|
|||||||
@@ -103,24 +103,6 @@ docStyle.innerHTML = `
|
|||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
#cm-channel-badge {
|
|
||||||
color: white;
|
|
||||||
background-color: #AA0000;
|
|
||||||
width: 220px;
|
|
||||||
height: 23px;
|
|
||||||
font-size: 13px;
|
|
||||||
border-radius: 5px;
|
|
||||||
left: 5px;
|
|
||||||
top: 5px;
|
|
||||||
align-content: center;
|
|
||||||
justify-content: center;
|
|
||||||
text-align: center;
|
|
||||||
font-weight: bold;
|
|
||||||
float: left;
|
|
||||||
vertical-align: middle;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
|
|
||||||
#custom-nodes-grid a {
|
#custom-nodes-grid a {
|
||||||
color: #5555FF;
|
color: #5555FF;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@@ -244,7 +226,6 @@ var update_comfyui_button = null;
|
|||||||
var switch_comfyui_button = null;
|
var switch_comfyui_button = null;
|
||||||
var fetch_updates_button = null;
|
var fetch_updates_button = null;
|
||||||
var update_all_button = null;
|
var update_all_button = null;
|
||||||
var badge_mode = "none";
|
|
||||||
let share_option = 'all';
|
let share_option = 'all';
|
||||||
|
|
||||||
// copied style from https://github.com/pythongosssss/ComfyUI-Custom-Scripts
|
// copied style from https://github.com/pythongosssss/ComfyUI-Custom-Scripts
|
||||||
@@ -426,14 +407,6 @@ const style = `
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
async function init_badge_mode() {
|
|
||||||
api.fetchApi('/manager/badge_mode')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => { badge_mode = data; })
|
|
||||||
}
|
|
||||||
|
|
||||||
async function init_share_option() {
|
async function init_share_option() {
|
||||||
api.fetchApi('/manager/share_option')
|
api.fetchApi('/manager/share_option')
|
||||||
.then(response => response.text())
|
.then(response => response.text())
|
||||||
@@ -450,7 +423,6 @@ async function init_notice(notice) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
await init_badge_mode();
|
|
||||||
await init_share_option();
|
await init_share_option();
|
||||||
|
|
||||||
async function fetchNicknames() {
|
async function fetchNicknames() {
|
||||||
@@ -517,65 +489,6 @@ function getNickname(node, nodename) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function drawBadge(node, orig, restArgs) {
|
|
||||||
let ctx = restArgs[0];
|
|
||||||
const r = orig?.apply?.(node, restArgs);
|
|
||||||
|
|
||||||
if (!node.flags.collapsed && badge_mode != 'none' && node.constructor.title_mode != LiteGraph.NO_TITLE) {
|
|
||||||
let text = "";
|
|
||||||
if (badge_mode.startsWith('id_nick'))
|
|
||||||
text = `#${node.id} `;
|
|
||||||
|
|
||||||
let nick = node.getNickname();
|
|
||||||
if (nick) {
|
|
||||||
if (nick == 'ComfyUI') {
|
|
||||||
if(badge_mode.endsWith('hide')) {
|
|
||||||
nick = "";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
nick = "🦊"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (nick.length > 25) {
|
|
||||||
text += nick.substring(0, 23) + "..";
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
text += nick;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (text != "") {
|
|
||||||
let fgColor = "white";
|
|
||||||
let bgColor = "#0F1F0F";
|
|
||||||
let visible = true;
|
|
||||||
|
|
||||||
ctx.save();
|
|
||||||
ctx.font = "12px sans-serif";
|
|
||||||
const sz = ctx.measureText(text);
|
|
||||||
ctx.fillStyle = bgColor;
|
|
||||||
ctx.beginPath();
|
|
||||||
ctx.roundRect(node.size[0] - sz.width - 12, -LiteGraph.NODE_TITLE_HEIGHT - 20, sz.width + 12, 20, 5);
|
|
||||||
ctx.fill();
|
|
||||||
|
|
||||||
ctx.fillStyle = fgColor;
|
|
||||||
ctx.fillText(text, node.size[0] - sz.width - 6, -LiteGraph.NODE_TITLE_HEIGHT - 6);
|
|
||||||
ctx.restore();
|
|
||||||
|
|
||||||
if (node.has_errors) {
|
|
||||||
ctx.save();
|
|
||||||
ctx.font = "bold 14px sans-serif";
|
|
||||||
const sz2 = ctx.measureText(node.type);
|
|
||||||
ctx.fillStyle = 'white';
|
|
||||||
ctx.fillText(node.type, node.size[0] / 2 - sz2.width / 2, node.size[1] / 2);
|
|
||||||
ctx.restore();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return r;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
async function updateComfyUI() {
|
async function updateComfyUI() {
|
||||||
let prev_text = update_comfyui_button.innerText;
|
let prev_text = update_comfyui_button.innerText;
|
||||||
update_comfyui_button.innerText = "Updating ComfyUI...";
|
update_comfyui_button.innerText = "Updating ComfyUI...";
|
||||||
@@ -1050,7 +963,7 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.datasrc_combo.className = "cm-menu-combo";
|
this.datasrc_combo.className = "cm-menu-combo";
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'cache', text: 'DB: Channel (1day cache)' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'cache', text: 'DB: Channel (1day cache)' }, []));
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'local', text: 'DB: Local' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'local', text: 'DB: Local' }, []));
|
||||||
this.datasrc_combo.appendChild($el('option', { value: 'url', text: 'DB: Channel (remote)' }, []));
|
this.datasrc_combo.appendChild($el('option', { value: 'remote', text: 'DB: Channel (remote)' }, []));
|
||||||
|
|
||||||
// preview method
|
// preview method
|
||||||
let preview_combo = document.createElement("select");
|
let preview_combo = document.createElement("select");
|
||||||
@@ -1069,32 +982,9 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
api.fetchApi(`/manager/preview_method?value=${event.target.value}`);
|
api.fetchApi(`/manager/preview_method?value=${event.target.value}`);
|
||||||
});
|
});
|
||||||
|
|
||||||
// nickname
|
|
||||||
let badge_combo = "";
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
badge_combo = document.createElement("select");
|
|
||||||
badge_combo.setAttribute("title", "Configure the content to be displayed on the badge at the top right corner of the node. The ID is the identifier of the node. If 'hide built-in' is selected, both unknown nodes and built-in nodes will be omitted, making them indistinguishable");
|
|
||||||
badge_combo.className = "cm-menu-combo";
|
|
||||||
badge_combo.appendChild($el('option', { value: 'none', text: 'Badge: None' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'nick', text: 'Badge: Nickname' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'nick_hide', text: 'Badge: Nickname (hide built-in)' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'id_nick', text: 'Badge: #ID Nickname' }, []));
|
|
||||||
badge_combo.appendChild($el('option', { value: 'id_nick_hide', text: 'Badge: #ID Nickname (hide built-in)' }, []));
|
|
||||||
|
|
||||||
api.fetchApi('/manager/badge_mode')
|
|
||||||
.then(response => response.text())
|
|
||||||
.then(data => { badge_combo.value = data; badge_mode = data; });
|
|
||||||
|
|
||||||
badge_combo.addEventListener('change', function (event) {
|
|
||||||
api.fetchApi(`/manager/badge_mode?value=${event.target.value}`);
|
|
||||||
badge_mode = event.target.value;
|
|
||||||
app.graph.setDirtyCanvas(true);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
// channel
|
// channel
|
||||||
let channel_combo = document.createElement("select");
|
let channel_combo = document.createElement("select");
|
||||||
channel_combo.setAttribute("title", "Configure the channel for retrieving data from the Custom Node list (including missing nodes) or the Model list. Note that the badge utilizes local information.");
|
channel_combo.setAttribute("title", "Configure the channel for retrieving data from the Custom Node list (including missing nodes) or the Model list.");
|
||||||
channel_combo.className = "cm-menu-combo";
|
channel_combo.className = "cm-menu-combo";
|
||||||
api.fetchApi('/manager/channel_url_list')
|
api.fetchApi('/manager/channel_url_list')
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
@@ -1218,7 +1108,6 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
this.datasrc_combo,
|
this.datasrc_combo,
|
||||||
channel_combo,
|
channel_combo,
|
||||||
preview_combo,
|
preview_combo,
|
||||||
badge_combo,
|
|
||||||
default_ui_combo,
|
default_ui_combo,
|
||||||
share_combo,
|
share_combo,
|
||||||
component_policy_combo,
|
component_policy_combo,
|
||||||
@@ -1663,32 +1552,6 @@ app.registerExtension({
|
|||||||
this._addExtraNodeContextMenu(nodeType, app);
|
this._addExtraNodeContextMenu(nodeType, app);
|
||||||
},
|
},
|
||||||
|
|
||||||
async nodeCreated(node, app) {
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
if(!node.badge_enabled) {
|
|
||||||
node.getNickname = function () { return getNickname(node, node.comfyClass.trim()) };
|
|
||||||
let orig = node.onDrawForeground;
|
|
||||||
if(!orig)
|
|
||||||
orig = node.__proto__.onDrawForeground;
|
|
||||||
|
|
||||||
node.onDrawForeground = function (ctx) {
|
|
||||||
drawBadge(node, orig, arguments)
|
|
||||||
};
|
|
||||||
node.badge_enabled = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
async loadedGraphNode(node, app) {
|
|
||||||
if(is_legacy_front()) {
|
|
||||||
if(!node.badge_enabled) {
|
|
||||||
const orig = node.onDrawForeground;
|
|
||||||
node.getNickname = function () { return getNickname(node, node.type.trim()) };
|
|
||||||
node.onDrawForeground = function (ctx) { drawBadge(node, orig, arguments) };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
_addExtraNodeContextMenu(node, app) {
|
_addExtraNodeContextMenu(node, app) {
|
||||||
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
const origGetExtraMenuOptions = node.prototype.getExtraMenuOptions;
|
||||||
node.prototype.cm_menu_added = true;
|
node.prototype.cm_menu_added = true;
|
||||||
|
|||||||
@@ -96,7 +96,7 @@ function internalCustomConfirm(message, confirmMessage, cancelMessage) {
|
|||||||
|
|
||||||
export function show_message(msg) {
|
export function show_message(msg) {
|
||||||
app.ui.dialog.show(msg);
|
app.ui.dialog.show(msg);
|
||||||
app.ui.dialog.element.style.zIndex = 1099;
|
app.ui.dialog.element.style.zIndex = 1100;
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function sleep(ms) {
|
export async function sleep(ms) {
|
||||||
|
|||||||
@@ -1190,7 +1190,7 @@ export class CustomNodesManager {
|
|||||||
version_cnt++;
|
version_cnt++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(rowItem.cnr_latest != rowItem.originalData.active_version) {
|
if(rowItem.cnr_latest != rowItem.originalData.active_version && obj.length > 0) {
|
||||||
versions.push('latest');
|
versions.push('latest');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1281,7 +1281,7 @@ export class CustomNodesManager {
|
|||||||
body: JSON.stringify(data)
|
body: JSON.stringify(data)
|
||||||
});
|
});
|
||||||
|
|
||||||
if (res.error) {
|
if (res.status != 200) {
|
||||||
|
|
||||||
errorMsg = `${item.title} ${mode} failed: `;
|
errorMsg = `${item.title} ${mode} failed: `;
|
||||||
if(res.status == 403) {
|
if(res.status == 403) {
|
||||||
@@ -1289,7 +1289,7 @@ export class CustomNodesManager {
|
|||||||
} else if(res.status == 404) {
|
} else if(res.status == 404) {
|
||||||
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.`;
|
errorMsg += `With the current security level configuration, only custom nodes from the <B>"default channel"</B> can be installed.`;
|
||||||
} else {
|
} else {
|
||||||
errorMsg += res.error.message;
|
errorMsg += await res.text();
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
@@ -1310,6 +1310,7 @@ export class CustomNodesManager {
|
|||||||
|
|
||||||
if (errorMsg) {
|
if (errorMsg) {
|
||||||
this.showError(errorMsg);
|
this.showError(errorMsg);
|
||||||
|
show_message("Installation Error:\n"+errorMsg);
|
||||||
} else {
|
} else {
|
||||||
this.showStatus(`${label} ${list.length} custom node(s) successfully`);
|
this.showStatus(`${label} ${list.length} custom node(s) successfully`);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,16 +17,18 @@ import { api } from "../../scripts/api.js";
|
|||||||
class WorkflowMetadataExtension {
|
class WorkflowMetadataExtension {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
this.name = "Comfy.CustomNodesManager.WorkflowMetadata";
|
||||||
this.installedNodeVersions = {};
|
this.installedNodes = {};
|
||||||
this.comfyCoreVersion = null;
|
this.comfyCoreVersion = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the installed node versions
|
* Get the installed nodes info
|
||||||
* @returns {Promise<Record<string, string>>} The mapping from node name to version
|
* @returns {Promise<Record<string, {ver: string, cnr_id: string, enabled: boolean}>>} The mapping from node name to its info.
|
||||||
* version can either be a git commit hash or a semantic version such as "1.0.0"
|
* ver can either be a git commit hash or a semantic version such as "1.0.0"
|
||||||
|
* cnr_id is the id of the node in the ComfyRegistry
|
||||||
|
* enabled is true if the node is enabled, false if it is disabled
|
||||||
*/
|
*/
|
||||||
async getInstalledNodeVersions() {
|
async getInstalledNodes() {
|
||||||
const res = await api.fetchApi("/customnode/installed");
|
const res = await api.fetchApi("/customnode/installed");
|
||||||
return await res.json();
|
return await res.json();
|
||||||
}
|
}
|
||||||
@@ -48,8 +50,12 @@ class WorkflowMetadataExtension {
|
|||||||
|
|
||||||
if (modules[0] === "custom_nodes") {
|
if (modules[0] === "custom_nodes") {
|
||||||
const nodePackageName = modules[1];
|
const nodePackageName = modules[1];
|
||||||
const nodeVersion = this.installedNodeVersions[nodePackageName];
|
const nodeInfo =
|
||||||
nodeVersions[nodePackageName] = nodeVersion;
|
this.installedNodes[nodePackageName] ??
|
||||||
|
this.installedNodes[nodePackageName.toLowerCase()];
|
||||||
|
if (nodeInfo) {
|
||||||
|
nodeVersions[nodePackageName] = nodeInfo.ver;
|
||||||
|
}
|
||||||
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
} else if (["nodes", "comfy_extras"].includes(modules[0])) {
|
||||||
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
nodeVersions["comfy-core"] = this.comfyCoreVersion;
|
||||||
} else {
|
} else {
|
||||||
@@ -61,7 +67,7 @@ class WorkflowMetadataExtension {
|
|||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
const extension = this;
|
const extension = this;
|
||||||
this.installedNodeVersions = await this.getInstalledNodeVersions();
|
this.installedNodes = await this.getInstalledNodes();
|
||||||
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
this.comfyCoreVersion = (await api.getSystemStats()).system.comfyui_version;
|
||||||
|
|
||||||
// Attach metadata when app.graphToPrompt is called.
|
// Attach metadata when app.graphToPrompt is called.
|
||||||
@@ -74,7 +80,11 @@ class WorkflowMetadataExtension {
|
|||||||
workflow.extra = {};
|
workflow.extra = {};
|
||||||
}
|
}
|
||||||
const graph = this;
|
const graph = this;
|
||||||
workflow.extra["node_versions"] = extension.getGraphNodeVersions(graph);
|
try {
|
||||||
|
workflow.extra["node_versions"] = extension.getGraphNodeVersions(graph);
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
return workflow;
|
return workflow;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -4040,7 +4040,7 @@
|
|||||||
"name": "Comfy-Org/hunyuan_video_vae_bf16.safetensors",
|
"name": "Comfy-Org/hunyuan_video_vae_bf16.safetensors",
|
||||||
"type": "VAE",
|
"type": "VAE",
|
||||||
"base": "Hunyuan Video",
|
"base": "Hunyuan Video",
|
||||||
"save_path": "VAE",
|
"save_path": "default",
|
||||||
"description": "Huyuan Video VAE model. repackaged version.",
|
"description": "Huyuan Video VAE model. repackaged version.",
|
||||||
"reference": "https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged",
|
"reference": "https://huggingface.co/Comfy-Org/HunyuanVideo_repackaged",
|
||||||
"filename": "hunyuan_video_vae_bf16.safetensors",
|
"filename": "hunyuan_video_vae_bf16.safetensors",
|
||||||
|
|||||||
@@ -9,7 +9,197 @@
|
|||||||
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
"description": "If you see this message, your ComfyUI-Manager is outdated.\nDev channel provides only the list of the developing nodes. If you want to find the complete node list, please go to the Default channel."
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "Alvaroeai",
|
||||||
|
"title": "ComfyUI-SunoAI-Mds",
|
||||||
|
"reference": "https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Suno Generate, Suno Download, Suno Proxy Generate, Suno Proxy Download"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "parmarjh",
|
||||||
|
"title": "ComfyUI-MochiWrapper-I2V [WIP]",
|
||||||
|
"reference": "https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "ComfyUI wrapper nodes for [a/Mochi](https://github.com/genmoai/models) video generator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "sourceful-official",
|
||||||
|
"title": "comfyui-cog-comfyui-incontext-three-panels",
|
||||||
|
"reference": "https://github.com/sourceful-official/comfyui-cog-comfyui-incontext-three-panels",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/sourceful-official/comfyui-cog-comfyui-incontext-three-panels"
|
||||||
|
],
|
||||||
|
"description": "NODES: SourcefulOfficialComfyuiIncontextThreePanels",
|
||||||
|
"install_type": "git-clone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Symbiomatrix",
|
||||||
|
"title": "Comfyui-Sort-Files",
|
||||||
|
"reference": "https://github.com/Symbiomatrix/Comfyui-Sort-Files",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Symbiomatrix/Comfyui-Sort-Files"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Monkeypatch file sort to date modified or custom instead of lexicographic."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "x3bits",
|
||||||
|
"title": "ComfyUI-Power-Flow [UNSAFE]",
|
||||||
|
"reference": "https://github.com/x3bits/ComfyUI-Power-Flow",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/x3bits/ComfyUI-Power-Flow"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node package that introduces common programming logic to enhance the flexibility of ComfyUI workflows. It supports features such as function definition and execution, 'for' loops, 'while' loops, and Python code execution.\n[w/This extension allows the execution of arbitrary Python code from a workflow.]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "EmilioPlumed",
|
||||||
|
"title": "ComfyUI-Math [WIP]",
|
||||||
|
"reference": "https://github.com/EmilioPlumed/ComfyUI-Math",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/EmilioPlumed/ComfyUI-Math"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Custom nodes that take 2 float inputs and calculates greatest common denominator and least common multiple, returning them as ints.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "mliand",
|
||||||
|
"title": "ComfyUI-Calendar-Node [WIP]",
|
||||||
|
"reference": "https://github.com/mliand/ComfyUI-Calendar-Node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/mliand/ComfyUI-Calendar-Node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A custom node for Comfyui to create a Calendar like grid\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "phamngoctukts",
|
||||||
|
"title": "ComyUI-Tupham",
|
||||||
|
"reference": "https://github.com/phamngoctukts/ComyUI-Tupham",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/phamngoctukts/ComyUI-Tupham"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Ghép Ảnh, Multi Prompt v2.0, Condition Upscale, Multi sampler, Run node selected"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-Prompt-Plus [WIP]",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-Prompt-Plus",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-Prompt-Plus"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Prompt Plus is a collection of LLM and VLM nodes that make prompting easier for image and video generation."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "aria1th",
|
||||||
|
"title": "ComfyUI-CairoSVG",
|
||||||
|
"reference": "https://github.com/aria1th/ComfyUI-CairoSVG",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/aria1th/ComfyUI-CairoSVG"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: VectorizedUpscaleScaling, VectorizedUpscaleSize"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "gitmylo",
|
||||||
|
"title": "FlowNodes [WIP]",
|
||||||
|
"reference": "https://github.com/gitmylo/FlowNodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/gitmylo/FlowNodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A ComfyUI node pack containing nodes for basic programming logic."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "chengzeyi",
|
||||||
|
"title": "Comfy-WaveSpeed [WIP]",
|
||||||
|
"reference": "https://github.com/chengzeyi/Comfy-WaveSpeed",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/chengzeyi/Comfy-WaveSpeed"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "The all in one inference optimization solution for ComfyUI, universal, flexible, and fast."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "zyd232",
|
||||||
|
"title": "ComfyUI-zyd232-Nodes",
|
||||||
|
"reference": "https://github.com/zyd232/ComfyUI-zyd232-Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Image Pixels Compare"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "yanhuifair",
|
||||||
|
"title": "ComfyUI-FairLab",
|
||||||
|
"reference": "https://github.com/yanhuifair/ComfyUI-FairLab",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/yanhuifair/ComfyUI-FairLab"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: CLIP Text Encode Translated, Translate String, Load Image From Folder, Save String To Folder, Fix UTF-8 String, String Combine, String Field, Download Image, Save Images To Folder, Save Image To Folder, Image Resize"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "nomcycle",
|
||||||
|
"title": "ComfyUI_Cluster [WIP]",
|
||||||
|
"reference": "https://github.com/nomcycle/ComfyUI_Cluster",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/nomcycle/ComfyUI_Cluster"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Very early W.I.P of clustered ComfyUI inference."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "5x00",
|
||||||
|
"title": "ComfyUI-LLM-Concat [WIP]",
|
||||||
|
"reference": "https://github.com/5x00/ComfyUI-LLM-Concat",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/5x00/ComfyUI-LLM-Concat"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Simple ComfyUI node to combine strings using ChatGPT / Claude. Can be helpful to combine multiple keywords into a single prompt.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "waynepimpzhang",
|
||||||
|
"title": "FindBrightestSpot [WIP]",
|
||||||
|
"reference": "https://github.com/waynepimpzhang/comfyui-opencv-brightestspot",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/waynepimpzhang/comfyui-opencv-brightestspot"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Analyze the image to find the x and y coordinates of the brightest point.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "power88",
|
||||||
|
"title": "ComfyUI-PDiD-Nodes [WIP]",
|
||||||
|
"reference": "https://github.com/power88/ComfyUI-PDiD-Nodes",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/power88/ComfyUI-PDiD-Nodes"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "NODES: Get Image Size, Check Character Tag, Nearest SDXL Resolution divided by 64, Get Image Main Color, Blend Images, List Operations, Make Image Gray.\nNOTE: not working"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "FinetunersAI",
|
||||||
|
"title": "ComfyUI Finetuners [WIP]",
|
||||||
|
"reference": "https://github.com/FinetunersAI/finetuners",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/FinetunersAI/finetuners"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A collection of utility nodes for ComfyUI to enhance your workflow.\nNOTE: The files in the repo are not organized."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "sourceful-official",
|
"author": "sourceful-official",
|
||||||
"title": "ComfyUI_InstructPixToPixConditioningLatent [WIP]",
|
"title": "ComfyUI_InstructPixToPixConditioningLatent [WIP]",
|
||||||
@@ -50,16 +240,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "for now: just custom node(s) to fetch tags from a given danbooru (soon e621 too) post link\ncurrently only supports danbooru-style urls + api response formats\nthis repo is a rewrite of: [a/https://github.com/yffyhk/comfyui_auto_danbooru](https://github.com/yffyhk/comfyui_auto_danbooru)"
|
"description": "for now: just custom node(s) to fetch tags from a given danbooru (soon e621 too) post link\ncurrently only supports danbooru-style urls + api response formats\nthis repo is a rewrite of: [a/https://github.com/yffyhk/comfyui_auto_danbooru](https://github.com/yffyhk/comfyui_auto_danbooru)"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "ai-business-hql",
|
|
||||||
"title": "comfyUIAgent [WIP]",
|
|
||||||
"reference": "https://github.com/ai-business-hql/comfyUIAgent",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/ai-business-hql/comfyUIAgent"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "test"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Grey3016",
|
"author": "Grey3016",
|
||||||
"title": "Save2Icon",
|
"title": "Save2Icon",
|
||||||
@@ -70,16 +250,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Save2Icon"
|
"description": "NODES: Save2Icon"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "sh570655308",
|
|
||||||
"title": "ComfyUI-TopazVideoAI [WIP]",
|
|
||||||
"reference": "https://github.com/sh570655308/ComfyUI-TopazVideoAI",
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sh570655308/ComfyUI-TopazVideoAI"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "NODES: Topaz Video AI (Upscale & Frame Interpolation)\nNOTE1:Requirements: Licensed installation of TopazVideoAI\nNOTE2: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Chargeuk",
|
"author": "Chargeuk",
|
||||||
"title": "ComfyUI-vts-nodes [WIP]",
|
"title": "ComfyUI-vts-nodes [WIP]",
|
||||||
@@ -243,13 +413,13 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "Maxim-Dey",
|
"author": "Maxim-Dey",
|
||||||
"title": "ComfyUI-MS_Tools",
|
"title": "ComfyUI-MS_Tools [WIP]",
|
||||||
"reference": "https://github.com/Maxim-Dey/ComfyUI-MaksiTools",
|
"reference": "https://github.com/Maxim-Dey/ComfyUI-MaksiTools",
|
||||||
"files": [
|
"files": [
|
||||||
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools"
|
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: MS Time Measure Node"
|
"description": "NODES: MS Time Measure NodeMaksiTools"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "jammyfu",
|
"author": "jammyfu",
|
||||||
@@ -543,17 +713,6 @@
|
|||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "NODES: Image Clip Node, Audio Duration Node, Save Video Node,..."
|
"description": "NODES: Image Clip Node, Audio Duration Node, Save Video Node,..."
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"author": "sh570655308",
|
|
||||||
"title": "ComfyUI-GigapixelAI [WIP]",
|
|
||||||
"reference": "https://github.com/sh570655308/ComfyUI-GigapixelAI",
|
|
||||||
"pip": ["GigapixelAI>=7.3.0"],
|
|
||||||
"files": [
|
|
||||||
"https://github.com/sh570655308/ComfyUI-GigapixelAI"
|
|
||||||
],
|
|
||||||
"install_type": "git-clone",
|
|
||||||
"description": "custom nodes use gigapixelai ai in comfyui Thanks @choey for the https://github.com/choey/Comfy-Topaz nodes helps me a lot\nRequirements: Licensed installation of Gigapixel 8: the path of gigapixel.exe is in the installation folder of Topaz Gigapixel AI, manually fill it if your installation is not default. Need GigapixelAI>=7.3.0\nNOTE: The files in the repo are not organized."
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"author": "Big Idea Technology",
|
"author": "Big Idea Technology",
|
||||||
"title": "ComfyUI-Movie-Tools [WIP]",
|
"title": "ComfyUI-Movie-Tools [WIP]",
|
||||||
@@ -986,7 +1145,7 @@
|
|||||||
"https://github.com/m-ai-studio/mai-prompt-progress"
|
"https://github.com/m-ai-studio/mai-prompt-progress"
|
||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "mai-prompt-progress"
|
"description": "ComfyUI extensions for sending prompt progress to webhook"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"author": "neeltheninja",
|
"author": "neeltheninja",
|
||||||
|
|||||||
@@ -154,6 +154,38 @@
|
|||||||
"title_aux": "ComfyUI_Fooocus"
|
"title_aux": "ComfyUI_Fooocus"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/5x00/ComfyUI-LLM-Concat": [
|
||||||
|
[
|
||||||
|
"LoadAPI",
|
||||||
|
"LoadCustomModel",
|
||||||
|
"LoadFlorenceModel",
|
||||||
|
"Prompt",
|
||||||
|
"RunAPIVLM",
|
||||||
|
"RunCustomVLM",
|
||||||
|
"TriggerToPromptAPI",
|
||||||
|
"TriggerToPromptCustom",
|
||||||
|
"TriggerToPromptSimple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-LLM-Concat [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"https://github.com/5x00/ComfyUI-Prompt-Plus": [
|
||||||
|
[
|
||||||
|
"LoadAPI",
|
||||||
|
"LoadCustomModel",
|
||||||
|
"LoadFlorenceModel",
|
||||||
|
"Prompt",
|
||||||
|
"RunAPIVLM",
|
||||||
|
"RunCustomVLM",
|
||||||
|
"TriggerToPromptAPI",
|
||||||
|
"TriggerToPromptCustom",
|
||||||
|
"TriggerToPromptSimple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Prompt-Plus [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
"https://github.com/A4P7J1N7M05OT/ComfyUI-ManualSigma": [
|
||||||
[
|
[
|
||||||
"ManualSigma"
|
"ManualSigma"
|
||||||
@@ -358,6 +390,17 @@
|
|||||||
"title_aux": "ComfyUI-Xorbis-nodes [WIP]"
|
"title_aux": "ComfyUI-Xorbis-nodes [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/Alvaroeai/ComfyUI-SunoAI-Mds": [
|
||||||
|
[
|
||||||
|
"Mideas_SunoAI_AudioManager",
|
||||||
|
"Mideas_SunoAI_Generator",
|
||||||
|
"Mideas_SunoAI_ProxyDownloadNode",
|
||||||
|
"Mideas_SunoAI_ProxyNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-SunoAI-Mds"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Anze-/ComfyUI-OIDN": [
|
"https://github.com/Anze-/ComfyUI-OIDN": [
|
||||||
[
|
[
|
||||||
"OIDN Denoise"
|
"OIDN Denoise"
|
||||||
@@ -513,6 +556,7 @@
|
|||||||
"VTS Clip Text Encode",
|
"VTS Clip Text Encode",
|
||||||
"VTS Color Mask To Mask",
|
"VTS Color Mask To Mask",
|
||||||
"VTS Conditioning Set Batch Mask",
|
"VTS Conditioning Set Batch Mask",
|
||||||
|
"VTS Images Crop From Masks",
|
||||||
"VTS Merge Delimited Text",
|
"VTS Merge Delimited Text",
|
||||||
"VTS Reduce Batch Size",
|
"VTS Reduce Batch Size",
|
||||||
"VTS To Text",
|
"VTS To Text",
|
||||||
@@ -563,8 +607,10 @@
|
|||||||
"DevToolsNodeWithOnlyOptionalInput",
|
"DevToolsNodeWithOnlyOptionalInput",
|
||||||
"DevToolsNodeWithOptionalInput",
|
"DevToolsNodeWithOptionalInput",
|
||||||
"DevToolsNodeWithOutputList",
|
"DevToolsNodeWithOutputList",
|
||||||
|
"DevToolsNodeWithSeedInput",
|
||||||
"DevToolsNodeWithStringInput",
|
"DevToolsNodeWithStringInput",
|
||||||
"DevToolsNodeWithUnionInput",
|
"DevToolsNodeWithUnionInput",
|
||||||
|
"DevToolsObjectPatchNode",
|
||||||
"DevToolsSimpleSlider"
|
"DevToolsSimpleSlider"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -653,7 +699,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
"https://github.com/DraconicDragon/ComfyUI_e621_booru_toolkit": [
|
||||||
[
|
[
|
||||||
"GetBooruImageInfo",
|
"GetBooruPost",
|
||||||
"TagEncode"
|
"TagEncode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
@@ -679,9 +725,28 @@
|
|||||||
"AD_TextListToString",
|
"AD_TextListToString",
|
||||||
"AD_TextSaver",
|
"AD_TextSaver",
|
||||||
"AD_TxtToCSVCombiner",
|
"AD_TxtToCSVCombiner",
|
||||||
"AD_ZipSave"
|
"AD_ZipSave",
|
||||||
|
"AD_advanced-padding",
|
||||||
|
"AD_color-image",
|
||||||
|
"AD_image-concat",
|
||||||
|
"AD_image-resize",
|
||||||
|
"AD_mockup-maker",
|
||||||
|
"AD_poster-maker",
|
||||||
|
"AD_prompt-saver",
|
||||||
|
"ImageCaptioner",
|
||||||
|
"ImageResize",
|
||||||
|
"Incrementer \ud83e\udeb4",
|
||||||
|
"TextAppendNode",
|
||||||
|
"Width and height for scaling image to ideal resolution \ud83e\udeb4",
|
||||||
|
"Width and height from aspect ratio \ud83e\udeb4",
|
||||||
|
"YANC.MultilineString",
|
||||||
|
"comfyui-easy-padding",
|
||||||
|
"image concat mask"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
|
"author": "ComfyUI Addoor",
|
||||||
|
"description": "Save prompts to CSV file with customizable naming pattern",
|
||||||
|
"title": "ComfyUI-PromptSaver",
|
||||||
"title_aux": "ComfyUI-Addoor [UNSAFE]"
|
"title_aux": "ComfyUI-Addoor [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -694,6 +759,15 @@
|
|||||||
"title_aux": "ComfyUI-MusicGen [WIP]"
|
"title_aux": "ComfyUI-MusicGen [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/EmilioPlumed/ComfyUI-Math": [
|
||||||
|
[
|
||||||
|
"GreatestCommonDenominator",
|
||||||
|
"LowestCommonMultiple"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Math [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/ExponentialML/ComfyUI_LiveDirector": [
|
"https://github.com/ExponentialML/ComfyUI_LiveDirector": [
|
||||||
[
|
[
|
||||||
"LiveDirector"
|
"LiveDirector"
|
||||||
@@ -743,6 +817,16 @@
|
|||||||
"title_aux": "Fast Group Link [WIP]"
|
"title_aux": "Fast Group Link [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/FinetunersAI/finetuners": [
|
||||||
|
[
|
||||||
|
"AutoImageResize",
|
||||||
|
"GroupLink",
|
||||||
|
"VariablesInjector"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI Finetuners [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/Fucci-Mateo/ComfyUI-Airtable": [
|
"https://github.com/Fucci-Mateo/ComfyUI-Airtable": [
|
||||||
[
|
[
|
||||||
"Push pose to Airtable"
|
"Push pose to Airtable"
|
||||||
@@ -770,7 +854,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Grey3016/Save2Icon": [
|
"https://github.com/Grey3016/Save2Icon": [
|
||||||
[
|
[
|
||||||
"Save2Icon"
|
"ConvertToIconNode"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "Save2Icon"
|
"title_aux": "Save2Icon"
|
||||||
@@ -1076,10 +1160,14 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools": [
|
"https://github.com/Maxim-Dey/ComfyUI-MaksiTools": [
|
||||||
[
|
[
|
||||||
"MT Time Measure Node"
|
"\ud83d\udd22 Return Boolean",
|
||||||
|
"\ud83d\udd22 Return Float",
|
||||||
|
"\ud83d\udd22 Return Integer",
|
||||||
|
"\ud83d\udd22 Return Multiline String",
|
||||||
|
"\ud83d\udd27 Time Measure Node"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI-MS_Tools"
|
"title_aux": "ComfyUI-MS_Tools [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/MrAdamBlack/CheckProgress": [
|
"https://github.com/MrAdamBlack/CheckProgress": [
|
||||||
@@ -1231,6 +1319,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
"https://github.com/SeedV/ComfyUI-SeedV-Nodes": [
|
||||||
[
|
[
|
||||||
|
"AdvancedScript",
|
||||||
"CheckpointLoaderSimpleShared //SeedV",
|
"CheckpointLoaderSimpleShared //SeedV",
|
||||||
"ControlNetLoaderAdvancedShared",
|
"ControlNetLoaderAdvancedShared",
|
||||||
"LoraLoader //SeedV",
|
"LoraLoader //SeedV",
|
||||||
@@ -1243,6 +1332,7 @@
|
|||||||
"https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": [
|
"https://github.com/ShahFaisalWani/ComfyUI-Mojen-Nodeset": [
|
||||||
[
|
[
|
||||||
"MojenAnalyzeProcessor",
|
"MojenAnalyzeProcessor",
|
||||||
|
"MojenAspectRatio",
|
||||||
"MojenImageLoader",
|
"MojenImageLoader",
|
||||||
"MojenLogPercent",
|
"MojenLogPercent",
|
||||||
"MojenNSFWClassifier",
|
"MojenNSFWClassifier",
|
||||||
@@ -1909,6 +1999,20 @@
|
|||||||
"title_aux": "ComfyUI_StepFun"
|
"title_aux": "ComfyUI_StepFun"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/chengzeyi/Comfy-WaveSpeed": [
|
||||||
|
[
|
||||||
|
"ApplyFBCacheOnModel",
|
||||||
|
"EnhancedCompileModel",
|
||||||
|
"EnhancedLoadDiffusionModel",
|
||||||
|
"VelocatorCompileModel",
|
||||||
|
"VelocatorLoadAndQuantizeClip",
|
||||||
|
"VelocatorLoadAndQuantizeDiffusionModel",
|
||||||
|
"VelocatorQuantizeModel"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "Comfy-WaveSpeed [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/christian-byrne/infinite-zoom-parallax-nodes": [
|
"https://github.com/christian-byrne/infinite-zoom-parallax-nodes": [
|
||||||
[
|
[
|
||||||
"Create Parallax Video",
|
"Create Parallax Video",
|
||||||
@@ -1992,6 +2096,7 @@
|
|||||||
"DisableNoise",
|
"DisableNoise",
|
||||||
"DualCFGGuider",
|
"DualCFGGuider",
|
||||||
"DualCLIPLoader",
|
"DualCLIPLoader",
|
||||||
|
"EmptyCosmosLatentVideo",
|
||||||
"EmptyHunyuanLatentVideo",
|
"EmptyHunyuanLatentVideo",
|
||||||
"EmptyImage",
|
"EmptyImage",
|
||||||
"EmptyLTXVLatentVideo",
|
"EmptyLTXVLatentVideo",
|
||||||
@@ -2426,7 +2531,6 @@
|
|||||||
[
|
[
|
||||||
"DownloadAndLoadHyVideoTextEncoder",
|
"DownloadAndLoadHyVideoTextEncoder",
|
||||||
"HyVideoBlockSwap",
|
"HyVideoBlockSwap",
|
||||||
"HyVideoCustomPromptTemplate",
|
|
||||||
"HyVideoDecode",
|
"HyVideoDecode",
|
||||||
"HyVideoEncode",
|
"HyVideoEncode",
|
||||||
"HyVideoModelLoader",
|
"HyVideoModelLoader",
|
||||||
@@ -2756,11 +2860,16 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/hy134300/comfyui-hydit": [
|
"https://github.com/hy134300/comfyui-hydit": [
|
||||||
[
|
[
|
||||||
|
"DiffusersCLIPLoader",
|
||||||
|
"DiffusersCheckpointLoader",
|
||||||
"DiffusersClipTextEncode",
|
"DiffusersClipTextEncode",
|
||||||
|
"DiffusersControlNetLoader",
|
||||||
|
"DiffusersLoraLoader",
|
||||||
"DiffusersModelMakeup",
|
"DiffusersModelMakeup",
|
||||||
"DiffusersPipelineLoader",
|
"DiffusersPipelineLoader",
|
||||||
"DiffusersSampler",
|
"DiffusersSampler",
|
||||||
"DiffusersSchedulerLoader"
|
"DiffusersSchedulerLoader",
|
||||||
|
"DiffusersVAELoader"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui-hydit"
|
"title_aux": "comfyui-hydit"
|
||||||
@@ -2813,13 +2922,24 @@
|
|||||||
"ClickPopup",
|
"ClickPopup",
|
||||||
"ColorPicker",
|
"ColorPicker",
|
||||||
"DynamicImageCombiner",
|
"DynamicImageCombiner",
|
||||||
|
"DynamicMaskCombiner",
|
||||||
|
"ImageLatentCreator",
|
||||||
"ImageResolutionAdjuster",
|
"ImageResolutionAdjuster",
|
||||||
|
"ImageSizeCreator",
|
||||||
|
"ImageToBase64",
|
||||||
"MaskPreview",
|
"MaskPreview",
|
||||||
"MultilineTextInput",
|
"MultilineTextInput",
|
||||||
|
"PaintingCoder::ImageSwitch",
|
||||||
|
"PaintingCoder::LatentSwitch",
|
||||||
|
"PaintingCoder::MaskSwitch",
|
||||||
|
"PaintingCoder::TextSwitch",
|
||||||
|
"PaintingCoder::WebImageLoader",
|
||||||
"RemoveEmptyLinesAndLeadingSpaces",
|
"RemoveEmptyLinesAndLeadingSpaces",
|
||||||
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
"RemoveEmptyLinesAndLeadingSpacesAdvance",
|
||||||
"ShowTextPlus",
|
"ShowTextPlus",
|
||||||
"TextCombiner"
|
"SimpleTextInput",
|
||||||
|
"TextCombiner",
|
||||||
|
"WebImageLoader"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "ComfyUI PaintingCoderUtils Nodes [WIP]"
|
"title_aux": "ComfyUI PaintingCoderUtils Nodes [WIP]"
|
||||||
@@ -3104,6 +3224,7 @@
|
|||||||
"HyVideoReSampler",
|
"HyVideoReSampler",
|
||||||
"HyVideoSTG",
|
"HyVideoSTG",
|
||||||
"HyVideoSampler",
|
"HyVideoSampler",
|
||||||
|
"HyVideoTeaCache",
|
||||||
"HyVideoTextEmbedsLoad",
|
"HyVideoTextEmbedsLoad",
|
||||||
"HyVideoTextEmbedsSave",
|
"HyVideoTextEmbedsSave",
|
||||||
"HyVideoTextEncode",
|
"HyVideoTextEncode",
|
||||||
@@ -3609,6 +3730,14 @@
|
|||||||
"title_aux": "ComfyUI-LLM-Evaluation [WIP]"
|
"title_aux": "ComfyUI-LLM-Evaluation [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/mliand/ComfyUI-Calendar-Node": [
|
||||||
|
[
|
||||||
|
"Comfy Calendar Node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-Calendar-Node [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
"https://github.com/monate0615/ComfyUI-Affine-Transform": [
|
||||||
[
|
[
|
||||||
"AffineTransform"
|
"AffineTransform"
|
||||||
@@ -3736,6 +3865,14 @@
|
|||||||
"title_aux": "ComfyUI-PromptUtilities"
|
"title_aux": "ComfyUI-PromptUtilities"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/nomcycle/ComfyUI_Cluster": [
|
||||||
|
[
|
||||||
|
"FenceClusteredWorkflow"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI_Cluster [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/oshtz/ComfyUI-oshtz-nodes": [
|
"https://github.com/oshtz/ComfyUI-oshtz-nodes": [
|
||||||
[
|
[
|
||||||
"ImageOverlayNode",
|
"ImageOverlayNode",
|
||||||
@@ -3797,6 +3934,26 @@
|
|||||||
"title_aux": "ComfyUI-ppm"
|
"title_aux": "ComfyUI-ppm"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/parmarjh/ComfyUI-MochiWrapper-I2V": [
|
||||||
|
[
|
||||||
|
"DownloadAndLoadMochiModel",
|
||||||
|
"MochiDecode",
|
||||||
|
"MochiDecodeSpatialTiling",
|
||||||
|
"MochiFasterCache",
|
||||||
|
"MochiImageEncode",
|
||||||
|
"MochiLatentPreview",
|
||||||
|
"MochiModelLoader",
|
||||||
|
"MochiSampler",
|
||||||
|
"MochiSigmaSchedule",
|
||||||
|
"MochiTextEncode",
|
||||||
|
"MochiTorchCompileSettings",
|
||||||
|
"MochiVAEEncoderLoader",
|
||||||
|
"MochiVAELoader"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-MochiWrapper-I2V [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/paulhoux/Smart-Prompting": [
|
"https://github.com/paulhoux/Smart-Prompting": [
|
||||||
[
|
[
|
||||||
"SaveImageWithPrefix",
|
"SaveImageWithPrefix",
|
||||||
@@ -3813,6 +3970,18 @@
|
|||||||
"title_aux": "List Data Helper Nodes"
|
"title_aux": "List Data Helper Nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/phamngoctukts/ComyUI-Tupham": [
|
||||||
|
[
|
||||||
|
"AreaCondition_v2",
|
||||||
|
"ConditionUpscale",
|
||||||
|
"MultiLatent",
|
||||||
|
"Runnodeselected",
|
||||||
|
"ghepanh"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComyUI-Tupham"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/poisenbery/NudeNet-Detector-Provider": [
|
"https://github.com/poisenbery/NudeNet-Detector-Provider": [
|
||||||
[
|
[
|
||||||
"NudeNetDetectorProvider"
|
"NudeNetDetectorProvider"
|
||||||
@@ -3821,6 +3990,20 @@
|
|||||||
"title_aux": "NudeNet-Detector-Provider [WIP]"
|
"title_aux": "NudeNet-Detector-Provider [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/power88/ComfyUI-PDiD-Nodes": [
|
||||||
|
[
|
||||||
|
"Blend Images",
|
||||||
|
"Check Character Tag",
|
||||||
|
"Get Image Colors",
|
||||||
|
"Get image size",
|
||||||
|
"List Operations",
|
||||||
|
"Make Image Gray",
|
||||||
|
"Nearest SDXL Resolution divided by 64"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-PDiD-Nodes [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/prabinpebam/anyPython": [
|
"https://github.com/prabinpebam/anyPython": [
|
||||||
[
|
[
|
||||||
"Any Python"
|
"Any Python"
|
||||||
@@ -3955,23 +4138,6 @@
|
|||||||
"title_aux": "comfyui-creative-nodes"
|
"title_aux": "comfyui-creative-nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"https://github.com/sh570655308/ComfyUI-GigapixelAI": [
|
|
||||||
[
|
|
||||||
"GigapixelAI",
|
|
||||||
"GigapixelUpscaleSettings"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-GigapixelAI [WIP]"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/sh570655308/ComfyUI-TopazVideoAI": [
|
|
||||||
[
|
|
||||||
"TopazVideoAI"
|
|
||||||
],
|
|
||||||
{
|
|
||||||
"title_aux": "ComfyUI-TopazVideoAI [WIP]"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"https://github.com/shadowcz007/ComfyUI-PuLID-Test": [
|
"https://github.com/shadowcz007/ComfyUI-PuLID-Test": [
|
||||||
[
|
[
|
||||||
"ApplyPulid",
|
"ApplyPulid",
|
||||||
@@ -4098,6 +4264,15 @@
|
|||||||
"title_aux": "ComfyUI_InstructPixToPixConditioningLatent [WIP]"
|
"title_aux": "ComfyUI_InstructPixToPixConditioningLatent [WIP]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/sourceful-official/comfyui-cog-comfyui-incontext-three-panels": [
|
||||||
|
[
|
||||||
|
"FalFluxLoraSourcefulOfficial",
|
||||||
|
"SourcefulOfficialComfyuiIncontextThreePanels"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "comfyui-cog-comfyui-incontext-three-panels"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/sswink/comfyui-lingshang": [
|
"https://github.com/sswink/comfyui-lingshang": [
|
||||||
[
|
[
|
||||||
"LS_ALY_Seg_Body_Utils",
|
"LS_ALY_Seg_Body_Utils",
|
||||||
@@ -4142,7 +4317,9 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/sugarkwork/comfyui_psd": [
|
"https://github.com/sugarkwork/comfyui_psd": [
|
||||||
[
|
[
|
||||||
"SavePSD"
|
"Convert PSD to Image",
|
||||||
|
"PSDLayer",
|
||||||
|
"Save PSD"
|
||||||
],
|
],
|
||||||
{
|
{
|
||||||
"title_aux": "comfyui_psd [WIP]"
|
"title_aux": "comfyui_psd [WIP]"
|
||||||
@@ -4336,6 +4513,14 @@
|
|||||||
"title_aux": "ComfyUI-exit [UNSAFE]"
|
"title_aux": "ComfyUI-exit [UNSAFE]"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/waynepimpzhang/comfyui-opencv-brightestspot": [
|
||||||
|
[
|
||||||
|
"FindBrightestSpot"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "FindBrightestSpot [WIP]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
"https://github.com/willblaschko/ComfyUI-Unload-Models": [
|
||||||
[
|
[
|
||||||
"DeleteAnyObject",
|
"DeleteAnyObject",
|
||||||
@@ -4384,6 +4569,27 @@
|
|||||||
"title_aux": "ComfyUI-XYNodes"
|
"title_aux": "ComfyUI-XYNodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/yanhuifair/ComfyUI-FairLab": [
|
||||||
|
[
|
||||||
|
"CLIPTranslatedNode",
|
||||||
|
"DownloadImageNode",
|
||||||
|
"FixUTF8StringNode",
|
||||||
|
"ImageResizeNode",
|
||||||
|
"ImagesToVideoNode",
|
||||||
|
"LoadImageFromFolderNode",
|
||||||
|
"SaveImageToFolderNode",
|
||||||
|
"SaveImagesToFolderNode",
|
||||||
|
"SaveStringToFolderNode",
|
||||||
|
"SequenceStringListNode",
|
||||||
|
"StringCombineNode",
|
||||||
|
"StringFieldNode",
|
||||||
|
"TranslateStringNode",
|
||||||
|
"VideoToImagesNode"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-FairLab"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
"https://github.com/yojimbodayne/ComfyUI-Dropbox-API": [
|
||||||
[
|
[
|
||||||
"FetchTokenFromDropbox",
|
"FetchTokenFromDropbox",
|
||||||
@@ -4422,6 +4628,14 @@
|
|||||||
"title_aux": "Comfyui_image2prompt"
|
"title_aux": "Comfyui_image2prompt"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/zyd232/ComfyUI-zyd232-Nodes": [
|
||||||
|
[
|
||||||
|
"zyd232 ImagesPixelsCompare"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-zyd232-Nodes"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py": [
|
"https://raw.githubusercontent.com/NeuralNotW0rk/ComfyUI-Waveform-Extensions/main/EXT_VariationUtils.py": [
|
||||||
[
|
[
|
||||||
"BatchToList",
|
"BatchToList",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -11,6 +11,38 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "Pos13",
|
||||||
|
"title": "Cyclist [DEPRECATED]",
|
||||||
|
"id": "cyclist",
|
||||||
|
"reference": "https://github.com/Pos13/comfyui-cyclist",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/Pos13/comfyui-cyclist"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "This extension provides tools to iterate generation results between runs. In general, it's for cycles."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "leiweiqiang",
|
||||||
|
"title": "ComfyUI-TRA",
|
||||||
|
"id": "tra",
|
||||||
|
"reference": "https://github.com/leiweiqiang/ComfyUI-TRA",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/leiweiqiang/ComfyUI-TRA"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Nodes:TCL EbSynth, TCL Extract Frames (From File), TCL Extract Frames (From Video), TCL Combine Frames, TCL Save Video (From Frames)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "ai-business-hql",
|
||||||
|
"title": "comfyUIAgent [REMOVED]",
|
||||||
|
"reference": "https://github.com/ai-business-hql/comfyUIAgent",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/ai-business-hql/comfyUIAgent"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "test"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "daqingliu",
|
"author": "daqingliu",
|
||||||
"title": "ComfyUI-SaveImageOSS [REMOVED]",
|
"title": "ComfyUI-SaveImageOSS [REMOVED]",
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -260,6 +260,37 @@
|
|||||||
],
|
],
|
||||||
"install_type": "git-clone",
|
"install_type": "git-clone",
|
||||||
"description": "This is the ComfyUI custom node template repository that anyone can use to create their own custom nodes."
|
"description": "This is the ComfyUI custom node template repository that anyone can use to create their own custom nodes."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "laogou666",
|
||||||
|
"title": "Comfyui_LG_Advertisement",
|
||||||
|
"reference": "https://github.com/LAOGOU-666/Comfyui_LG_Advertisement",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/LAOGOU-666/Comfyui_LG_Advertisement"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "A node for demonstration."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "cozy_spoke",
|
||||||
|
"reference": "https://github.com/cozy-comfyui/cozy_spoke",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cozy-comfyui/cozy_spoke"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Example node communicating between ComfyUI Javascript and Python."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "amorano",
|
||||||
|
"title": "Cozy Link Toggle",
|
||||||
|
"id": "cozyLinkToggle",
|
||||||
|
"reference": "https://github.com/cozy-comfyui/cozy_link_toggle",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/cozy-comfyui/cozy_link_toggle"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Example of using ComfyUI Toolbar to Toggle ComfyUI links on/off"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
@@ -172,6 +172,7 @@
|
|||||||
"CLIPTextEncodeControlnet",
|
"CLIPTextEncodeControlnet",
|
||||||
"CLIPTextEncodeFlux",
|
"CLIPTextEncodeFlux",
|
||||||
"CLIPTextEncodeHunyuanDiT",
|
"CLIPTextEncodeHunyuanDiT",
|
||||||
|
"CLIPTextEncodePixArtAlpha",
|
||||||
"CLIPTextEncodeSD3",
|
"CLIPTextEncodeSD3",
|
||||||
"CLIPTextEncodeSDXL",
|
"CLIPTextEncodeSDXL",
|
||||||
"CLIPTextEncodeSDXLRefiner",
|
"CLIPTextEncodeSDXLRefiner",
|
||||||
@@ -189,6 +190,7 @@
|
|||||||
"ConditioningSetAreaStrength",
|
"ConditioningSetAreaStrength",
|
||||||
"ConditioningSetMask",
|
"ConditioningSetMask",
|
||||||
"ConditioningSetTimestepRange",
|
"ConditioningSetTimestepRange",
|
||||||
|
"ConditioningStableAudio",
|
||||||
"ConditioningZeroOut",
|
"ConditioningZeroOut",
|
||||||
"ControlNetApply",
|
"ControlNetApply",
|
||||||
"ControlNetApplyAdvanced",
|
"ControlNetApplyAdvanced",
|
||||||
@@ -202,7 +204,9 @@
|
|||||||
"DisableNoise",
|
"DisableNoise",
|
||||||
"DualCFGGuider",
|
"DualCFGGuider",
|
||||||
"DualCLIPLoader",
|
"DualCLIPLoader",
|
||||||
|
"EmptyHunyuanLatentVideo",
|
||||||
"EmptyImage",
|
"EmptyImage",
|
||||||
|
"EmptyLTXVLatentVideo",
|
||||||
"EmptyLatentAudio",
|
"EmptyLatentAudio",
|
||||||
"EmptyLatentImage",
|
"EmptyLatentImage",
|
||||||
"EmptyMochiLatentVideo",
|
"EmptyMochiLatentVideo",
|
||||||
@@ -245,6 +249,9 @@
|
|||||||
"KSamplerAdvanced",
|
"KSamplerAdvanced",
|
||||||
"KSamplerSelect",
|
"KSamplerSelect",
|
||||||
"KarrasScheduler",
|
"KarrasScheduler",
|
||||||
|
"LTXVConditioning",
|
||||||
|
"LTXVImgToVideo",
|
||||||
|
"LTXVScheduler",
|
||||||
"LaplaceScheduler",
|
"LaplaceScheduler",
|
||||||
"LatentAdd",
|
"LatentAdd",
|
||||||
"LatentApplyOperation",
|
"LatentApplyOperation",
|
||||||
@@ -265,6 +272,8 @@
|
|||||||
"LatentSubtract",
|
"LatentSubtract",
|
||||||
"LatentUpscale",
|
"LatentUpscale",
|
||||||
"LatentUpscaleBy",
|
"LatentUpscaleBy",
|
||||||
|
"Load3D",
|
||||||
|
"Load3DAnimation",
|
||||||
"LoadAudio",
|
"LoadAudio",
|
||||||
"LoadImage",
|
"LoadImage",
|
||||||
"LoadImageMask",
|
"LoadImageMask",
|
||||||
@@ -272,11 +281,15 @@
|
|||||||
"LoraLoader",
|
"LoraLoader",
|
||||||
"LoraLoaderModelOnly",
|
"LoraLoaderModelOnly",
|
||||||
"LoraSave",
|
"LoraSave",
|
||||||
|
"Mahiro",
|
||||||
"MaskComposite",
|
"MaskComposite",
|
||||||
"MaskToImage",
|
"MaskToImage",
|
||||||
"ModelMergeAdd",
|
"ModelMergeAdd",
|
||||||
|
"ModelMergeAuraflow",
|
||||||
"ModelMergeBlocks",
|
"ModelMergeBlocks",
|
||||||
"ModelMergeFlux1",
|
"ModelMergeFlux1",
|
||||||
|
"ModelMergeLTXV",
|
||||||
|
"ModelMergeMochiPreview",
|
||||||
"ModelMergeSD1",
|
"ModelMergeSD1",
|
||||||
"ModelMergeSD2",
|
"ModelMergeSD2",
|
||||||
"ModelMergeSD35_Large",
|
"ModelMergeSD35_Large",
|
||||||
@@ -289,6 +302,7 @@
|
|||||||
"ModelSamplingContinuousV",
|
"ModelSamplingContinuousV",
|
||||||
"ModelSamplingDiscrete",
|
"ModelSamplingDiscrete",
|
||||||
"ModelSamplingFlux",
|
"ModelSamplingFlux",
|
||||||
|
"ModelSamplingLTXV",
|
||||||
"ModelSamplingSD3",
|
"ModelSamplingSD3",
|
||||||
"ModelSamplingStableCascade",
|
"ModelSamplingStableCascade",
|
||||||
"ModelSave",
|
"ModelSave",
|
||||||
@@ -301,6 +315,7 @@
|
|||||||
"PhotoMakerLoader",
|
"PhotoMakerLoader",
|
||||||
"PolyexponentialScheduler",
|
"PolyexponentialScheduler",
|
||||||
"PorterDuffImageComposite",
|
"PorterDuffImageComposite",
|
||||||
|
"Preview3D",
|
||||||
"PreviewAudio",
|
"PreviewAudio",
|
||||||
"PreviewImage",
|
"PreviewImage",
|
||||||
"RandomNoise",
|
"RandomNoise",
|
||||||
@@ -334,6 +349,7 @@
|
|||||||
"SelfAttentionGuidance",
|
"SelfAttentionGuidance",
|
||||||
"SetLatentNoiseMask",
|
"SetLatentNoiseMask",
|
||||||
"SetUnionControlNetType",
|
"SetUnionControlNetType",
|
||||||
|
"SkipLayerGuidanceDiT",
|
||||||
"SkipLayerGuidanceSD3",
|
"SkipLayerGuidanceSD3",
|
||||||
"SolidMask",
|
"SolidMask",
|
||||||
"SplitImageWithAlpha",
|
"SplitImageWithAlpha",
|
||||||
@@ -462,6 +478,17 @@
|
|||||||
"title_aux": "comfyui-custom-nodes"
|
"title_aux": "comfyui-custom-nodes"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"https://github.com/jhj0517/ComfyUI-CustomNodes-Template": [
|
||||||
|
[
|
||||||
|
"(Down)Load My Model",
|
||||||
|
"Calculate Minus",
|
||||||
|
"Calculate Plus",
|
||||||
|
"Example Output Node"
|
||||||
|
],
|
||||||
|
{
|
||||||
|
"title_aux": "ComfyUI-CustomNodes-Template"
|
||||||
|
}
|
||||||
|
],
|
||||||
"https://github.com/jtong/comfyui-jtong-workflow": [
|
"https://github.com/jtong/comfyui-jtong-workflow": [
|
||||||
[
|
[
|
||||||
"Example",
|
"Example",
|
||||||
|
|||||||
@@ -17,9 +17,19 @@ import security_check
|
|||||||
import manager_util
|
import manager_util
|
||||||
import cm_global
|
import cm_global
|
||||||
import manager_downloader
|
import manager_downloader
|
||||||
from datetime import datetime
|
|
||||||
import folder_paths
|
import folder_paths
|
||||||
|
|
||||||
|
try:
|
||||||
|
from datetime import datetime
|
||||||
|
def current_timestamp():
|
||||||
|
return datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
||||||
|
except:
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
logging.error(f"[ComfyUI-Manager] fallback timestamp mode\n datetime module is invalid: '{datetime.__file__}'")
|
||||||
|
def current_timestamp():
|
||||||
|
return str(time.time()).split('.')[0]
|
||||||
|
|
||||||
security_check.security_check()
|
security_check.security_check()
|
||||||
|
|
||||||
cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision']
|
cm_global.pip_blacklist = ['torch', 'torchsde', 'torchvision']
|
||||||
@@ -50,9 +60,8 @@ def check_file_logging():
|
|||||||
global enable_file_logging
|
global enable_file_logging
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
if 'file_logging' in default_conf and default_conf['file_logging'].lower() == 'false':
|
||||||
@@ -79,12 +88,12 @@ custom_nodes_base_path = folder_paths.get_folder_paths('custom_nodes')[0]
|
|||||||
manager_files_path = os.path.abspath(os.path.join(folder_paths.get_user_directory(), 'default', 'ComfyUI-Manager'))
|
manager_files_path = os.path.abspath(os.path.join(folder_paths.get_user_directory(), 'default', 'ComfyUI-Manager'))
|
||||||
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
manager_pip_overrides_path = os.path.join(manager_files_path, "pip_overrides.json")
|
||||||
restore_snapshot_path = os.path.join(manager_files_path, "startup-scripts", "restore-snapshot.json")
|
restore_snapshot_path = os.path.join(manager_files_path, "startup-scripts", "restore-snapshot.json")
|
||||||
|
manager_config_path = os.path.join(manager_files_path, 'config.ini')
|
||||||
|
|
||||||
git_script_path = os.path.join(comfyui_manager_path, "git_helper.py")
|
|
||||||
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
cm_cli_path = os.path.join(comfyui_manager_path, "cm-cli.py")
|
||||||
|
|
||||||
|
|
||||||
cm_global.pip_overrides = {}
|
cm_global.pip_overrides = {'numpy': 'numpy<2', 'ultralytics': 'ultralytics==8.3.40'}
|
||||||
if os.path.exists(manager_pip_overrides_path):
|
if os.path.exists(manager_pip_overrides_path):
|
||||||
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
with open(manager_pip_overrides_path, 'r', encoding="UTF-8", errors="ignore") as json_file:
|
||||||
cm_global.pip_overrides = json.load(json_file)
|
cm_global.pip_overrides = json.load(json_file)
|
||||||
@@ -236,7 +245,7 @@ try:
|
|||||||
|
|
||||||
def sync_write(self, message, file_only=False):
|
def sync_write(self, message, file_only=False):
|
||||||
with log_lock:
|
with log_lock:
|
||||||
timestamp = datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
|
timestamp = current_timestamp()
|
||||||
if self.last_char != '\n':
|
if self.last_char != '\n':
|
||||||
log_file.write(message)
|
log_file.write(message)
|
||||||
else:
|
else:
|
||||||
@@ -340,11 +349,14 @@ except:
|
|||||||
print("## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
print("## [ERROR] ComfyUI-Manager: GitPython package seems to be installed, but failed to load somehow. Make sure you have a working git client installed")
|
||||||
|
|
||||||
|
|
||||||
print("** ComfyUI startup time:", datetime.now())
|
print("** ComfyUI startup time:", current_timestamp())
|
||||||
print("** Platform:", platform.system())
|
print("** Platform:", platform.system())
|
||||||
print("** Python version:", sys.version)
|
print("** Python version:", sys.version)
|
||||||
print("** Python executable:", sys.executable)
|
print("** Python executable:", sys.executable)
|
||||||
print("** ComfyUI Path:", comfy_path)
|
print("** ComfyUI Path:", comfy_path)
|
||||||
|
print("** User directory:", folder_paths.user_directory)
|
||||||
|
print("** ComfyUI-Manager config path:", manager_config_path)
|
||||||
|
|
||||||
|
|
||||||
if log_path_base is not None:
|
if log_path_base is not None:
|
||||||
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
print("** Log path:", os.path.abspath(f'{log_path_base}.log'))
|
||||||
@@ -355,9 +367,8 @@ else:
|
|||||||
def read_downgrade_blacklist():
|
def read_downgrade_blacklist():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'downgrade_blacklist' in default_conf:
|
if 'downgrade_blacklist' in default_conf:
|
||||||
@@ -376,13 +387,12 @@ def check_bypass_ssl():
|
|||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
import ssl
|
import ssl
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
if 'bypass_ssl' in default_conf and default_conf['bypass_ssl'].lower() == 'true':
|
||||||
print("[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see ComfyUI-Manager/config.ini)")
|
print(f"[ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see {manager_config_path})")
|
||||||
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
ssl._create_default_https_context = ssl._create_unverified_context # SSL certificate error fix.
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass
|
||||||
@@ -403,7 +413,7 @@ def is_installed(name):
|
|||||||
if name.startswith('#'):
|
if name.startswith('#'):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
pattern = r'([^<>!=]+)([<>!=]=?)([0-9.a-zA-Z]*)'
|
pattern = r'([^<>!~=]+)([<>!~=]=?)([0-9.a-zA-Z]*)'
|
||||||
match = re.search(pattern, name)
|
match = re.search(pattern, name)
|
||||||
|
|
||||||
if match:
|
if match:
|
||||||
@@ -418,7 +428,7 @@ def is_installed(name):
|
|||||||
if match is None:
|
if match is None:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
return True
|
return True
|
||||||
elif match.group(2) in ['<=', '==', '<']:
|
elif match.group(2) in ['<=', '==', '<', '~=']:
|
||||||
if name in pips:
|
if name in pips:
|
||||||
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
if manager_util.StrictVersion(pips[name]) >= manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
print(f"[ComfyUI-Manager] skip black listed pip installation: '{name}'")
|
||||||
@@ -437,6 +447,14 @@ def is_installed(name):
|
|||||||
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
elif manager_util.StrictVersion(pkg) > manager_util.StrictVersion(match.group(3)):
|
||||||
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
print(f"[SKIP] Downgrading pip package isn't allowed: {name.lower()} (cur={pkg})")
|
||||||
|
|
||||||
|
if match.group(2) == '==':
|
||||||
|
if manager_util.StrictVersion(pkg) < manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
|
if match.group(2) == '~=':
|
||||||
|
if manager_util.StrictVersion(pkg) == manager_util.StrictVersion(match.group(3)):
|
||||||
|
return False
|
||||||
|
|
||||||
return True # prevent downgrade
|
return True # prevent downgrade
|
||||||
|
|
||||||
|
|
||||||
@@ -640,9 +658,8 @@ manager_util.clear_pip_cache()
|
|||||||
def check_windows_event_loop_policy():
|
def check_windows_event_loop_policy():
|
||||||
try:
|
try:
|
||||||
import configparser
|
import configparser
|
||||||
config_path = os.path.join(os.path.dirname(__file__), "config.ini")
|
|
||||||
config = configparser.ConfigParser()
|
config = configparser.ConfigParser()
|
||||||
config.read(config_path)
|
config.read(manager_config_path)
|
||||||
default_conf = config['default']
|
default_conf = config['default']
|
||||||
|
|
||||||
if 'windows_selector_event_loop_policy' in default_conf and default_conf['windows_selector_event_loop_policy'].lower() == 'true':
|
if 'windows_selector_event_loop_policy' in default_conf and default_conf['windows_selector_event_loop_policy'].lower() == 'true':
|
||||||
|
|||||||
@@ -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 = "3.3.5"
|
version = "3.7"
|
||||||
license = { file = "LICENSE.txt" }
|
license = { file = "LICENSE.txt" }
|
||||||
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"]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user