Browse Source

improve: print install script log

update DB
pull/62/head
dr.lt.data 1 year ago
parent
commit
b93e541478
  1. 3
      __init__.py
  2. 24
      custom-node-list.json
  3. 7
      extension-node-map.json
  4. 2
      prestartup_script.py

3
__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.1)") print("### Loading: ComfyUI-Manager (V0.21.2)")
comfy_ui_required_revision = 1240 comfy_ui_required_revision = 1240
comfy_ui_revision = "Unknown" comfy_ui_revision = "Unknown"
@ -136,6 +136,7 @@ def try_install_script(url, repo_path, install_cmd):
return True return True
else: else:
print(f"\n## ComfyUI-Manager: EXECUTE => {install_cmd}")
code = subprocess.run(install_cmd, cwd=repo_path) code = subprocess.run(install_cmd, cwd=repo_path)
if platform.system() == "Windows": if platform.system() == "Windows":

24
custom-node-list.json

@ -1089,6 +1089,26 @@
"install_type": "git-clone", "install_type": "git-clone",
"description": "Save a png or jpeg and option to save prompt/workflow in a text or json file for each image in Comfy + Workflow loading." "description": "Save a png or jpeg and option to save prompt/workflow in a text or json file for each image in Comfy + Workflow loading."
}, },
{
"author": "m-sokes",
"title": "ComfyUI Sokes Nodes",
"reference": "https://github.com/m-sokes/ComfyUI-Sokes-Nodes",
"files": [
"https://github.com/m-sokes/ComfyUI-Sokes-Nodes"
],
"install_type": "git-clone",
"description": "Nodes: Empty Latent Randomizer (9 Inputs)"
},
{
"author": "Extraltodeus",
"title": "noise latent perlinpinpin",
"reference": "https://github.com/Extraltodeus/noise_latent_perlinpinpin",
"files": [
"https://github.com/Extraltodeus/noise_latent_perlinpinpin"
],
"install_type": "git-clone",
"description": "Nodes: NoisyLatentPerlin. This allows to create latent spaces filled with perlin-based noise that can actually be used by the samplers."
},
{ {
"author": "taabata", "author": "taabata",
"title": "Syrian Falcon Nodes", "title": "Syrian Falcon Nodes",
@ -1268,8 +1288,8 @@
"description": "Nodes: CLIPTextEncodeA1111, RerouteTextForCLIPTextEncodeA1111." "description": "Nodes: CLIPTextEncodeA1111, RerouteTextForCLIPTextEncodeA1111."
}, },
{ {
"author": "SadaleNet", "author": "wsippel",
"title": "ComfyUI A1111-like Prompt Custom Node Solution", "title": "SDXLResolutionPresets",
"reference": "https://github.com/wsippel/comfyui_ws", "reference": "https://github.com/wsippel/comfyui_ws",
"files": [ "files": [
"https://github.com/wsippel/comfyui_ws/raw/main/sdxl_utility.py" "https://github.com/wsippel/comfyui_ws/raw/main/sdxl_utility.py"

7
extension-node-map.json

@ -185,6 +185,9 @@
"Solarize", "Solarize",
"Vignette" "Vignette"
], ],
"https://github.com/Extraltodeus/noise_latent_perlinpinpin": [
"NoisyLatentPerlin"
],
"https://github.com/Fannovel16/ComfyUI-Frame-Interpolation": [ "https://github.com/Fannovel16/ComfyUI-Frame-Interpolation": [
"AMT VFI", "AMT VFI",
"ESAI VFI", "ESAI VFI",
@ -899,7 +902,8 @@
], ],
"https://github.com/coreyryanhanson/comfy-qr": [ "https://github.com/coreyryanhanson/comfy-qr": [
"comfy-qr-by-image-size", "comfy-qr-by-image-size",
"comfy-qr-by-module-size" "comfy-qr-by-module-size",
"comfy-qr-by-module-split"
], ],
"https://github.com/coreyryanhanson/comfy-qr-validation-nodes": [ "https://github.com/coreyryanhanson/comfy-qr-validation-nodes": [
"comfy-qr-read", "comfy-qr-read",
@ -1430,6 +1434,7 @@
], ],
"https://github.com/wallish77/wlsh_nodes": [ "https://github.com/wallish77/wlsh_nodes": [
"Alternating KSampler (WLSH)", "Alternating KSampler (WLSH)",
"Build Filename String (WLSH)",
"CLIP Positive-Negative (WLSH)", "CLIP Positive-Negative (WLSH)",
"CLIP Positive-Negative w/Text (WLSH)", "CLIP Positive-Negative w/Text (WLSH)",
"Checkpoint Loader w/Name (WLSH)", "Checkpoint Loader w/Name (WLSH)",

2
prestartup_script.py

@ -61,6 +61,8 @@ if os.path.exists(script_list_path):
try: try:
script = eval(line) script = eval(line)
print(f"\n## ComfyUI-Manager: EXECUTE => {script}")
print(f"\n## Execute install/(de)activation script for '{script[0]}'") print(f"\n## Execute install/(de)activation script for '{script[0]}'")
code = subprocess.run(script[1:], cwd=script[0]) code = subprocess.run(script[1:], cwd=script[0])

Loading…
Cancel
Save