update DB

update scanner script
This commit is contained in:
Dr.Lt.Data 2025-07-17 12:22:13 +09:00
parent cab39973ae
commit ee69d393ae
7 changed files with 18 additions and 56 deletions

View File

@ -29351,16 +29351,6 @@
"install_type": "git-clone", "install_type": "git-clone",
"description": "Mithril-Nodes is a collection of custom nodes for ComfyUI that enhance workflow modularity, data routing, and configuration management. These nodes help you build more dynamic, organized, and reusable pipelines for generative AI workflows." "description": "Mithril-Nodes is a collection of custom nodes for ComfyUI that enhance workflow modularity, data routing, and configuration management. These nodes help you build more dynamic, organized, and reusable pipelines for generative AI workflows."
}, },
{
"author": "1H-hobit",
"title": "ComfyUI_InternVL3",
"reference": "https://github.com/1H-hobit/ComfyUI_InternVL3",
"files": [
"https://github.com/1H-hobit/ComfyUI_InternVL3"
],
"install_type": "git-clone",
"description": "ComfyUI for [a/InternVL](https://github.com/OpenGVLab/InternVL)"
},
{ {
"author": "Yukinoshita-Yukinoe", "author": "Yukinoshita-Yukinoe",
"title": "ComfyUI-Qwen-Node", "title": "ComfyUI-Qwen-Node",

View File

@ -320,20 +320,6 @@
"title_aux": "Comfyui-ergouzi-samplers" "title_aux": "Comfyui-ergouzi-samplers"
} }
], ],
"https://github.com/1H-hobit/ComfyUI_InternVL3": [
[
"DynamicPreprocess",
"InternVLHFInference",
"InternVLModelLoader"
],
{
"author": "chflame",
"description": "A set of nodes for ComfyUI that can composite layer and mask to achieve Photoshop like functionality.",
"nickname": "LayerStyle",
"title": "LayerStyle",
"title_aux": "ComfyUI_InternVL3"
}
],
"https://github.com/1hew/ComfyUI-1hewNodes": [ "https://github.com/1hew/ComfyUI-1hewNodes": [
[ [
"ImageAddLabel", "ImageAddLabel",

View File

@ -7270,9 +7270,9 @@
], ],
"https://github.com/mr-krak3n/ComfyUI-Qwen": [ "https://github.com/mr-krak3n/ComfyUI-Qwen": [
[ [
"DeepSeekResponseParser", "Qwen2_Chat_Zho",
"QwenLoader", "Qwen2_ModelLoader_Zho",
"QwenSampler" "Qwen2_Zho"
], ],
{ {
"title_aux": "ComfyUI-Qwen [CONFLICT]" "title_aux": "ComfyUI-Qwen [CONFLICT]"
@ -7758,9 +7758,9 @@
], ],
{ {
"author": "prabinpebam", "author": "prabinpebam",
"description": "This node can take any input and use that to run a python script in ComfyUI", "description": "This node can execute Python operations with user-confirmed risk management",
"nickname": "AnyPython", "nickname": "anyPython",
"title": "AnyPython v0.1", "title": "anyPython v0.0.3",
"title_aux": "anyPython [UNSAFE]" "title_aux": "anyPython [UNSAFE]"
} }
], ],

View File

@ -1,5 +1,15 @@
{ {
"custom_nodes": [ "custom_nodes": [
{
"author": "1H-hobit",
"title": "ComfyUI_InternVL3 [REMOVED]",
"reference": "https://github.com/1H-hobit/ComfyUI_InternVL3",
"files": [
"https://github.com/1H-hobit/ComfyUI_InternVL3"
],
"install_type": "git-clone",
"description": "ComfyUI for [a/InternVL](https://github.com/OpenGVLab/InternVL)"
},
{ {
"author": "spacepxl", "author": "spacepxl",
"title": "ComfyUI-Florence-2 [DEPRECATED]", "title": "ComfyUI-Florence-2 [DEPRECATED]",

View File

@ -90,16 +90,6 @@
"install_type": "git-clone", "install_type": "git-clone",
"description": "Saves images directly to OneDrive using Microsoft's free API service." "description": "Saves images directly to OneDrive using Microsoft's free API service."
}, },
{
"author": "1H-hobit",
"title": "ComfyUI_InternVL3",
"reference": "https://github.com/1H-hobit/ComfyUI_InternVL3",
"files": [
"https://github.com/1H-hobit/ComfyUI_InternVL3"
],
"install_type": "git-clone",
"description": "ComfyUI for [a/InternVL](https://github.com/OpenGVLab/InternVL)"
},
{ {
"author": "Yukinoshita-Yukinoe", "author": "Yukinoshita-Yukinoe",
"title": "ComfyUI-Qwen-Node", "title": "ComfyUI-Qwen-Node",

View File

@ -320,20 +320,6 @@
"title_aux": "Comfyui-ergouzi-samplers" "title_aux": "Comfyui-ergouzi-samplers"
} }
], ],
"https://github.com/1H-hobit/ComfyUI_InternVL3": [
[
"DynamicPreprocess",
"InternVLHFInference",
"InternVLModelLoader"
],
{
"author": "chflame",
"description": "A set of nodes for ComfyUI that can composite layer and mask to achieve Photoshop like functionality.",
"nickname": "LayerStyle",
"title": "LayerStyle",
"title_aux": "ComfyUI_InternVL3"
}
],
"https://github.com/1hew/ComfyUI-1hewNodes": [ "https://github.com/1hew/ComfyUI-1hewNodes": [
[ [
"ImageAddLabel", "ImageAddLabel",

View File

@ -255,13 +255,13 @@ def clone_or_pull_git_repository(git_url):
repo.git.submodule('update', '--init', '--recursive') repo.git.submodule('update', '--init', '--recursive')
print(f"Pulling {repo_name}...") print(f"Pulling {repo_name}...")
except Exception as e: except Exception as e:
print(f"Pulling {repo_name} failed: {e}") print(f"Failed to pull '{repo_name}': {e}")
else: else:
try: try:
Repo.clone_from(git_url, repo_dir, recursive=True) Repo.clone_from(git_url, repo_dir, recursive=True)
print(f"Cloning {repo_name}...") print(f"Cloning {repo_name}...")
except Exception as e: except Exception as e:
print(f"Cloning {repo_name} failed: {e}") print(f"Failed to clone '{repo_name}': {e}")
def update_custom_nodes(): def update_custom_nodes():