diff --git a/README.md b/README.md index 2d4f2636..f1da7f8a 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,12 @@ Watch this quick tutorial to learn how to use the new one-click LoRA integration ## Release Notes +### v0.8.8 +* **Real-time TriggerWord Updates** - Enhanced TriggerWord Toggle node to instantly update when connected Lora Loader or Lora Stacker nodes change, without requiring workflow execution +* **Optimized Metadata Recovery** - Improved utilization of existing .civitai.info files for faster initialization and preservation of metadata from models deleted from CivitAI +* **Migration Acceleration** - Further speed improvements for users transitioning from A1111/Forge environments +* **Bug Fixes & Stability** - Resolved various issues to enhance overall reliability and performance + ### v0.8.7 * **Enhanced Context Menu** - Added comprehensive context menu functionality to Recipes and Checkpoints pages for improved workflow * **Interactive LoRA Strength Control** - Implemented drag functionality in LoRA Loader for intuitive strength adjustment diff --git a/pyproject.toml b/pyproject.toml index 1046d2c6..0b932f65 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.7-bugfix2" +version = "0.8.8" license = {file = "LICENSE"} dependencies = [ "aiohttp", diff --git a/web/comfyui/usage_stats.js b/web/comfyui/usage_stats.js index 97fcda74..aa77aef7 100644 --- a/web/comfyui/usage_stats.js +++ b/web/comfyui/usage_stats.js @@ -17,7 +17,6 @@ app.registerExtension({ async updateUsageStats(promptId) { try { - console.log("Updating usage statistics for prompt ID:", promptId); // Call backend endpoint with the prompt_id const response = await fetch(`/loras/api/update-usage-stats`, { method: 'POST',