mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-21 20:14:24 +08:00
update README.md
This commit is contained in:
parent
8ea2a744c2
commit
b2fc36c547
27
README.md
27
README.md
@ -208,20 +208,22 @@ NODE_CLASS_MAPPINGS.update({
|
|||||||
* **All scripts are executed from the root path of the corresponding custom node.**
|
* **All scripts are executed from the root path of the corresponding custom node.**
|
||||||
|
|
||||||
|
|
||||||
## Component Paste
|
## Component Sharing
|
||||||
* When pasting a component from the clipboard, it supports text in the following JSON format. (text/plain)
|
* **Copy & Paste**
|
||||||
```
|
* [Demo Page](https://ltdrdata.github.io/component-demo/)
|
||||||
{
|
* When pasting a component from the clipboard, it supports text in the following JSON format. (text/plain)
|
||||||
|
```
|
||||||
|
{
|
||||||
"kind": "ComfyUI Components",
|
"kind": "ComfyUI Components",
|
||||||
"timestamp": <current timestamp>,
|
"timestamp": <current timestamp>,
|
||||||
"components":
|
"components":
|
||||||
{
|
{
|
||||||
<component name>: <component nodedata>
|
<component name>: <component nodedata>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
* `<current timestamp>` Ensure that the timestamp is always unique.
|
* `<current timestamp>` Ensure that the timestamp is always unique.
|
||||||
* "components" should have the same structure as the content of the file stored in ComfyUI-Manager/components.
|
* "components" should have the same structure as the content of the file stored in ComfyUI-Manager/components.
|
||||||
* `<component name>`: The name should be in the format `<prefix>::<node name>`.
|
* `<component name>`: The name should be in the format `<prefix>::<node name>`.
|
||||||
* `<compnent nodeata>`: In the nodedata of the group node.
|
* `<compnent nodeata>`: In the nodedata of the group node.
|
||||||
* `<version>`: Only two formats are allowed: `major.minor.patch` or `major.minor`. (e.g. `1.0`, `2.2.1`)
|
* `<version>`: Only two formats are allowed: `major.minor.patch` or `major.minor`. (e.g. `1.0`, `2.2.1`)
|
||||||
@ -234,12 +236,13 @@ NODE_CLASS_MAPPINGS.update({
|
|||||||
"packname": "mypack",
|
"packname": "mypack",
|
||||||
"category": "util/pipe",
|
"category": "util/pipe",
|
||||||
```
|
```
|
||||||
|
* **Drag & Drop**
|
||||||
* Drag & Drop support
|
|
||||||
* Dragging and dropping a `.pack` or `.json` file will add the corresponding components.
|
* Dragging and dropping a `.pack` or `.json` file will add the corresponding components.
|
||||||
* Example pack: [Impact.pack](misc/Impact.pack)
|
* Example pack: [Impact.pack](misc/Impact.pack)
|
||||||
|
|
||||||
* Dragging and dropping or pasting a single component will add a node. However, when adding multiple components, nodes will not be added.
|
* Dragging and dropping or pasting a single component will add a node. However, when adding multiple components, nodes will not be added.
|
||||||
|
|
||||||
|
|
||||||
## Support of missing nodes installation
|
## Support of missing nodes installation
|
||||||
|
|
||||||

|

|
||||||
@ -272,11 +275,11 @@ NODE_CLASS_MAPPINGS.update({
|
|||||||
- [x] System displaying information about failed custom nodes import.
|
- [x] System displaying information about failed custom nodes import.
|
||||||
- [x] Guide for missing nodes in ComfyUI vanilla nodes.
|
- [x] Guide for missing nodes in ComfyUI vanilla nodes.
|
||||||
- [x] Collision checking system for nodes with the same ID across extensions.
|
- [x] Collision checking system for nodes with the same ID across extensions.
|
||||||
|
- [x] Template sharing system. (-> Component system based on Group Nodes)
|
||||||
|
- [x] 3rd party API system.
|
||||||
- [ ] Auto migration for custom nodes with changed structures.
|
- [ ] Auto migration for custom nodes with changed structures.
|
||||||
- [ ] Version control feature for nodes.
|
- [ ] Version control feature for nodes.
|
||||||
- [ ] List of currently used custom nodes.
|
- [ ] List of currently used custom nodes.
|
||||||
- [ ] Template sharing system.
|
|
||||||
- [ ] 3rd party API system.
|
|
||||||
- [ ] Download support multiple model download.
|
- [ ] Download support multiple model download.
|
||||||
- [ ] Model download via url.
|
- [ ] Model download via url.
|
||||||
- [ ] List sorting.
|
- [ ] List sorting.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user