File tree Expand file tree Collapse file tree 5 files changed +426
-2
lines changed
StabilityMatrix.Avalonia/ViewModels/Inference Expand file tree Collapse file tree 5 files changed +426
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ All notable changes to Stability Matrix will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning 2.0] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## v2.15.5
9+ - Added new package - [ Wan2GP] ( https://github.com/deepbeepmeep/Wan2GP )
10+
811## v2.15.4
912### Changed
1013- Updated Early Access indicators in the Civitai Details page to be more visible
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ or NotifyCollectionChangedAction.Reset
105105 {
106106 if ( sources . Count == 0 )
107107 {
108- SelectedImageIndex = 0 ;
108+ SelectedImageIndex = - 1 ;
109109 }
110110 else if ( SelectedImageIndex == - 1 )
111111 {
@@ -159,7 +159,7 @@ private async Task FlyoutPreview(IImage? image)
159159 var viewerVm = vmFactory . Get < ImageViewerViewModel > ( ) ;
160160 viewerVm . ImageSource = new ImageSource ( ( Bitmap ) image ) ;
161161
162- var dialog = new BetterContentDialog { Content = new ImageViewerDialog { DataContext = viewerVm , } } ;
162+ var dialog = new BetterContentDialog { Content = new ImageViewerDialog { DataContext = viewerVm } } ;
163163
164164 await dialog . ShowAsync ( ) ;
165165 }
Original file line number Diff line number Diff line change @@ -236,6 +236,13 @@ public BasePackage GetNewBasePackage(InstalledPackage installedPackage)
236236 prerequisiteHelper ,
237237 pyInstallationManager
238238 ) ,
239+ "Wan2GP" => new Wan2GP (
240+ githubApiCache ,
241+ settingsManager ,
242+ downloadService ,
243+ prerequisiteHelper ,
244+ pyInstallationManager
245+ ) ,
239246 _ => throw new ArgumentOutOfRangeException ( nameof ( installedPackage ) ) ,
240247 } ;
241248 }
Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ public override async Task InstallPackage(
176176 [
177177 "https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip" ,
178178 ] ,
179+ PostInstallPipArgs = [ "numpy==1.26.4" ] ,
179180 } ;
180181
181182 await StandardPipInstallProcessAsync (
You can’t perform that action at this time.
0 commit comments