You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+24-2
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,32 @@ All notable changes to Stability Matrix will be documented in this file.
4
4
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2.0.0.html).
7
+
8
+
## v2.13.4
9
+
### Added
10
+
- Added support for RTX 5000-series GPUs in ComfyUI, Forge, and reForge
11
+
- Added "Rebuild .NET Project" command to SwarmUI installs - available via the 3-dots menu -> Package Commands -> Rebuild .NET Project
12
+
### Changed
13
+
- Upgraded ComfyUI CUDA torch to 12.6
14
+
- Upgraded Lykos account connection to use OAuth 2.0 device flow
15
+
- (Internal) Updated Avalonia to 11.2.5
16
+
### Fixed
17
+
- Fixed [#1128](https://github.com/LykosAI/StabilityMatrix/issues/1128) - overwriting models when downloading multiple with the same name
18
+
- Fixed ROCm torch indexes for ComfyUI & Forge
19
+
- Fixed model browser sometimes downloading to `ModelsLora` or `ModelsStableDiffusion` folders instead of the correct folder
20
+
- Fixed incorrect Unet folder path for ComfyUI users on Linux/macOS
21
+
- Fixed [#1157](https://github.com/LykosAI/StabilityMatrix/issues/1157) - crash when broken symlinks exist in model directories
22
+
- Fixed [#1154](https://github.com/LykosAI/StabilityMatrix/issues/1154) - increased width for package name on the package cards
23
+
- Fixed ComfyUI-Zluda not being recognized as an option for Inference or SwarmUI
24
+
- Fixed SwarmUI showing Python options in the 3-dots menu
25
+
- Fixed SD.Next install failures in certain cases when using Zluda
26
+
### Supporters
27
+
#### Visionaries
28
+
- Huge thanks to our amazing Visionary-tier Patrons, **Waterclouds** and **Corey T**! We're truly grateful for your continued generosity and support!
29
+
#### Pioneers
30
+
- Special appreciation to our fantastic Pioneer-tier Patrons: **tankfox**, **Mr. Unknown**, **Szir777**, **Tigon**, **NowFallenAngel**, and our newest addition, **Al Gorithm**! Thank you all for your incredible commitment and ongoing encouragement!
7
31
8
32
## v2.13.3
9
-
### Added
10
-
- Added Safetensor Metadata viewer to the Checkpoint Manager context menu - thanks to @genteure!
11
33
### Changed
12
34
- "Remove symbolic links on shutdown" option now also removes links from Output Sharing
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+46-2
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,48 @@
1
-
# Stability Matrix Code Style Guidelines
1
+
# Building
2
+
## Running & Debug
3
+
- If building using managed IDEs like Rider or Visual Studio, ensure that a valid `--runtime ...` argument is being passed to `dotnet`, or `RuntimeIdentifier=...` is set for calling `msbuild`. This is required for runtime-specific resources to be included in the build. Stability Matrix currently supports building for the `win-x64`, `linux-x64` and `osx-arm64` runtimes.
4
+
- You can also build the `StabilityMatrix.Avalonia` project using `dotnet`:
- Note that on Windows, the `net8.0-windows10.0.17763.0` framework is used, build outputs will be in `StabilityMatrix.Avalonia/bin/Debug/net8.0-windows10.0.17763.0/win-x64`. On other platforms the `net8.0` framework is used.
9
+
10
+
## Building to single file for release
11
+
(Replace `$RELEASE_VERSION` with a non v-prefixed semver version number, e.g. `2.10.0`, `2.11.0-dev.1`, etc.)
- Building the `StabilityMatrix.Avalonia` project once should also install Husky.Net, or run the following command:
31
+
```bash
32
+
dotnet tool restore && dotnet husky install
33
+
```
34
+
## Adding Husky pre-commit hooks
35
+
```bash
36
+
dotnet husky install
37
+
```
38
+
## Generated OpenApi clients
39
+
- Refitter is used to generate some OpenApi clients. New clients should be added to `./.husky/task-runner.json`.
40
+
- To regenerate clients, run the following command:
41
+
```bash
42
+
dotnet husky run -g generate-openapi
43
+
```
44
+
45
+
# Style Guidelines
2
46
These are just guidelines, mostly following the official C# style guidelines, except in a few cases. We might not adhere to these 100% ourselves, but lets try our best :)
3
47
4
48
## Naming conventions
@@ -47,4 +91,4 @@ if (alreadyAteLunch)
47
91
- Mock data for XAML Designer should go in `DesignData\`
48
92
- The `Helper\` and `Services\` folder don't really have guidelines, use your best judgment
49
93
- XAML & JSON converters should go in the `Converters\` and `Converters\Json\` directories respectively
0 commit comments