Commit Graph
100 Commits
Author SHA1 Message Date
Dr.Lt.DataandGitHub b669845f5e Merge pull request #3054 from 90-RED/main
Add ComfyUI-LinkRouter
2026-07-14 15:30:32 +09:00
Dr.Lt.DataandGitHub df761bcf27 Merge pull request #3049 from nregret/codex/register-anima-tools
[codex] Register Anima-Tools custom node
2026-07-11 20:23:06 +09:00
Dr.Lt.DataandGitHub ef8fa07a7d Merge pull request #3070 from WaitWut/add-ultimate-lora-loader
Add Ultimate Lora Loader
2026-07-11 20:05:27 +09:00
Dr.Lt.DataandGitHub 15204133a3 Merge pull request #3055 from m0rtus59/main
Add new custom node 'ComfyUI-ComfySidebar'
2026-07-11 20:00:27 +09:00
Dr.Lt.DataandGitHub 842bbd5104 Merge pull request #3052 from Anonymzx/main
add ComfyUI-Supertonic3TTS
2026-07-11 19:56:40 +09:00
Dr.Lt.DataandGitHub e11e9034ce Merge pull request #3058 from kgilper/update-krea-reference-sliders
Python Linting / Run Ruff (push) Has been cancelled
Update ComfyUI Krea Reference description: Concept Slider nodes
2026-07-07 14:23:10 +09:00
Dr.Lt.DataandGitHub cf883eb762 Merge pull request #3057 from Azornes/azornes-resolutionmaster-preemption
Add ResolutionMaster preemption for Comfyui-Resolution-Master
2026-07-07 03:49:16 +09:00
Dr.Lt.DataandGitHub d6df033a21 Merge pull request #2965 from shootthesound/add-shootthesound-nodes-batch
Add Lighthouse, CleanFreak, Finding LoRA, and Image of the Day
2026-07-06 19:24:00 +09:00
Dr.Lt.DataandGitHub c305db27fe Merge pull request #3022 from designloves2/add-comfyui-tj-node-studio-one
Add ComfyUI-TJ_NODE_STUDIO_ONE to custom-node-list
2026-07-05 03:18:07 +09:00
Dr.Lt.DataandGitHub 0f4df5347c Merge pull request #3034 from ivorstrelarsf/main
Add SF ComfyUI Nodes by Stillfront
2026-07-05 01:11:45 +09:00
Dr.Lt.DataandGitHub 87882134e4 Merge pull request #3036 from DutchyDutch/add-comfyui-local-wildcards
Add ComfyUI Local Wildcards custom node
2026-07-03 04:34:37 +09:00
Dr.Lt.DataandGitHub 30e055f4f6 Merge pull request #2922 from ketle-man/add-comfyui-mask-editor-one
Add Mask Editor One
2026-07-01 01:57:59 +09:00
Dr.Lt.DataandGitHub ceac3168e4 Merge pull request #3006 from Nekodificador/fix/nkd-preview-tools-rename
Fix NKD Preview Tools entry: repo renamed + dedupe
2026-07-01 01:45:36 +09:00
Dr.Lt.DataandGitHub 9fa5b6918d Merge pull request #3015 from juangea/add-bone-studio-workflow-manager
Add Bone-Studio Workflow Manager
2026-06-30 05:05:19 +09:00
Dr.Lt.DataandGitHub 36aa47f8bf Merge pull request #3007 from monkeykim111/add-comfyui-image-safety-gate
Add ComfyUI-Image-Safety-Gate
2026-06-27 02:22:27 +09:00
Dr.Lt.DataandGitHub 6dc448c813 Merge pull request #3018 from kwokkakiu233/main
Add LoRA Txt Loader node
2026-06-27 01:39:02 +09:00
Dr.Lt.DataandGitHub f697116029 Merge pull request #3011 from alexanderar/add-ltx-2.3-models
feat(models): Add LTX-2.3 22B model family.
2026-06-22 02:00:20 +09:00
Dr.Lt.DataandGitHub 0fde8b155b Merge pull request #2968 from sorryhyun/add-anima-pid-easycontrol
add Anima PiD and EasyControl node
2026-06-17 01:59:22 +09:00
Dr.Lt.DataandGitHub 062a164e47 Merge pull request #2975 from rookiestar28/add-longcat-avatar-node
Add ComfyUI LongCat Avatar node
2026-06-17 01:59:16 +09:00
Dr.Lt.DataandGitHub e7ab2f5858 Merge pull request #2983 from elowbe/main
Add comfyui-save-text
2026-06-17 01:59:11 +09:00
Dr.Lt.DataandGitHub 92e3fa5062 Merge pull request #2986 from vantang/add-comfyui-mediahub
Register ComfyUI MediaHub
2026-06-17 01:59:07 +09:00
Dr.Lt.DataandGitHub 90fdb64a67 Merge pull request #2990 from hypnichorse/main
Added Hypnodes to the registry/node list
2026-06-17 01:57:50 +09:00
Dr.Lt.DataandGitHub e4c5401dd5 feat(security): dedicated install flags decoupled from security_level (#2991)
Python Linting / Run Ruff (push) Waiting to run
* feat(security): add dedicated install flags decoupled from security_level

Gate 'install via git URL' and 'install via pip' with dedicated opt-in
boolean flags (allow_git_url_install / allow_pip_install) in config.ini
[default], fully replacing the security_level term on those surfaces
(REPLACE, not AND — a strict level no longer denies when the flag is on;
a weak level no longer allows when the flag is off).

- glob/manager_server.py: pure predicate is_dedicated_install_allowed
  (flag AND loopback, request-time args.listen); REPLACE gates at
  /customnode/install/git_url and /customnode/install/pip; batch
  unknown-URL arm routes through the same full predicate at the risky
  position (loopback term is load-bearing — the middle entry gate has
  no network-position term; the entry gate itself stays in force);
  unknown-pip in batch stays unconditionally blocked; new
  SECURITY_MESSAGE_FLAG_* denial constants name the responsible flag;
  security_403_response gains flag_token (comfyui_outdated keeps precedence)
- glob/manager_core.py: register both keys (read via get_bool default-false,
  write list, exception fallback); "true"-only truthy; restart-only activation
- js/common.js: 403 dialog copy names the responsible flag at the two
  install call sites
- README.md: security-policy docs for both flags (per-surface scope incl.
  the batch entry-gate qualifier, REPLACE decoupling, loopback bound,
  opt-in config snippet, default-deny + migration note); stale tier lists
  corrected against the actual gates
- CHANGELOG.md: opt-in migration note + accepted residual risk (flags
  bypass the forced-strong outdated-ComfyUI hardening on loopback,
  opt-in only), decoupling claim qualified for the batch entry gate

Tests: unit suite (predicate truth table, REPLACE litmus both directions,
AST binding-proofs against live handlers, subprocess-isolated config
contract) plus a real-server E2E suite that mounts the Manager-under-test
via git worktree (exact-SHA pin, detached) against a real ComfyUI and
exercises both flag surfaces and both arms — deny arms (403 + flag-naming
body/log + no install artifact), git-URL allow arm (real clone), pip allow
arm as a two-phase reservation oracle — with zero-residual self-clean.
Module skips without E2E_COMFYUI_ROOT; unit suite unaffected.

The manager-v4 branch ships the identical policy (shared invariants +
config contract); this tree uses the degraded predicate 'flag AND
loopback' (no personal_cloud-equivalent mode here).

* bump version to v3.41
2026-06-16 03:34:10 +09:00
Dr.Lt.DataandGitHub 81c3c3d62c Merge pull request #2947 from denyazzolin/add-comfyui-daz-tools
Adding ComfyUI-Daz-Tools to Custom Node List
2026-06-05 03:45:42 +09:00
Dr.Lt.DataandGitHub 0ccaf67ed9 Merge pull request #2902 from robomello/add-nvml-monitor
Add ComfyUI-NVML-Monitor
2026-06-01 03:08:37 +09:00
Dr.Lt.DataandGitHub 73686b372b Merge pull request #2073 from millerlight/millerlight-patch-1
Millerlight patch 1
2026-06-01 03:08:34 +09:00
Dr.Lt.DataandGitHub 5b17ff01bd Merge pull request #2884 from SOLRICKS/remove-legacy-msxyz-listing
Remove legacy MSXYZ node listing
2026-05-25 07:14:26 +09:00
Dr.Lt.DataandGitHub b717647e9c Merge pull request #2898 from Anonymzx/main
Update BangtrixToolkit entry, tag version and description
2026-05-24 21:11:31 +09:00
Dr.Lt.DataandGitHub 0151751ab5 Merge pull request #2892 from AntiMatterComfy/codex/update-antimatter-batch-loader-description
Update AntiMatter Nodes description
2026-05-24 21:11:18 +09:00
Dr.Lt.DataandGitHub aa747eec52 Merge pull request #2891 from AntiMatterComfy/codex/add-antimatter-nodes
Add AntiMatter Nodes
2026-05-20 08:14:48 +09:00
Dr.Lt.DataandGitHub 5d1d287735 Merge pull request #2874 from dreamrec/add-comfyui-pixal3d
Add ComfyUI-Pixal3D to custom-node-list.json
2026-05-17 10:10:18 +09:00
Dr.Lt.DataandGitHub af11571dd7 Merge pull request #2875 from PlagueKind/main
Add PlagueKind Nodes to ComfyUI-Manager registry
2026-05-16 22:09:39 +09:00
Dr.Lt.DataandGitHub d6a9d6544d Merge pull request #2883 from nicehero/main
Add [comfyui-conditioning-saver](https://github.com/nicehero/comfyui-conditioning-saver) to the custom node list.
2026-05-16 21:40:50 +09:00
Dr.Lt.DataandGitHub 42b028362e Merge pull request #2882 from ketle-man/add-model-and-prompt-from-metadata
Add Model and Prompt from Metadata node
2026-05-16 21:40:17 +09:00
Dr.Lt.DataandGitHub 3eceec5bfa Merge pull request #2878 from MagosDigitalStudio/main
Add ComfyUI-Magos-Nodes
2026-05-16 21:39:19 +09:00
Dr.Lt.DataandGitHub 7fa009e9da Merge pull request #2877 from Anonymzx/main
add BangtrixToolkit to custom nodes list
2026-05-16 21:38:24 +09:00
Dr.Lt.DataandGitHub 7cf155b2fe Merge pull request #2868 from pmarmotte2/register-comfyui-pick-any
Add Comfyui-Pick_Any to custom node list
2026-05-16 21:37:55 +09:00
Dr.Lt.DataandGitHub f64b73fc57 Merge pull request #2807 from wjluoxiao/main
Add custom node: XB_ToolBox
2026-05-16 21:36:47 +09:00
Dr.Lt.DataandGitHub f3236c3031 Merge pull request #1935 from PaoloC68/main
Add ComfyUI-PuLID-Flux-Chroma - First PuLID implementation for Chroma models
2026-05-16 21:32:03 +09:00
Dr.Lt.DataandGitHub fcbad506bb Merge pull request #1913 from flrngel/patch-1
Add ComfyUI_rgbx_xrgb_Wrapper
2026-05-16 21:31:21 +09:00
Dr.Lt.DataandGitHub d16ba306be Merge pull request #2801 from gzsiang/main
Add ComfyUI-VolcEngine to custom node list
2026-05-11 20:37:12 +09:00
Dr.Lt.DataandGitHub 40e27f8eb4 Merge pull request #2837 from Warningning/main
Add ComfyUI-MaskToTransparent node entry
2026-05-11 20:36:09 +09:00
Dr.Lt.DataandGitHub e7e36be084 Merge pull request #2864 from wuwukaka/main
Add ComfyUI-BodyRatioMapper custom node
2026-05-11 20:34:28 +09:00
Dr.Lt.DataandGitHub 8f4e7b089b Merge pull request #2830 from namemechan/main
Add: ComfyUI-DCW (SNR-t bias correction)
2026-05-11 20:33:37 +09:00
Dr.Lt.DataandGitHub c0d5b4e720 Merge pull request #2813 from RandyHaylor/add-comfyui-claude-cli-vision-text-node
Add ComfyUI Claude CLI (Vision+Text) node
2026-05-11 20:30:07 +09:00
Dr.Lt.DataandGitHub 0802a88354 Merge pull request #2725 from wes-kay/adding-nodes
Adding nodes
2026-05-11 20:28:12 +09:00
Dr.Lt.DataandGitHub d255e36ab6 Merge pull request #2862 from machinepainting/add-machinepainting-pack
Add MachinePainting Nodes to custom-node-list.json
2026-05-11 20:12:58 +09:00
Dr.Lt.DataandGitHub 3e5c680f38 Merge pull request #2856 from SOLRICKS/main
Update SOLRICKS node listing
2026-05-11 20:07:31 +09:00
Dr.Lt.DataandGitHub 10d48c2670 Merge pull request #2866 from thomaskippster/main
Add ComfyUI Model Downloader Bridge to custom-node-list.json
2026-05-11 03:56:43 +09:00
Dr.Lt.DataandGitHub f9603624a9 Merge pull request #2803 from hahalfx/add-bizyairplus
Update custom-node-list.json for adding new custom-node BizyAirPlus
2026-05-11 03:55:55 +09:00
Dr.Lt.DataandGitHub 244421458d Merge pull request #2800 from andreszs/add-styler-pipeline
Add ComfyUI-Styler-Pipeline to custom-node-list.json
2026-05-11 03:55:10 +09:00
Dr.Lt.DataandGitHub df1505efda Merge pull request #2798 from andreszs/add-openpose-ultralytics-studio
Add ComfyUI-OpenPose-Studio and ComfyUI-Ultralytics-Studio to custom-node-list.json
2026-05-11 03:54:10 +09:00
Dr.Lt.DataandGitHub f94902966a Merge pull request #2573 from Moeblack/add-comfyui-animatool
Add ComfyUI-AnimaTool
2026-05-11 03:53:07 +09:00
Dr.Lt.DataandGitHub 2ae10236b9 Merge pull request #2829 from MotifTechnologies/feat/add-motifvideo2b
Add ComfyUI-MotifVideo2B to custom-node-list.json
2026-05-11 03:27:22 +09:00
Dr.Lt.DataandGitHub 9a17c96da6 Merge pull request #2821 from pixaroma/add-pixaroma
Add ComfyUI-Pixaroma to custom-node-list.json
2026-05-11 03:26:36 +09:00
Dr.Lt.DataandGitHub e4fadee042 Merge pull request #2814 from kenyonxu/main
Add Kai Civitai LoRA Loader to custom node list
2026-05-11 03:25:49 +09:00
Dr.Lt.DataandGitHub 9aa2ca09b8 Merge pull request #2806 from Amatsukast/add-sbtools
Add ComfyUI-SBTools
2026-05-11 03:25:01 +09:00
Dr.Lt.DataandGitHub a4b6a589d7 Merge pull request #2440 from destinyfaux/main
Z-Fuse
2026-05-11 03:23:30 +09:00
Dr.Lt.DataandGitHub ed8baf3e79 Merge pull request #2706 from ketle-man/add-workflow-studio
Add ComfyUI-Workflow-Studio
2026-05-11 01:33:09 +09:00
Dr.Lt.DataandGitHub e6693e0b9f Merge pull request #2742 from akashzeno/add-pulse-of-motion
Add ComfyUI-PulseOfMotion to custom node list
2026-05-11 01:32:04 +09:00
Dr.Lt.DataandGitHub bc334c7aa5 Merge pull request #2835 from magicwang1111/codex/register-magicwang-nodes
add  ComfyUI-Happyhorse-Wrapper and ComfyUI-Account-Manager
2026-05-11 01:01:56 +09:00
Dr.Lt.DataandGitHub d370403e2d Merge pull request #2827 from DemonAlone/Styler
Add DemonAlone-StyleSelector-ComfyUI  to custom-node-list.json
2026-05-01 05:00:39 +09:00
Dr.Lt.DataandGitHub ccf6d98457 Merge pull request #2809 from jetthuangai/add-comfyui-jh-pixelpro
Add ComfyUI-JH-PixelPro
2026-05-01 04:59:51 +09:00
Dr.Lt.DataandGitHub f2a3d39e26 Merge pull request #2805 from emiewnn/emiewnnodes
Add ComfyUI-Emiewn-Nodes
2026-05-01 04:58:21 +09:00
Dr.Lt.DataandGitHub a3aabfd72c Merge pull request #2811 from Kyreo/main
Add ComfyUI-CharacterPromptBuffer by Kyreo
2026-05-01 04:42:19 +09:00
Dr.Lt.DataandGitHub 491f847bbc fix(security): harden CSRF with Content-Type gate and OpenAPI sync (#2819)
Python Linting / Run Ruff (push) Has been cancelled
Defense-in-depth over GET→POST alone: reject the three CORS-safelisted
simple-form Content-Types (x-www-form-urlencoded, multipart/form-data,
text/plain) on 5 no-body POST handlers (snapshot/save,
manager/queue/{reset,start,update_comfyui}, manager/reboot) to block
<form method=POST> CSRF that bypasses method-only gating. Convert 10 pure
state-changing endpoints (fetch_updates, queue/{update_all,reset,start,
update_comfyui}, snapshot/{remove,restore,save}, comfyui_switch_version,
reboot) from GET to POST and split 5 config endpoints
(db_mode/preview_method/channel_url_list/policy/{component,update}) into
GET(read) + POST(write, JSON body). Emit the in_progress + done event pair
from the /manager/queue/install sync-enable fast-path so client UI
finalizes (previously only queue/start's empty worker done fired, leaving
item.restart unset and the Enable button visible after a successful enable).
Harden js/custom-nodes-manager.js completion path: await onQueueCompleted
with try/catch (surfaces silent turbogrid stale-item throws), replace the
{}.length == 0 no-op empty guard, set install_context before queue/install
to avoid a sync-completion race, wrap classList/updateCell in try/catch.
Resynchronize openapi.yaml with the converted routes (method → post, query
params → requestBody JSON schema, sibling post on 5 split endpoints).
Update 31 JS fetchApi call sites across 7 files; add
tests/test_csrf_content_type_helper.py covering 5 Content-Type cases via
aiohttp TestClient.

Reported-by: XlabAI Team of Tencent Xuanwu Lab
CVSS: 8.1 (AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:H)
2026-04-22 05:04:07 +09:00
Dr.Lt.DataandGitHub 2007eab26d fix(security): add litellm supply chain attack detection and improve pip matching (#2731)
Python Linting / Run Ruff (push) Has been cancelled
- Add litellm==1.82.7 and litellm==1.82.8 to blacklist (PYSEC-2026-2)
- Add ultralytics==8.3.42 to blacklist
- Replace substring matching with exact version set matching
- Remove early break to detect multiple malicious packages
2026-03-26 04:17:46 +09:00
Dr.Lt.DataandGitHub b2d6a4eefe Update custom-node-list.json 2025-12-28 08:09:06 +09:00
Dr.Lt.DataandGitHub aaed1dc3d5 feat(security): Support System User Protection API with security migration (V3.38) (#2338)
- Migrate Manager data path: default/ComfyUI-Manager → __manager
- Force security_level=strong on outdated ComfyUI (block installations)
- Auto-migrate config.ini only; backup legacy files for manual verification
- Raise weak/normal- to normal during migration
- Add /manager/startup_alerts API for UI warnings
- Differentiate 403 responses: comfyui_outdated vs security_level
- Block startup scripts execution on old ComfyUI

Requires ComfyUI v0.3.76+ for full functionality.
Backward compatible with older versions (uses legacy path).
2025-12-03 00:42:12 +09:00
Dr.Lt.DataandGitHub 656171037b Update custom-node-list.json
HYPIR-ComfyUI was a separated PR.
2025-11-22 09:28:40 +09:00
Dr.Lt.DataandGitHub 4b71db54aa Revert "Add KERRY-YUAN/ComfyUI_Simple_Executor nodes (#1721)" (#1725)
This reverts commit a6bc890f36.
2025-04-09 00:13:37 +09:00
0202cf07d5 revise /customnode/installed api (#1398)
* revise /customnode/installed

improved: don't fetch data from cnr for the api
improved: change format {<cnr id>: <version>} -> {<module>: [<version>, <cnr id>]}

* fix condition

* improved: add `mode=imported` for startup snapshot

`/customnode/installed` - current snapshot
`/customnode/installed?mode=imported` - startup snapshot

* improved: move cache dir to user directory

* modified: /customnodes/installed
- show whole nodes including disabled
- format changed `key -> list` to `key -> dict`

* fixed: doesn't show disabled node pack properly.

* Update workflow-metadata.js

---------

Co-authored-by: huchenlei <huchenlei@proton.me>
2025-01-08 19:50:58 -05:00
Dr.Lt.DataandGitHub a32e551fd0 Revert "Bypass ComfyUI version check when in electron env (#1303)" (#1316)
This reverts commit 6f1bfae957.
2024-12-11 03:41:21 +09:00
Dr.Lt.DataandGitHub 1e421a70cb Merge pull request #522 from nazgut/main
update custom-node-list
2024-03-27 22:17:18 +09:00
Dr.Lt.DataandGitHub 9d7b3fecd2 Merge pull request #521 from kijai/main
Add Geowizard -node
2024-03-27 22:16:55 +09:00
Dr.Lt.DataandGitHub 302000fed3 Merge pull request #520 from chaojie/patch-17
Update custom-node-list.json
2024-03-27 22:16:09 +09:00
Dr.Lt.DataandGitHub 056617ac88 Merge pull request #519 from chaojie/patch-16
Update custom-node-list.json
2024-03-26 16:16:04 +09:00
Dr.Lt.DataandGitHub 3369b27e36 Merge pull request #516 from alisson-anjos/main
Add LLaVa-Describer custom nodes
2024-03-25 11:36:33 +09:00
Dr.Lt.DataandGitHub ee16f5a972 Merge pull request #513 from kijai/main
Add Depth-FM node and models
2024-03-23 11:57:59 +09:00
Dr.Lt.DataandGitHub 693d3fe597 Merge branch 'main' into main 2024-03-23 11:57:52 +09:00
Dr.Lt.DataandGitHub 25b7714981 Merge pull request #512 from julien-blanchon/patch-5
Add monster-labs - Controlnet QR Code Monster v1 For SDXL
2024-03-23 11:54:44 +09:00
Dr.Lt.DataandGitHub 2dc7bb3ac8 Merge pull request #511 from daxcay/main
New Plugin ComfyUI-JDCN
2024-03-23 11:54:16 +09:00
Dr.Lt.DataandGitHub 82107a001a Merge pull request #510 from Jannchie/main
feat: add ComfyUI-J, Jannchie's diffusers based nodes
2024-03-23 11:53:14 +09:00
Dr.Lt.DataandGitHub 91114cc448 Merge pull request #509 from julien-blanchon/patch-4
Add ZHO-ZHO-ZHO/ComfyUI-BRIA_AI-RMBG node
2024-03-21 11:13:22 +09:00
Dr.Lt.DataandGitHub b3ae00f0bd Merge pull request #507 from julien-blanchon/patch-2
Update layerdiffusion name
2024-03-21 11:04:36 +09:00
Dr.Lt.DataandGitHub addf5237cf Merge pull request #505 from ZHO-ZHO-ZHO/ComfyUI-Manager
ADD APISR IN COMFYUI
2024-03-20 10:34:37 +09:00
Dr.Lt.DataandGitHub 1a97143b0a Merge pull request #503 from chaojie/patch-15
Update custom-node-list.json
2024-03-19 23:10:49 +09:00
Dr.Lt.DataandGitHub 8a9940917a Merge pull request #502 from KarryCharon/add-comfyui-cup
add comfyui-cup repo
2024-03-19 22:39:39 +09:00
Dr.Lt.DataandGitHub bf7046c2b7 Merge pull request #501 from nazgut/main
add Image Text Overlay Node to the custom-node-list
2024-03-19 09:41:32 +09:00
Dr.Lt.DataandGitHub 92525a1021 Merge pull request #496 from kijai/main
Add DynamiCrafterWrapper node and models
2024-03-18 09:16:44 +09:00
Dr.Lt.DataandGitHub b34911b7a4 Merge pull request #483 from Shadetail/main
Added Eagleshadow Custom Nodes entry to custom-node-list.json
2024-03-17 21:59:55 +09:00
Dr.Lt.DataandGitHub 509918c1a9 Merge pull request #495 from kijai/main
Add ComfyUI-SUPIR nodes
2024-03-17 21:58:51 +09:00
Dr.Lt.DataandGitHub 794516c49d Merge pull request #491 from MarkoCa1/main
text node
2024-03-17 11:46:10 +09:00
Dr.Lt.DataandGitHub 67d4f8d9d5 Merge pull request #494 from ForeignGods/main
Added Mana-Nodes to custom-node-list.json
2024-03-17 11:43:51 +09:00
Dr.Lt.DataandGitHub e96f5241cf Merge pull request #492 from madtunebk/main
Added ComfyUI-ControlnetAux  node  entry to custom-node-list.json
2024-03-17 11:43:35 +09:00
Dr.Lt.DataandGitHub ec7317058e Merge pull request #485 from chaojie/patch-14
Update custom-node-list.json
2024-03-15 10:04:51 +09:00
Dr.Lt.DataandGitHub 4312b96cfa Merge pull request #482 from chaojie/patch-13
Update custom-node-list.json
2024-03-15 09:59:44 +09:00
Dr.Lt.DataandGitHub 1871f0053f Merge pull request #479 from cozymantis/cozy-utils
Add Cozy utils
2024-03-14 09:08:26 +09:00
Dr.Lt.DataandGitHub c345835a41 Merge pull request #478 from cozymantis/cozy-reference-pose-gen
Add Cozy Reference Pose nodes
2024-03-14 09:07:21 +09:00
Dr.Lt.DataandGitHub ed5a592a35 Merge pull request #477 from cozymantis/cozy-human-parser
Add Cozy Human Parser nodes
2024-03-14 09:05:10 +09:00