feat: Update release notes and version to 0.8.8 with new features and bug fixes

This commit is contained in:
Will Miao
2025-04-22 13:29:00 +08:00
parent d389e4d5d4
commit dc4c11ddd2
3 changed files with 7 additions and 2 deletions

View File

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

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.7-bugfix2"
version = "0.8.8"
license = {file = "LICENSE"}
dependencies = [
"aiohttp",

View File

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