Package Details: stabilitymatrix 2.14.2-1

Git Clone URL: https://aur.archlinux.org/stabilitymatrix.git (read-only, click to copy)
Package Base: stabilitymatrix
Description: Multi-Platform Package Manager for Stable Diffusion
Upstream URL: https://github.com/LykosAI/StabilityMatrix
Keywords: ai image-generation stable-diffusion
Licenses: AGPL3
Submitter: let
Maintainer: let
Last Packager: let
Votes: 8
Popularity: 1.56
First Submitted: 2024-04-06 23:53 (UTC)
Last Updated: 2025-05-31 09:18 (UTC)

Latest Comments

1 2 Next › Last »

codericcardo commented on 2025-07-21 13:13 (UTC)

Hi! I've prepared an update for stabilitymatrix to version 2.14.3, just released on GitHub.

Changes:
  • Updated pkgver to 2.14.3
  • Updated source tag to v2.14.3
  • Removed obsolete dotnet-sdk-8.0 from makedepends
  • Now using only dotnet-sdk (targeting .NET 9.0)

Build tested locally and working fine. Here's the patch:

From db691356434c449afe42a78a2081afd02bf43c60 Mon Sep 17 00:00:00 2001
From: riccardomorabito <codericcardo@gmail.com>
Date: Mon, 21 Jul 2025 14:53:00 +0200
Subject: [PATCH] Update to version 2.14.3

- Updated pkgver to 2.14.3
- Simplified makedepends to use dotnet-sdk (now .NET 9.0)
- Removed obsolete dotnet-sdk-8.0 dependency
- Updated source to use v2.14.3 tag
---
 .SRCINFO | 5 ++---
 PKGBUILD | 4 ++--
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/.SRCINFO b/.SRCINFO
index 2952074..1cc9f90 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,18 +1,17 @@
 pkgbase = stabilitymatrix
    pkgdesc = Multi-Platform Package Manager for Stable Diffusion
-   pkgver = 2.14.2
+   pkgver = 2.14.3
    pkgrel = 1
    url = https://github.com/LykosAI/StabilityMatrix
    arch = any
    license = AGPL3
    makedepends = dotnet-sdk
-   makedepends = dotnet-sdk-8.0
    depends = dotnet-runtime
    depends = libxcrypt-compat
    options = !strip
    source = zone.lykos.stabilitymatrix.png
    source = zone.lykos.stabilitymatrix.desktop
-   source = git+https://github.com/LykosAI/StabilityMatrix#tag=v2.14.2
+   source = git+https://github.com/LykosAI/StabilityMatrix#tag=v2.14.3
    sha256sums = 0c32dcd560dfadae6c8cc1486fba1227e9cf93a55e3ba262571e83052e1bf22e
    sha256sums = d849617e6ade85b61f955d05d176f3ce07af0abb0532f554c4f73c19011ba0af
    sha256sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 0322cb2..456c675 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,8 +1,9 @@
 # Maintainer: let <let@notlet.dev>
+# Contributor: Riccardo Morabito <codericcardo@gmail.com>
 # Please note that this is my first AUR package ever, let me know if I made any mistakes or you have any improvements.

 pkgname=stabilitymatrix
-pkgver=2.14.2
+pkgver=2.14.3
 pkgrel=1
 pkgdesc='Multi-Platform Package Manager for Stable Diffusion'
 arch=('any')
@@ -12,7 +13,6 @@ license=('AGPL3')
 depends=('dotnet-runtime' 'libxcrypt-compat')
 makedepends=(
     'dotnet-sdk'
-    'dotnet-sdk-8.0' # Needed for Husky to work
 )

 options=('!strip')
-- 
2.50.1

Happy to help!

let commented on 2025-05-16 10:14 (UTC)

Something is weird with release 2.14.1, seems like it has been deleted? Will roll back to 2.14.0 for now.

ChrisLane commented on 2025-05-15 08:39 (UTC)

