From 6f49a73f9cbcfc3a739feb714d5662f8bb7f75cf Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Tue, 11 Mar 2025 22:00:46 +0800 Subject: [PATCH] Enhance README with v0.7.36 release notes and update utils.py with credit attribution --- README.md | 8 ++++++++ py/nodes/utils.py | 1 + 2 files changed, 9 insertions(+) diff --git a/README.md b/README.md index e5f6d855..33599543 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,14 @@ Watch this quick tutorial to learn how to use the new one-click LoRA integration ## Release Notes +### v0.7.36 +* Enhanced LoRA details view with model descriptions and tags display +* Added tag filtering system for improved model discovery +* Implemented editable trigger words functionality +* Improved TriggerWord Toggle node with new group mode option for granular control +* Added new Lora Stacker node with cross-compatibility support (works with efficiency nodes, ComfyRoll, easy-use, etc.) +* Fixed several bugs + ### v0.7.35-beta * Added base model filtering * Implemented bulk operations (copy syntax, move multiple LoRAs) diff --git a/py/nodes/utils.py b/py/nodes/utils.py index 4c1884b1..89b96c97 100644 --- a/py/nodes/utils.py +++ b/py/nodes/utils.py @@ -4,6 +4,7 @@ class AnyType(str): def __ne__(self, __value: object) -> bool: return False +# Credit to Regis Gaughan, III (rgthree) class FlexibleOptionalInputType(dict): """A special class to make flexible nodes that pass data to our python handlers.