From 8b3710b2b61b8e20fca3806cfc23b7386ea9f740 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Thu, 28 Sep 2023 10:44:17 +0900 Subject: [PATCH] feat: `ComfyUI Node Info` link --- README.md | 1 + __init__.py | 2 +- js/comfyui-manager.js | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a22c01cf..836d2369 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # ComfyUI Manager +You can see whole nodes info on [ComfyUI Nodes Info](https://ltdrdata.github.io/) page. ## NOTICE * Versions prior to V0.22.2 will no longer detect missing nodes unless using a local database. Please update ComfyUI-Manager to the latest version. diff --git a/__init__.py b/__init__.py index 0d2f60b7..2d5c183c 100644 --- a/__init__.py +++ b/__init__.py @@ -56,7 +56,7 @@ sys.path.append('../..') from torchvision.datasets.utils import download_url # ensure .js -print("### Loading: ComfyUI-Manager (V0.31)") +print("### Loading: ComfyUI-Manager (V0.32)") comfy_ui_required_revision = 1240 comfy_ui_revision = "Unknown" diff --git a/js/comfyui-manager.js b/js/comfyui-manager.js index a9de0f0a..d4dfbc43 100644 --- a/js/comfyui-manager.js +++ b/js/comfyui-manager.js @@ -1938,6 +1938,11 @@ class ManagerMenuDialog extends ComfyDialog { textContent: "ComfyUI Community Manual", onclick: () => { window.open("https://blenderneko.github.io/ComfyUI-docs/", "comfyui-community-manual"); } }), + $el("button", { + type: "button", + textContent: "ComfyUI Nodes Info", + onclick: () => { window.open("https://ltdrdata.github.io/", "comfyui-node-info"); } + }), $el("br", {}, []), $el("hr", {width: "100%"}, []),