Browse Source

add log

update db
pull/62/head
Dr.Lt.Data 1 year ago
parent
commit
6671389d64
  1. 4
      __init__.py
  2. 10
      custom-node-list.json
  3. 9
      extension-node-map.json

4
__init__.py

@ -33,7 +33,7 @@ sys.path.append('../..')
from torchvision.datasets.utils import download_url from torchvision.datasets.utils import download_url
# ensure .js # ensure .js
print("### Loading: ComfyUI-Manager (V0.21)") print("### Loading: ComfyUI-Manager (V0.21.1)")
comfy_ui_required_revision = 1240 comfy_ui_required_revision = 1240
comfy_ui_revision = "Unknown" comfy_ui_revision = "Unknown"
@ -287,6 +287,8 @@ def setup_js():
if not os.path.exists(js_dest_path): if not os.path.exists(js_dest_path):
os.makedirs(js_dest_path) os.makedirs(js_dest_path)
js_src_path = os.path.join(comfyui_manager_path, "js", "comfyui-manager.js") js_src_path = os.path.join(comfyui_manager_path, "js", "comfyui-manager.js")
print(f"### ComfyUI-Manager: Copy .js from '{js_src_path}' to '{js_dest_path}'")
shutil.copy(js_src_path, js_dest_path) shutil.copy(js_src_path, js_dest_path)
setup_js() setup_js()

10
custom-node-list.json

@ -365,6 +365,16 @@
"install_type": "git-clone", "install_type": "git-clone",
"description": "Custom node to convert the lantents between SDXL and SD v1.5 directly without the VAE decoding/encoding step." "description": "Custom node to convert the lantents between SDXL and SD v1.5 directly without the VAE decoding/encoding step."
}, },
{
"author": "city96",
"title": "SD-Advanced-Noise",
"reference": "https://github.com/city96/SD-Advanced-Noise",
"files": [
"https://github.com/city96/SD-Advanced-Noise"
],
"install_type": "git-clone",
"description": "Nodes: LatentGaussianNoise, MathEncode. An experimental custom node that generates latent noise directly by utilizing the linear characteristics of the latent space."
},
{ {
"author": "Kaharos94", "author": "Kaharos94",
"title": "ComfyUI-Saveaswebp", "title": "ComfyUI-Saveaswebp",

9
extension-node-map.json

@ -795,6 +795,7 @@
"DPFeelingLucky", "DPFeelingLucky",
"DPJinja", "DPJinja",
"DPMagicPrompt", "DPMagicPrompt",
"DPOutput",
"DPRandomGenerator" "DPRandomGenerator"
], ],
"https://github.com/andersxa/comfyui-PromptAttention": [ "https://github.com/andersxa/comfyui-PromptAttention": [
@ -874,6 +875,10 @@
"FetchRemote", "FetchRemote",
"QueueRemote" "QueueRemote"
], ],
"https://github.com/city96/SD-Advanced-Noise": [
"LatentGaussianNoise",
"MathEncode"
],
"https://github.com/city96/SD-Latent-Interposer": [ "https://github.com/city96/SD-Latent-Interposer": [
"LatentInterposer" "LatentInterposer"
], ],
@ -1104,6 +1109,7 @@
"ImpactKSamplerAdvancedBasicPipe", "ImpactKSamplerAdvancedBasicPipe",
"ImpactKSamplerBasicPipe", "ImpactKSamplerBasicPipe",
"ImpactLogger", "ImpactLogger",
"ImpactMakeImageList",
"ImpactMinMax", "ImpactMinMax",
"ImpactNeg", "ImpactNeg",
"ImpactSEGSConcat", "ImpactSEGSConcat",
@ -1183,6 +1189,7 @@
], ],
"https://github.com/melMass/comfy_mtb": [ "https://github.com/melMass/comfy_mtb": [
"Animation Builder (mtb)", "Animation Builder (mtb)",
"Any To String (mtb)",
"Bbox (mtb)", "Bbox (mtb)",
"Bbox From Mask (mtb)", "Bbox From Mask (mtb)",
"Blur (mtb)", "Blur (mtb)",
@ -1192,7 +1199,7 @@
"Crop (mtb)", "Crop (mtb)",
"Debug (mtb)", "Debug (mtb)",
"Deep Bump (mtb)", "Deep Bump (mtb)",
"Export To Prores (mtb)", "Export With Ffmpeg (mtb)",
"Face Swap (mtb)", "Face Swap (mtb)",
"Film Interpolation (mtb)", "Film Interpolation (mtb)",
"Fit Number (mtb)", "Fit Number (mtb)",

Loading…
Cancel
Save