mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 18:02:58 +08:00
feat: ComfyUI Node Info link
This commit is contained in:
parent
1e18e69dc1
commit
8b3710b2b6
@ -1,5 +1,6 @@
|
|||||||
# ComfyUI Manager
|
# ComfyUI Manager
|
||||||
|
|
||||||
|
You can see whole nodes info on [ComfyUI Nodes Info](https://ltdrdata.github.io/) page.
|
||||||
|
|
||||||
## NOTICE
|
## 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.
|
* 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.
|
||||||
|
|||||||
@ -56,7 +56,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.31)")
|
print("### Loading: ComfyUI-Manager (V0.32)")
|
||||||
|
|
||||||
comfy_ui_required_revision = 1240
|
comfy_ui_required_revision = 1240
|
||||||
comfy_ui_revision = "Unknown"
|
comfy_ui_revision = "Unknown"
|
||||||
|
|||||||
@ -1938,6 +1938,11 @@ class ManagerMenuDialog extends ComfyDialog {
|
|||||||
textContent: "ComfyUI Community Manual",
|
textContent: "ComfyUI Community Manual",
|
||||||
onclick: () => { window.open("https://blenderneko.github.io/ComfyUI-docs/", "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("br", {}, []),
|
||||||
$el("hr", {width: "100%"}, []),
|
$el("hr", {width: "100%"}, []),
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user