Update version to 0.8.13; enhance recipe management and source tracking features in release notes

This commit is contained in:
Will Miao
2025-05-09 11:38:46 +08:00
parent d0d5eb956a
commit fa08c9c3e4
3 changed files with 8 additions and 2 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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",