mirror of
https://github.com/willmiao/ComfyUI-Lora-Manager.git
synced 2026-03-21 21:22:11 -03:00
Update README and logs for version 0.7.0: Major features enhancement including CivitAI integration, new context menu, and improved model details.
This commit is contained in:
63
README.md
63
README.md
@@ -6,12 +6,20 @@ A web-based management interface designed to help you organize and manage your l
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## [Update 0.5.9] Enhanced Search Capabilities
|
## [Update 0.7.0] Major Features Enhancement
|
||||||
|
|
||||||
- 🔍 **Advanced Search Features**:
|
- 🚀 **Direct CivitAI Integration**:
|
||||||
- Implemented fuzzy search for more flexible model finding
|
- Download LoRAs directly from CivitAI URLs
|
||||||
- Added recursive search toggle functionality
|
- Version selection support for model downloads
|
||||||
- Support for searching in current folder only or all subfolders
|
- Choose target folder for downloads
|
||||||
|
- 📋 **New Context Menu Features**:
|
||||||
|
- Right-click menu for quick actions
|
||||||
|
- Force refresh CivitAI data
|
||||||
|
- Move LoRAs between folders
|
||||||
|
- 📝 **Enhanced Model Details**:
|
||||||
|
- Save personal usage tips
|
||||||
|
- Add custom notes for each LoRA
|
||||||
|
- Improved performance for details window
|
||||||
|
|
||||||
[View Update History](./update_logs.md)
|
[View Update History](./update_logs.md)
|
||||||
|
|
||||||
@@ -24,20 +32,22 @@ A web-based management interface designed to help you organize and manage your l
|
|||||||
- Smooth scrolling through large collections
|
- Smooth scrolling through large collections
|
||||||
- Real-time updates when files change
|
- Real-time updates when files change
|
||||||
|
|
||||||
- 📂 **Easy Organization**
|
- 📂 **Advanced Organization**
|
||||||
- Quick search to find models
|
- Quick search with fuzzy matching
|
||||||
- Folder-based categorization
|
- Folder-based categorization
|
||||||
|
- Move LoRAs between folders
|
||||||
- Sort by name or date
|
- Sort by name or date
|
||||||
|
|
||||||
- 🌐 **Rich Model Details**
|
- 🌐 **Rich Model Integration**
|
||||||
|
- Direct download from CivitAI
|
||||||
- Preview images and videos
|
- Preview images and videos
|
||||||
- Model descriptions from CivitAI
|
- Model descriptions and version selection
|
||||||
- Trigger words at a glance
|
- Trigger words at a glance
|
||||||
|
|
||||||
- 💻 **User Friendly**
|
- 💻 **User Friendly**
|
||||||
- One-click access from ComfyUI menu
|
- One-click access from ComfyUI menu
|
||||||
- Copy model names with single click
|
- Context menu for quick actions
|
||||||
- Customizable light/dark theme
|
- Custom notes and usage tips
|
||||||
- Multi-folder support
|
- Multi-folder support
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -61,12 +71,15 @@ pip install requirements.txt
|
|||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
1. Once installed, access the LoRA manager at [http://localhost:8188/loras](http://localhost:8188/loras).
|
1. There are two ways to access the LoRA manager:
|
||||||
|
- Click the "Launch LoRA Manager" button in the ComfyUI menu
|
||||||
|
- Visit http://localhost:8188/loras directly
|
||||||
2. From the interface, you can:
|
2. From the interface, you can:
|
||||||
- Browse and organize your LoRA models.
|
- Browse and organize your LoRA models
|
||||||
- Automatically fetch or manually set preview images.
|
- Download models directly from CivitAI
|
||||||
- View and copy trigger words associated with each LoRA.
|
- Automatically fetch or manually set preview images
|
||||||
- Toggle between light and dark themes.
|
- View and copy trigger words associated with each LoRA
|
||||||
|
- Add personal notes and usage tips
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -74,3 +87,21 @@ pip install requirements.txt
|
|||||||
|
|
||||||
If you have suggestions, bug reports, or improvements, feel free to open an issue or contribute directly to the codebase. Pull requests are always welcome!
|
If you have suggestions, bug reports, or improvements, feel free to open an issue or contribute directly to the codebase. Pull requests are always welcome!
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## ☕ Support
|
||||||
|
|
||||||
|
If you find this project helpful, consider supporting its development:
|
||||||
|
|
||||||
|
[](https://ko-fi.com/pixelpawsai)
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🗺️ Roadmap
|
||||||
|
|
||||||
|
- 🔄 One-click integration of LoRAs into ComfyUI workflows with preset strength values
|
||||||
|
- 🤝 Improved usage tips retrieval from CivitAI model pages
|
||||||
|
- 🔌 Integration with Power LoRA Loader and other management tools
|
||||||
|
- 🛡️ Configurable NSFW level settings for content filtering
|
||||||
|
|
||||||
|
---
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "comfyui-lora-manager"
|
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."
|
description = "LoRA Manager for ComfyUI - Access it at http://localhost:8188/loras for managing LoRA models with previews and metadata integration."
|
||||||
version = "0.5.9"
|
version = "0.7.0"
|
||||||
license = {file = "LICENSE"}
|
license = {file = "LICENSE"}
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiohttp",
|
"aiohttp",
|
||||||
|
|||||||
@@ -1,5 +1,16 @@
|
|||||||
# Update History
|
# Update History
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## [Update 0.5.9] Enhanced Search Capabilities
|
||||||
|
|
||||||
|
- 🔍 **Advanced Search Features**:
|
||||||
|
- Implemented fuzzy search for more flexible model finding
|
||||||
|
- Added recursive search toggle functionality
|
||||||
|
- Support for searching in current folder only or all subfolders
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## [Update 0.5.8] UI Enhancements & Navigation Improvements
|
## [Update 0.5.8] UI Enhancements & Navigation Improvements
|
||||||
|
|
||||||
- ✨ **Enhanced Navigation**:
|
- ✨ **Enhanced Navigation**:
|
||||||
|
|||||||
Reference in New Issue
Block a user