diff --git a/custom-node-list.json b/custom-node-list.json index c2af0d00..c1d0fdd4 100644 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -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", diff --git a/extension-node-map.json b/extension-node-map.json index ef5f1ad6..fa902e8a 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -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" } ], diff --git a/node_db/new/custom-node-list.json b/node_db/new/custom-node-list.json index c4ac2df0..7fb5b154 100644 --- a/node_db/new/custom-node-list.json +++ b/node_db/new/custom-node-list.json @@ -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", diff --git a/node_db/new/extension-node-map.json b/node_db/new/extension-node-map.json index ef5f1ad6..fa902e8a 100644 --- a/node_db/new/extension-node-map.json +++ b/node_db/new/extension-node-map.json @@ -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" } ], diff --git a/scanner.py b/scanner.py index d9116bfd..fc9278ac 100644 --- a/scanner.py +++ b/scanner.py @@ -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)