Invalid reference error when building the new version:

==> Making package: stabilitymatrix 2.14.1-1 (Thu 15 May 2025 09:37:08 BST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found zone.lykos.stabilitymatrix.png
  -> Found zone.lykos.stabilitymatrix.desktop
  -> Updating StabilityMatrix git repo...
==> Validating source files with sha256sums...
    zone.lykos.stabilitymatrix.png ... Passed
    zone.lykos.stabilitymatrix.desktop ... Passed
    StabilityMatrix ... Skipped
==> Removing existing $srcdir/ directory...
==> Extracting sources...
  -> Creating working copy of StabilityMatrix git repo...
Cloning into 'StabilityMatrix'...
done.
fatal: invalid reference: v2.14.1
==> ERROR: Failure while creating working copy of StabilityMatrix git repo
    Aborting...
 -> error making: stabilitymatrix-exit status 1

TheGreatAndyChow commented on 2025-04-26 16:23 (UTC)

The sha256sum in the script is no longer valid, the current hash is 6841af33ce7c33188e54d6f7d0491c8f38ba61159b9deeae77b0749663a02ce1

let commented on 2025-04-19 16:23 (UTC) (edited on 2025-04-19 16:24 (UTC) by let)

My apologies, I've been using Fedora Linux for a while, so I could not maintain and test this package properly. But now I'm back on Arch, so I'll be keeping it up it once again.

Also, thanks to @envolution for the suggestions. They have been implemented, and the package is better now.

envolution commented on 2025-01-11 01:03 (UTC)

i've made the below modifications on aur/stabilitymatrix-git as a reference

envolution commented on 2025-01-10 23:59 (UTC)

changing the following line in the desktop file fixed very slow loadup time for me:

Exec=sh -c 'cd /opt/stabilitymatrix && export APPIMAGE=/opt/stabilitymatrix/StabilityMatrix.Avalonia && /opt/stabilitymatrix/StabilityMatrix.Avalonia'

envolution commented on 2024-12-26 17:57 (UTC)

hi @let - here's a way for you to be able to clone the source tree through the sources array:

source=(
  'zone.lykos.stabilitymatrix.png'
  'zone.lykos.stabilitymatrix.desktop'
  "git+https://github.com/LykosAI/StabilityMatrix#tag=v${pkgver}"
)
sha256sums=('0c32dcd560dfadae6c8cc1486fba1227e9cf93a55e3ba262571e83052e1bf22e'
            '6907f3fc4dbf9140af924977c18460b24d220dab6c7871cdd3e8f4cd5a1e1635'
            '92599a03df399c219ccd9cb10a0758cb477522df37af14df94af14fe7f7f871e')

Also I don't think this compiles with the current available dotnet through primary sources since stabilitymatrix is requesting dotnet9 now:

Requested SDK version: 9.0.0
global.json file: /tmp/20241226124229_stabilitymatrix/stabilitymatrix/src/StabilityMatrix/global.json

Installed SDKs:
8.0.111 [/usr/share/dotnet/sdk]

Install the [9.0.0] .NET SDK or update [/tmp/20241226124229_stabilitymatrix/stabilitymatrix/src/StabilityMatrix/global.json] to match an installed SDK.

aur has dotnet9 packages in -bin format:

aur/dotnet-host-preview-bin                      9.0.0.sdk100-1
aur/dotnet-runtime-bin                           9.0.0.sdk101-1
aur/netstandard-targeting-pack-bin               9.0.0.sdk101-1
aur/dotnet-targeting-pack-bin                    9.0.0.sdk101-1
aur/dotnet-sdk-bin                               9.0.0.sdk101-1

You could use those in the makedepends array, though I haven't tested it personally

rufusreal commented on 2024-08-27 02:37 (UTC)

Can you update to the new version https://github.com/LykosAI/StabilityMatrix/releases/tag/v2.11.8, I prefer via AUR than the appimage.