Merge pull request #414 from BennyKok/fix/nodename_pattern-escape-fix

fix: ensure nodename_pattern is working properly with escaping [ ] wi…
This commit is contained in:
Dr.Lt.Data 2024-02-17 07:51:05 +09:00 committed by GitHub
commit 9569825c21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -4381,7 +4381,7 @@
"files": [ "files": [
"https://github.com/MrForExample/ComfyUI-3D-Pack" "https://github.com/MrForExample/ComfyUI-3D-Pack"
], ],
"nodename_pattern": "^[Comfy3D]", "nodename_pattern": "^\\[Comfy3D\\]",
"install_type": "git-clone", "install_type": "git-clone",
"description": "An extensive node suite that enables ComfyUI to process 3D inputs (Mesh & UV Texture, etc) using cutting edge algorithms (3DGS, NeRF, etc.)\nNOTE: Pre-built python wheels can be download from [a/https://github.com/remsky/ComfyUI3D-Assorted-Wheels](https://github.com/remsky/ComfyUI3D-Assorted-Wheels)" "description": "An extensive node suite that enables ComfyUI to process 3D inputs (Mesh & UV Texture, etc) using cutting edge algorithms (3DGS, NeRF, etc.)\nNOTE: Pre-built python wheels can be download from [a/https://github.com/remsky/ComfyUI3D-Assorted-Wheels](https://github.com/remsky/ComfyUI3D-Assorted-Wheels)"
}, },
@ -4392,7 +4392,7 @@
"files": [ "files": [
"https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved" "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved"
], ],
"nodename_pattern": "^[AnimateAnyone]", "nodename_pattern": "^\\[AnimateAnyone\\]",
"install_type": "git-clone", "install_type": "git-clone",
"description": "Improved AnimateAnyone implementation that allows you to use the opse image sequence and reference image to generate stylized video.\nThe current goal of this project is to achieve desired pose2video result with 1+FPS on GPUs that are equal to or better than RTX 3080!🚀\n[w/The torch environment may be compromised due to version issues as some torch-related packages are being reinstalled.]" "description": "Improved AnimateAnyone implementation that allows you to use the opse image sequence and reference image to generate stylized video.\nThe current goal of this project is to achieve desired pose2video result with 1+FPS on GPUs that are equal to or better than RTX 3080!🚀\n[w/The torch environment may be compromised due to version issues as some torch-related packages are being reinstalled.]"
}, },

View File

@ -1658,14 +1658,14 @@
"https://github.com/MrForExample/ComfyUI-3D-Pack": [ "https://github.com/MrForExample/ComfyUI-3D-Pack": [
[], [],
{ {
"nodename_pattern": "^[Comfy3D]", "nodename_pattern": "^\\[Comfy3D\\]",
"title_aux": "ComfyUI-3D-Pack" "title_aux": "ComfyUI-3D-Pack"
} }
], ],
"https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved": [ "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved": [
[], [],
{ {
"nodename_pattern": "^[AnimateAnyone]", "nodename_pattern": "^\\[AnimateAnyone\\]",
"title_aux": "ComfyUI-AnimateAnyone-Evolved" "title_aux": "ComfyUI-AnimateAnyone-Evolved"
} }
], ],