diff --git a/README.md b/README.md index ac15152c..a0c78d26 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,13 @@ Watch this quick tutorial to learn how to use the new one-click LoRA integration ## Release Notes +### v0.8.13 +* **Enhanced Recipe Management** - Added "Find duplicates" feature to identify and batch delete duplicate recipes with duplicate detection notifications during imports +* **Improved Source Tracking** - Source URLs are now saved with recipes imported via URL, allowing users to view original content with one click or manually edit links +* **Advanced LoRA Control** - Double-click LoRAs in Loader/Stacker nodes to access expanded CLIP strength controls for more precise adjustments of model and CLIP strength separately +* **Lycoris Model Support** - Added compatibility with Lycoris models for expanded creative options +* **Bug Fixes & UX Improvements** - Resolved various issues and enhanced overall user experience with numerous optimizations + ### v0.8.12 * **Enhanced Model Discovery** - Added alphabetical navigation bar to LoRAs page for faster browsing through large collections * **Optimized Example Images** - Improved download logic to automatically refresh stale metadata before fetching example images diff --git a/py/nodes/lora_loader.py b/py/nodes/lora_loader.py index 66de53ed..58a9aa89 100644 --- a/py/nodes/lora_loader.py +++ b/py/nodes/lora_loader.py @@ -56,7 +56,6 @@ class LoraManagerLoader: # Then process loras from kwargs with support for both old and new formats loras_list = get_loras_list(kwargs) - print(f"Loaded loras list: {loras_list}") for lora in loras_list: if not lora.get('active', False): continue diff --git a/pyproject.toml b/pyproject.toml index 5a6b1f3c..09cbad32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "comfyui-lora-manager" description = "LoRA Manager for ComfyUI - Access it at http://localhost:8188/loras for managing LoRA models with previews and metadata integration." -version = "0.8.12" +version = "0.8.13" license = {file = "LICENSE"} dependencies = [ "aiohttp",