File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed
StabilityMatrix.Avalonia/ViewModels/Dialogs
StabilityMatrix.Core/Models/Packages Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2
88## v2.13.0-pre.2
99### Added
1010- Added new package - [ ComfyUI-Zluda] ( https://github.com/patientx/ComfyUI-Zluda ) - for AMD GPU users on Windows
11- - Added OpenModelDB tab to the Model Browser
11+ - Added "StableDiffusion" folder as an option when downloading Flux models in the CivitAI model browser
12+ ### Changed
13+ - Updated pytorch index to ` rocm6.2 ` for AMD users of ComfyUI on Linux
1214
1315## v2.13.0-pre.1
1416### Added
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ node("Diligence") {
2929 }
3030
3131 stage(' Publish Windows' ) {
32- sh " dotnet publish ./StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj -c Release -o out -r win-x64 -p:PublishSingleFile=true -p:VersionPrefix=2.0.0 -p:VersionSuffix=${ version} -p:IncludeNativeLibrariesForSelfExtract=true"
32+ sh " dotnet publish ./StabilityMatrix.Avalonia/StabilityMatrix.Avalonia.csproj -c Release -o out -r win-x64 -p:PublishSingleFile=true -p:VersionPrefix=2.0.0 -p:VersionSuffix=${ version} -p:IncludeNativeLibrariesForSelfExtract=true -p:EnableWindowsTargeting=true "
3333 }
3434
3535 stage(' Publish Linux' ) {
Original file line number Diff line number Diff line change @@ -329,6 +329,15 @@ var directory in downloadDirectory.EnumerateDirectories(
329329 }
330330 }
331331
332+ if ( downloadDirectory . ToString ( ) . EndsWith ( "Unet" ) )
333+ {
334+ // also add StableDiffusion in case we have an AIO version
335+ var stableDiffusionDirectory = rootModelsDirectory . JoinDir (
336+ SharedFolderType . StableDiffusion . GetStringValue ( )
337+ ) ;
338+ installLocations . Add ( stableDiffusionDirectory . ToString ( ) . Replace ( rootModelsDirectory , "Models" ) ) ;
339+ }
340+
332341 installLocations . Add ( "Custom..." ) ;
333342
334343 AvailableInstallLocations = installLocations ;
Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ public override async Task InstallPackage(
220220 {
221221 TorchIndex . Cpu => "cpu" ,
222222 TorchIndex . Cuda => "cu124" ,
223- TorchIndex . Rocm => "rocm6.1 " ,
223+ TorchIndex . Rocm => "rocm6.2 " ,
224224 TorchIndex . Mps => "cpu" ,
225225 _
226226 => throw new ArgumentOutOfRangeException (
You can’t perform that action at this time.
0 commit comments