From 20d578c94028634b1d3cbe81af2d75f0c10c5a1b Mon Sep 17 00:00:00 2001 From: bennykok Date: Fri, 16 Feb 2024 18:34:28 +0800 Subject: [PATCH] fix: ensure nodename_pattern is working properly with escaping [ ] with \ for Comfy3D and AnimateAnyone --- custom-node-list.json | 4 ++-- extension-node-map.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/custom-node-list.json b/custom-node-list.json index ed6e506..4be244e 100644 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -4381,7 +4381,7 @@ "files": [ "https://github.com/MrForExample/ComfyUI-3D-Pack" ], - "nodename_pattern": "^[Comfy3D]", + "nodename_pattern": "^\\[Comfy3D\\]", "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)" }, @@ -4392,7 +4392,7 @@ "files": [ "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved" ], - "nodename_pattern": "^[AnimateAnyone]", + "nodename_pattern": "^\\[AnimateAnyone\\]", "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.]" }, diff --git a/extension-node-map.json b/extension-node-map.json index 490f227..b96465f 100644 --- a/extension-node-map.json +++ b/extension-node-map.json @@ -1658,14 +1658,14 @@ "https://github.com/MrForExample/ComfyUI-3D-Pack": [ [], { - "nodename_pattern": "^[Comfy3D]", + "nodename_pattern": "^\\[Comfy3D\\]", "title_aux": "ComfyUI-3D-Pack" } ], "https://github.com/MrForExample/ComfyUI-AnimateAnyone-Evolved": [ [], { - "nodename_pattern": "^[AnimateAnyone]", + "nodename_pattern": "^\\[AnimateAnyone\\]", "title_aux": "ComfyUI-AnimateAnyone-Evolved" } ],