Skip to content

Commit f7b3b0d

Browse files
authored
Merge pull request LykosAI#1053 from ionite34/mega-chagenlog
mega chagenlog
2 parents fd010be + e0b428f commit f7b3b0d

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

CHANGELOG.md

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,93 @@ All notable changes to Stability Matrix will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
77

8+
## v2.14.0
9+
### Added
10+
#### New Packages & Integrations
11+
- Added new package - [Stable Diffusion WebUI AMDGPU Forge](https://github.com/lshqqytiger/stable-diffusion-webui-amdgpu-forge)
12+
- Added new package - [Stable Diffusion WebUI Forge - Classic](https://github.com/Haoming02/sd-webui-forge-classic)
13+
- Added new Package Command (in the 3-dots menu) for installing Triton & SageAttention in ComfyUI
14+
#### Inference Features
15+
- Added Prompt Amplifier to Inference - click the magic wand 🪄 in the prompt editor to expand and enrich your ideas. Tailor the vibe with the ‘Feel’ selector and watch as your generations come to life with extra detail, coherence, and flair!
16+
- Added support for HiDream in Inference - see [ComfyUI Examples](https://comfyanonymous.github.io/ComfyUI_examples/hidream/) for more details
17+
- Added toggle for filtering Inference Extra Networks by base model
18+
- Added Rescale CFG addon to Inference
19+
- Added Swap Dimensions button between the width/height input in Inference
20+
- Added Ctrl+Tab/Ctrl+Shift+Tab shortcuts for navigating between Inference tabs
21+
- Added Align Your Steps scheduler to Inference
22+
- Added wildcards to Inference prompts, e.g. `{blue|green|red}` will randomly select one of the colors
23+
- Added Wan 2.1 Text to Video and Text to Image project types for Inference
24+
- Added new autocomplete tag source to Inference - [Danbooru/e621 merged tags](https://civitai.com/models/950325?modelVersionId=1419692)
25+
- Added Abstract Syntax Tree (AST) parsing for Inference prompts. This provides a more robust internal understanding of prompt structure, paving the way for future enhancements.
26+
- Added hotkey (`Ctrl+Up`/`Ctrl+Down`) in Inference prompt editors to adjust the weight emphasis of the token under the caret or the currently selected text.
27+
- This automatically wraps the token/selection in parentheses `()` if it's not already weighted.
28+
- It modifies existing weights within parentheses or adds weights if none exist (e.g. `(word:1.1)`).
29+
- Handles selection spanning multiple tokens intelligently.
30+
- Added Plasma Noise addon to Inference for text to image workflows
31+
#### Model Management & Discovery
32+
- Added Accelerated Model Discovery (Beta) (⚡ icon in Civitai Browser) for Insider+ supporters. Utilizes an optimized connection for dramatically faster, more responsive browsing of online model repositories.
33+
- Added OpenModelDB tab to the Model Browser
34+
- Added Wan 2.1 files to the HuggingFace model browser
35+
#### User Interface & Experience (UI/UX)
36+
- Added Undo/Redo commands to text editor context menus
37+
#### Internal / Developer Changes
38+
- (Internal) Introduced unified strategy pattern (`IConfigSharingStrategy`) to for handling different config file formats (JSON, YAML, FDS).
39+
- Added support for configuring nested paths in JSON and YAML files (e.g. `paths.models.vae`) via dot-notation in `SharedFolderLayoutRule.ConfigDocumentPaths`.
40+
- Packages can now use the `SharedFolderLayout` property to define a `ConfigFileType` and `ConfigSharingOptions` (like `RootKey`), without needing to implement custom configuration logic.
41+
42+
### Changed
43+
#### Inference Features
44+
- Improved the quality of Inference inpainting by upgrading the workflow behind the scenes. The workflow remains the same for you — just better results!
45+
- FaceDetailers in Inference will now inherit the primary sampler/scheduler/etc. by default. You can still manually set these by enabling the options via the ⚙️ button on the FaceDetailer card
46+
- Slightly rearranged the FaceDetailer card layout due to the above change
47+
- Inference "Extra Networks" selector now filters extra networks based on the selected base model
48+
- Merged Inference GGUF workflows into the UNet model loader option (no longer need to choose GGUF separately)
49+
#### Model Management & Discovery
50+
- Changed the names of some of the shared model folders to better reflect their contents
51+
- Improved Checkpoint Manager memory usage (thanks to @FireGeek for the profiling assistance!)
52+
- Performance optimizations for Checkpoint Manager (progress indicators now fully uses Compiled Bindings)
53+
#### Package Management & Compatibility
54+
- Upgraded HIP SDK installs to 6.2.4 for ComfyUI-Zluda and AMDGPU-Forge
55+
- Updated install for kohya_ss to support RTX 5000-series GPUs
56+
#### User Interface & Experience (UI/UX)
57+
- Improved window state handling
58+
- Updated some date strings to take into account the user's locale
59+
#### Localization
60+
- Updated Japanese, Brazilian Portuguese, Chinese, and Russian translations
61+
#### Internal / Developer Changes
62+
- (Internal) Upgraded FluentAvalonia to 2.3.0
63+
- (Internal) Refactored configuration-based shared folder logic: Centralized handling into `SharedFoldersConfigHelper` and format-specific strategies, removing custom file I/O logic from individual package classes for improved consistency and maintainability.
64+
- Migrated packages ComfyUI (incl. Zluda), VladAutomatic (SD.Next), Sdfx, and StableSwarm to use the unified system for configuration and symlink based sharing.
65+
66+
### Fixed
67+
#### Installation, Compatibility & Core Functionality
68+
- Fixed RTX 5000-series GPU detection in certain cases
69+
- Fixed Package Updates and Change Version not using stored PyTorch index and instead using the default recommended index.
70+
- Fixed ComfyUI-Zluda not being recognized as an option for Inference or SwarmUI (for real this time)
71+
- Fixed errors from invalid pip specifiers in requirements files
72+
#### User Interface & Experience (UI/UX)
73+
- Fixed Image Viewer animation loader keeping file handles open, which resolves 2 different issues (OSes are fun):
74+
- (macOS) Fixed `FileNotFoundException` crash when navigating to Inference tab after deleting a Webp animation file previously opened in the Image Viewer Dialog.
75+
- (Windows) Fixed Webp animation files unable to be deleted without closing the app first.
76+
- Fixed Image Viewer `FileNotFoundException` on fetching image size, if navigating to a deleted image file.
77+
- (macOS) Fixed Webp / Gif animations RGB colors flipped.
78+
- Fixed window disappearing on macOS when the saved window size is very small
79+
- Fixed large white boxes appearing when tooltips are visible on macOS/Linux
80+
- Fixed package images sometimes showing as blank due to concurrent image caching. Requests to same image resources are now de-duplicated
81+
- Reduced memory usage from `ShowDisabledTooltipExtension`
82+
#### Inference & Workflows
83+
- Fixed some cases of missing custom nodes in SwarmUI
84+
- Fixed Inference ControlNet Preprocessors using incorrect resolution and increased maximum of smallest dimension to 16384
85+
- Fixed Inference Extra Networks card not allowing for more than one model at a time
86+
#### Model Management & Discovery
87+
- Fixed missing base model options in the Metadata Editor
88+
- Fixed some crashes when using Accelerated Model Discovery
89+
### Supporters
90+
#### Visionaries
91+
Our heartfelt gratitude goes out to our amazing Visionary-tier Patrons: **Waterclouds**, **Corey T**, **bluepopsicle**, **Bob S**, **Akiro_Senkai**, and **Ibixat**! Your exceptional support is fundamental to the ongoing development and success of Stability Matrix. We are immensely grateful for your partnership and belief in the project! 🙏
92+
#### Pioneers
93+
We also want to give a huge thank you to our dedicated Pioneer-tier Patrons: **tankfox**, **Mr. Unknown**, **Szir777**, **Tigon**, **NowFallenAngel**, **Al Gorithm**, and welcome to our newest Pioneer, **Noah M.**! Your consistent support and enthusiasm keep the momentum going. Thank you all for being such an important part of our community! ✨
94+
895
## v2.14.0-pre.2
996
### Added
1097
- Added new package - [Stable Diffusion WebUI Forge - Classic](https://github.com/Haoming02/sd-webui-forge-classic)

0 commit comments

Comments
 (0)