mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 01:57:04 +08:00
update DB
scanner fix
This commit is contained in:
parent
a0993fe257
commit
bd6bdd18cc
@ -3058,6 +3058,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "This is the ComfyUI port of the joint research between me and TimothyAlexisVass. For more information, check out the original [a/Extension](https://github.com/Haoming02/sd-webui-diffusion-cg) for Automatic1111."
|
||||
},
|
||||
{
|
||||
"author": "Haoming02",
|
||||
"title": "comfyui-prompt-format",
|
||||
"reference": "https://github.com/Haoming02/comfyui-prompt-format",
|
||||
"files": [
|
||||
"https://github.com/Haoming02/comfyui-prompt-format"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is an Extension for ComfyUI, which helps formatting texts."
|
||||
},
|
||||
{
|
||||
"author": "bedovyy",
|
||||
"title": "ComfyUI_NAIDGenerator",
|
||||
@ -3290,6 +3300,16 @@
|
||||
"install_type": "git-clone",
|
||||
"description": "Implementation of the [StyleAligned](https://style-aligned-gen.github.io/) paper for ComfyUI. This node allows you to apply a consistent style to all images in a batch; by default it will use the first image in the batch as the style reference, forcing all other images to be consistent with it."
|
||||
},
|
||||
{
|
||||
"author": "deroberon",
|
||||
"title": "demofusion-comfyui",
|
||||
"reference": "https://github.com/deroberon/demofusion-comfyui",
|
||||
"files": [
|
||||
"https://github.com/deroberon/demofusion-comfyui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension implements [DemoFusion](https://ruoyidu.github.io/demofusion/demofusion.html)."
|
||||
},
|
||||
{
|
||||
"author": "Ser-Hilary",
|
||||
"title": "SDXL_sizing",
|
||||
|
||||
@ -3179,6 +3179,14 @@
|
||||
"title_aux": "DZ-FaceDetailer"
|
||||
}
|
||||
],
|
||||
"https://github.com/deroberon/demofusion-comfyui": [
|
||||
[
|
||||
"Demofusion"
|
||||
],
|
||||
{
|
||||
"title_aux": "demofusion-comfyui"
|
||||
}
|
||||
],
|
||||
"https://github.com/dimtoneff/ComfyUI-PixelArt-Detector": [
|
||||
[
|
||||
"PixelArtAddDitherPattern",
|
||||
@ -5144,7 +5152,6 @@
|
||||
"Random Line 4"
|
||||
],
|
||||
{
|
||||
"nodename_pattern": "\\(mtb\\)$",
|
||||
"title_aux": "Hakkun-ComfyUI-nodes"
|
||||
}
|
||||
],
|
||||
|
||||
@ -1,5 +1,25 @@
|
||||
{
|
||||
"custom_nodes": [
|
||||
{
|
||||
"author": "deroberon",
|
||||
"title": "demofusion-comfyui",
|
||||
"reference": "https://github.com/deroberon/demofusion-comfyui",
|
||||
"files": [
|
||||
"https://github.com/deroberon/demofusion-comfyui"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This extension implements [DemoFusion](https://ruoyidu.github.io/demofusion/demofusion.html)."
|
||||
},
|
||||
{
|
||||
"author": "Haoming02",
|
||||
"title": "comfyui-prompt-format",
|
||||
"reference": "https://github.com/Haoming02/comfyui-prompt-format",
|
||||
"files": [
|
||||
"https://github.com/Haoming02/comfyui-prompt-format"
|
||||
],
|
||||
"install_type": "git-clone",
|
||||
"description": "This is an Extension for ComfyUI, which helps formatting texts."
|
||||
},
|
||||
{
|
||||
"author": "brianfitzgerald",
|
||||
"title": "StyleAligned for ComfyUI",
|
||||
|
||||
@ -3179,6 +3179,14 @@
|
||||
"title_aux": "DZ-FaceDetailer"
|
||||
}
|
||||
],
|
||||
"https://github.com/deroberon/demofusion-comfyui": [
|
||||
[
|
||||
"Demofusion"
|
||||
],
|
||||
{
|
||||
"title_aux": "demofusion-comfyui"
|
||||
}
|
||||
],
|
||||
"https://github.com/dimtoneff/ComfyUI-PixelArt-Detector": [
|
||||
[
|
||||
"PixelArtAddDitherPattern",
|
||||
@ -5144,7 +5152,6 @@
|
||||
"Random Line 4"
|
||||
],
|
||||
{
|
||||
"nodename_pattern": "\\(mtb\\)$",
|
||||
"title_aux": "Hakkun-ComfyUI-nodes"
|
||||
}
|
||||
],
|
||||
|
||||
@ -266,7 +266,7 @@ def gen_json(node_info):
|
||||
metadata['nodename_pattern'] = node_pattern
|
||||
data[url] = (nodes, metadata)
|
||||
else:
|
||||
print(f"Missing info: {url}")
|
||||
print(f"Missing info: {file}")
|
||||
|
||||
# scan from node_list.json file
|
||||
extensions = [name for name in os.listdir(temp_dir) if os.path.isdir(os.path.join(temp_dir, name))]
|
||||
@ -291,7 +291,7 @@ def gen_json(node_info):
|
||||
|
||||
metadata_in_url['title_aux'] = title
|
||||
if node_pattern is not None:
|
||||
metadata['nodename_pattern'] = node_pattern
|
||||
metadata_in_url['nodename_pattern'] = node_pattern
|
||||
nodes = list(nodes)
|
||||
nodes.sort()
|
||||
data[git_url] = (nodes, metadata_in_url)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user