diff options
author | Xiao Pan <xyz@flylightning.xyz> | 2025-05-18 19:13:48 -0700 |
---|---|---|
committer | Xiao Pan <xyz@flylightning.xyz> | 2025-05-18 19:13:48 -0700 |
commit | 95e715aa7d676135e76f7f2441bd4125ee7b9dcb (patch) | |
tree | a1971e019a8f9437c558687f721c4f9aa04fcbdf | |
parent | 44b2bdb1746dde29481fd41f2c27bb3b493fadb6 (diff) |
zoomphonesms and zoomcontactcentercall new mime types added in 0.9.74-2
but I forgot to edit .install file post_upgrade() in 0.9.74-2, so I
edited post_upgrade() in 0.9.74-3 to make sure people upgraded to
0.9.74-2 but did not receive new mime types notice will receive one
-rw-r--r-- | zoom-firejail/.SRCINFO | 2 | ||||
-rw-r--r-- | zoom-firejail/PKGBUILD | 2 | ||||
-rw-r--r-- | zoom-firejail/zoom-firejail.install | 6 |
3 files changed, 7 insertions, 3 deletions
diff --git a/zoom-firejail/.SRCINFO b/zoom-firejail/.SRCINFO index 06469e9..4b4ab33 100644 --- a/zoom-firejail/.SRCINFO +++ b/zoom-firejail/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = zoom-firejail pkgdesc = Desktop entry for running Zoom in Firejail pkgver = 0.9.74 - pkgrel = 2 + pkgrel = 3 install = zoom-firejail.install arch = x86_64 license = MIT diff --git a/zoom-firejail/PKGBUILD b/zoom-firejail/PKGBUILD index 59865a6..c0fd5b5 100644 --- a/zoom-firejail/PKGBUILD +++ b/zoom-firejail/PKGBUILD @@ -3,7 +3,7 @@ pkgname=zoom-firejail pkgver=0.9.74 -pkgrel=2 +pkgrel=3 pkgdesc="Desktop entry for running Zoom in Firejail" arch=('x86_64') license=('MIT') diff --git a/zoom-firejail/zoom-firejail.install b/zoom-firejail/zoom-firejail.install index 8186a67..8ade56b 100644 --- a/zoom-firejail/zoom-firejail.install +++ b/zoom-firejail/zoom-firejail.install @@ -10,7 +10,11 @@ post_install() { post_upgrade() { # xdg-mime instructions added in 0.1.4 - if [ $(vercmp $2 0.1.3) -le 0 ]; then + # zoomphonesms and zoomcontactcentercall new mime types added in 0.9.74-2 + # but I forgot to edit post_upgrade() in 0.9.74-2, so I edited + # post_upgrade() in 0.9.74-3 to make sure people upgraded to 0.9.74-2 but + # did not receive new mime types notice will receive one + if [ $(vercmp $2 0.9.74-2) -le 0 ]; then post_install fi } |