File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
1919- Fixed Inference custom step (e.g. HiresFix) Samplers potentially sharing state with other card UIs like model browser.
2020- Fixed extension manager failing to install extensions due to incorrect clone directory
2121- Fixed duplicate Python versions appearing in the Advanced Options when installing a package
22- - Fixed [ #1360 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1360 ) - A1111 install not using correct torch for 5000-series GPUs
23- - Fixed [ #1361 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1361 ) - numpy and other Forge startup errors
24- - Fixed [ #1317 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1317 ) - Inference missing GGUF text encoders
25- - Fixed [ #1300 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1300 ) - Git errors when installing Extension Packs
22+ - Fixed [ #1254 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1254 ) - Unable to scroll samplers in Inference
2623- Fixed [ #1294 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1294 ) - Improper sorting of output folders in Output Browser
24+ - Fixed [ #1300 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1300 ) - Git errors when installing Extension Packs
25+ - Fixed [ #1317 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1317 ) - Inference missing GGUF text encoders
2726- Fixed [ #1324 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1324 ) - Window height slightly increasing every launch
27+ - Fixed [ #1360 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1360 ) - A1111 install not using correct torch for 5000-series GPUs
28+ - Fixed [ #1361 ] ( https://github.com/LykosAI/StabilityMatrix/issues/1361 ) - numpy and other Forge startup errors
2829
2930## v2.15.0-pre.1
3031### Added
Original file line number Diff line number Diff line change 5555 VerticalAlignment =" Center"
5656 IsVisible =" {Binding IsSchedulerSelectionEnabled}"
5757 Text =" {x:Static lang:Resources.Label_Scheduler}" />
58- <ui : FAComboBox
58+ <controls : BetterComboBox
5959 Grid.Row=" 1"
6060 Grid.Column=" 2"
6161 Margin =" 8,0,0,8"
Original file line number Diff line number Diff line change @@ -98,6 +98,15 @@ INotificationService notificationService
9898 AllPackagesCache . AddOrUpdate ( packageFactory . GetAllAvailablePackages ( ) ) ;
9999 }
100100
101+ public override void OnLoaded ( )
102+ {
103+ base . OnLoaded ( ) ;
104+ if ( ShownPackages . Count > 0 )
105+ return ;
106+
107+ ShowIncompatiblePackages = true ;
108+ }
109+
101110 [ RelayCommand ]
102111 private async Task InstallComfyForInference ( )
103112 {
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public partial class SelectDataDirectoryViewModel : ContentDialogViewModelBase
4646 private string dataDirectory = DefaultInstallLocation ;
4747
4848 [ ObservableProperty ]
49- private bool isPortableMode = Compat . IsLinux ;
49+ private bool isPortableMode ;
5050
5151 [ ObservableProperty ]
5252 private string directoryStatusText = string . Empty ;
@@ -73,7 +73,7 @@ public partial class SelectDataDirectoryViewModel : ContentDialogViewModelBase
7373 {
7474 State = ProgressState . Inactive ,
7575 SuccessToolTipText = ValidExistingDirectoryText ,
76- FailToolTipText = InvalidDirectoryText
76+ FailToolTipText = InvalidDirectoryText ,
7777 } ;
7878
7979 public SelectDataDirectoryViewModel ( ISettingsManager settingsManager )
@@ -85,6 +85,7 @@ public SelectDataDirectoryViewModel(ISettingsManager settingsManager)
8585 public override void OnLoaded ( )
8686 {
8787 ValidatorRefreshBadge . RefreshCommand . ExecuteAsync ( null ) . SafeFireAndForget ( ) ;
88+ IsPortableMode = true ;
8889 }
8990
9091 // Revalidate on data directory change
Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ public partial class MainWindowViewModel : ViewModelBase
7373 public UpdateViewModel UpdateViewModel { get ; init ; }
7474
7575 public double PaneWidth =>
76- Cultures . Current switch
76+ ( Compat . IsWindows ? 0 : 20 )
77+ + Cultures . Current switch
7778 {
7879 { Name : "it-IT" } => 250 ,
7980 { Name : "fr-FR" } => 250 ,
You can’t perform that action at this time.
0 commit comments