Skip to content

Commit 233eba2

Browse files
authored
Merge pull request #576 from ionite34/moar-backport
Moar backport
2 parents 8810e18 + 4393c01 commit 233eba2

22 files changed

+262
-241
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.9.2
9+
### Changed
10+
- Due to changes with the CivitAI API, you can no longer select a specific page in the CivitAI Model Browser
11+
- Due to the above API changes, new pages are now loaded via "infinite scrolling"
12+
### Fixed
13+
- Fixed models not being removed from the installed models cache when deleting them from the Checkpoints page
14+
- Fixed model download location options for VAEs in the CivitAI Model Browser
15+
- Fixed One-Click install progress dialog not disappearing after completion
16+
- Fixed ComfyUI with Inference pop-up during one-click install appearing below the visible scroll area
17+
- Fixed no packages being available for one-click install on PCs without a GPU
18+
- Fixed missing ratings on some models in the CivitAI Model Browser
19+
- Fixed missing favorite count in the CivitAI Model Browser
20+
- Fixed recommended models not showing all SDXL models
21+
822
## v2.9.1
923
### Added
1024
- Fixed [#498](https://github.com/LykosAI/StabilityMatrix/issues/498) Added "Pony" category to CivitAI Model Browser

StabilityMatrix.Avalonia/App.axaml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
xmlns:local="using:StabilityMatrix.Avalonia"
55
xmlns:idcr="using:Dock.Avalonia.Controls.Recycling"
66
xmlns:styling="clr-namespace:FluentAvalonia.Styling;assembly=FluentAvalonia"
7+
xmlns:controls="clr-namespace:Avalonia.Labs.Controls;assembly=Avalonia.Labs.Controls"
78
Name="Stability Matrix"
89
RequestedThemeVariant="Dark">
910
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
@@ -79,6 +80,7 @@
7980
<StyleInclude Source="Controls/Inference/FreeUCard.axaml"/>
8081
<StyleInclude Source="Controls/Inference/ControlNetCard.axaml"/>
8182
<StyleInclude Source="Controls/Inference/PromptExpansionCard.axaml"/>
83+
<controls:ControlThemes/>
8284

8385
<Style Selector="DockControl">
8486
<Setter Property="(DockProperties.ControlRecycling)" Value="{StaticResource ControlRecyclingKey}" />

StabilityMatrix.Avalonia/DesignData/DesignData.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,8 @@ public static void Initialize()
404404
new PackageInstallProgressItemViewModel(
405405
new PackageModificationRunner
406406
{
407-
CurrentProgress = new ProgressReport(0.5f, "Installing package...")
407+
CurrentProgress = new ProgressReport(0.5f, "Installing package..."),
408+
ModificationCompleteMessage = "Done"
408409
}
409410
)
410411
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System.Threading.Tasks;
2+
3+
namespace StabilityMatrix.Avalonia.Models;
4+
5+
public interface IInfinitelyScroll
6+
{
7+
Task LoadNextPageAsync();
8+
}

0 commit comments

Comments
 (0)