diff --git a/custom-node-list.json b/custom-node-list.json index 72ac4746..5cf0f872 100644 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -497,29 +497,13 @@ }, { "author": "pythongosssss", - "title": "ComfyUI-Custom-Scripts", + "title": "pythongosssss/ComfyUI-Custom-Scripts", "reference": "https://github.com/pythongosssss/ComfyUI-Custom-Scripts", - "js_path": "ComfyUI-Custom-Scripts", "files": [ - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/anime-segmentation/anime_segmentation.py", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/auto-arrange-graph/graphArrange.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/export-workflow-svg/exportAsSvg.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/image-feed/imageFeed.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/latent-upscale-by/latent_upscale_by.py", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/lock-nodes-and-groups/locking.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/node-finder/nodeFinder.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/lora-subfolders/loraSubfolders.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/preset-text/presetText.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/quick-nodes/quickNodes.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/show-text/showText.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/show-text/show_text.py", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/touch-support/touchEvents.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/widget-defaults/widgetDefaults.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/workflows/index.js", - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/workflows/workflows.py" + "https://github.com/pythongosssss/ComfyUI-Custom-Scripts" ], - "install_type": "copy", - "description": "This extension provides: Auto Arrange Graph, Workflow SVG, Favicon Status, Image Feed, Latent Upscale By, Lock Nodes & Groups, Lora Subfolders, Preset Text, Show Text, Touch Support, WD14 Tagger" + "install_type": "git-clone", + "description": "This extension provides: Auto Arrange Graph, Workflow SVG, Favicon Status, Image Feed, Latent Upscale By, Lock Nodes & Groups, Lora Subfolders, Preset Text, Show Text, Touch Support, Link Render Mode, Locking, Node Finder, Quick Nodes, Show Image On Menu, Show Text, Workflow Managements, Custom Widget Default Values" }, { "author": "xXAdonesXx", @@ -573,10 +557,10 @@ }, { "author": "taabata", - "title": "taabata:Prompt editing & Word as Image", - "reference": "https://github.com/taabata/Comfy_custom_nodes", + "title": "Syrian Falcon Nodes", + "reference": "https://github.com/taabata/Comfy_Syrian_Falcon_Nodes", "files": [ - "https://github.com/taabata/Comfy_custom_nodes/raw/main/SyrianFalconNodes.py" + "https://github.com/taabata/Comfy_Syrian_Falcon_Nodes/raw/main/SyrianFalconNodes.py" ], "install_type": "copy", "description": "Nodes:Prompt editing, Word as Image" diff --git a/extension-node-map.json b/extension-node-map.json index 060f84de..e0e4b739 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -803,8 +803,10 @@ "CLIPTextEncodeBLIP-2", "Example" ], - "https://github.com/pythongosssss/ComfyUI-Custom-Scripts/raw/main/anime-segmentation/anime_segmentation.py": [ - "AnimeSegmentation" + "https://github.com/pythongosssss/ComfyUI-Custom-Scripts": [ + "ConstrainImage|pysssss", + "ShowText|pysssss", + "StringFunction|pysssss" ], "https://github.com/pythongosssss/ComfyUI-WD14-Tagger": [ "WD14Tagger|pysssss" @@ -847,7 +849,7 @@ "https://github.com/szhublox/ambw_comfyui": [ "Auto Merge Block Weighted" ], - "https://github.com/taabata/Comfy_custom_nodes/raw/main/SyrianFalconNodes.py": [ + "https://github.com/taabata/Comfy_Syrian_Falcon_Nodes/raw/main/SyrianFalconNodes.py": [ "KSamplerAdvancedCustom", "WordAsImage" ], diff --git a/scanner.py b/scanner.py index 6d8e1771..2866d28e 100644 --- a/scanner.py +++ b/scanner.py @@ -138,7 +138,10 @@ def update_custom_nodes(): if name.endswith(".py"): node_info[name] = url - download_url(url, ".tmp") + try: + download_url(url, ".tmp") + except: + print(f"[ERROR] Cannot downalod '{url}'") return node_info