mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-17 02:12:58 +08:00
bugfix scanner.py
This commit is contained in:
parent
0f6365bea1
commit
b5abddb7c4
@ -284,6 +284,13 @@
|
||||
"ImageSegmentationCustomAdvanced",
|
||||
"ImageText",
|
||||
"ImageTextOutlined",
|
||||
"ImageTransformCropAbsolute",
|
||||
"ImageTransformCropCorners",
|
||||
"ImageTransformCropRelative",
|
||||
"ImageTransformResizeAbsolute",
|
||||
"ImageTransformResizeRelative",
|
||||
"ImageTransformRotate",
|
||||
"ImageTransformTranspose",
|
||||
"LatentClamp",
|
||||
"MaskClamp",
|
||||
"ModelClamp",
|
||||
@ -472,6 +479,7 @@
|
||||
"Text Input Switch",
|
||||
"Text List",
|
||||
"Text List Concatenate",
|
||||
"Text Load Line From File",
|
||||
"Text Multiline",
|
||||
"Text Parse A1111 Embeddings",
|
||||
"Text Parse Noodle Soup Prompts",
|
||||
@ -587,6 +595,7 @@
|
||||
"https://github.com/ltdrdata/ComfyUI-Impact-Pack": [
|
||||
"BasicPipeToDetailerPipe",
|
||||
"BboxDetectorCombined",
|
||||
"BboxDetectorCombined_v2",
|
||||
"BboxDetectorForEach",
|
||||
"BboxDetectorSEGS",
|
||||
"BitwiseAndMask",
|
||||
@ -606,10 +615,14 @@
|
||||
"FaceDetailerPipe",
|
||||
"FromBasicPipe",
|
||||
"FromDetailerPipe",
|
||||
"ImageMaskSwitch",
|
||||
"ImageReceiver",
|
||||
"ImageSender",
|
||||
"IterativeImageUpscale",
|
||||
"IterativeLatentUpscale",
|
||||
"KSamplerProvider",
|
||||
"LatentPixelScale",
|
||||
"LatentSwitch",
|
||||
"MMDetDetectorProvider",
|
||||
"MMDetLoader",
|
||||
"MaskPainter",
|
||||
@ -625,6 +638,7 @@
|
||||
"SAMDetectorCombined",
|
||||
"SAMLoader",
|
||||
"SegmDetectorCombined",
|
||||
"SegmDetectorCombined_v2",
|
||||
"SegmDetectorForEach",
|
||||
"SegmDetectorSEGS",
|
||||
"Segs & Mask",
|
||||
@ -730,7 +744,8 @@
|
||||
"Nui.OutputString"
|
||||
],
|
||||
"https://github.com/ssitu/ComfyUI_UltimateSDUpscale": [
|
||||
"UltimateSDUpscale"
|
||||
"UltimateSDUpscale",
|
||||
"UltimateSDUpscaleNoUpscale"
|
||||
],
|
||||
"https://github.com/strimmlarn/ComfyUI_Strimmlarns_aesthetic_score": [
|
||||
"AesthetlcScoreSorter",
|
||||
|
||||
@ -165,8 +165,11 @@ def gen_json(node_info):
|
||||
nodes = list(nodes)
|
||||
nodes.sort()
|
||||
|
||||
if dirname in node_info:
|
||||
git_url = node_info[dirname]
|
||||
data[git_url] = nodes
|
||||
else:
|
||||
print(f"WARN: {dirname} is removed from custom-node-list.json")
|
||||
|
||||
for file in node_files:
|
||||
nodes = scan_in_file(file)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user