Browse Source

update DB

scanner.py patch
pull/25/head
Dr.Lt.Data 1 year ago
parent
commit
f65e13ba36
  1. 32
      custom-node-list.json
  2. 8
      extension-node-map.json
  3. 5
      scanner.py

32
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"
"files": [
"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"

8
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"
],

5
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

Loading…
Cancel
Save