summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChewing_Bever2023-03-30 10:29:31 +0200
committerChewing_Bever2023-03-30 10:29:31 +0200
commitffbe4f3dd5b0a398b97e2da2552e1da2db5496f8 (patch)
treea8fec80b9681078bc21623d7866ca00310132319
parent5d7637aab5ba2f63ae52feae3d57e4bc240efccf (diff)
downloadaur-ffbe4f3dd5b0a398b97e2da2552e1da2db5496f8.tar.gz
Bump version to 2.2.6
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD10
2 files changed, 10 insertions, 8 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 139f680bc682..a90e3709d94a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = cinny-desktop
pkgdesc = Matrix client focusing primarily on a simple, elegant and secure interface.
- pkgver = 2.2.4
+ pkgver = 2.2.6
pkgrel = 1
url = https://cinny.in/
install = cinny-desktop.install
@@ -18,8 +18,8 @@ pkgbase = cinny-desktop
depends = libvips
depends = sqlite
depends = gst-plugins-good
- source = cinny-desktop-2.2.4.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v2.2.4/cinny-desktop-v2.2.4.zip
- sha256sums = eb02a466e6bb7c93419cbb3c78200e0d6a243ea91d137faa936e19e5c968dd22
- sha512sums = 7e10d56bb612f708109335a37cf598ada26d376ebf4009cb04283c00e4deec8ac8b22e3337b9d8e578289ebe846266d3fbb325cbde14136f3e81198778264d58
+ source = cinny-desktop-2.2.6.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v2.2.6/cinny-desktop-v2.2.6.zip
+ sha256sums = 88a8da1fbd80013768014fc78a5d1f94c2564ff14e3f0cf824ccc70a9545df85
+ sha512sums = 50789499839502586f3f647445f8ce3b4656d062016156e9b49ae30d0aa318fbcddffdf7087a302c092083fd5e965032b1d31e63be4f63a37ecf992daabb56f7
pkgname = cinny-desktop
diff --git a/PKGBUILD b/PKGBUILD
index 1154a036c1d5..df3e1449c45a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Jef Roosens
pkgname='cinny-desktop'
-pkgver='2.2.4'
+pkgver='2.2.6'
pkgrel='1'
pkgdesc='Matrix client focusing primarily on a simple, elegant and secure interface.'
arch=('x86_64')
@@ -25,8 +25,8 @@ makedepends=('rust' 'nodejs' 'npm')
# This makes sure dirty builds still pull down the newest version
source=("${pkgname}-${pkgver}.zip::https://github.com/cinnyapp/cinny-desktop/releases/download/v${pkgver}/cinny-desktop-v${pkgver}.zip")
-sha256sums=('eb02a466e6bb7c93419cbb3c78200e0d6a243ea91d137faa936e19e5c968dd22')
-sha512sums=('7e10d56bb612f708109335a37cf598ada26d376ebf4009cb04283c00e4deec8ac8b22e3337b9d8e578289ebe846266d3fbb325cbde14136f3e81198778264d58')
+sha256sums=('88a8da1fbd80013768014fc78a5d1f94c2564ff14e3f0cf824ccc70a9545df85')
+sha512sums=('50789499839502586f3f647445f8ce3b4656d062016156e9b49ae30d0aa318fbcddffdf7087a302c092083fd5e965032b1d31e63be4f63a37ecf992daabb56f7')
install="${pkgname}.install"
@@ -38,7 +38,9 @@ build() {
cd .. && npm ci
msg2 'Running Tauri build...'
- npm run tauri build -- --bundles 'deb'
+ # With the default memory limit, the build fails due to having insufficient
+ # memory available. 4GB seems to be enough for now.
+ NODE_OPTIONS=--max_old_space_size=4096 npm run tauri build -- --bundles 'deb'
}
package() {