upgpkg: discord-electron-openasar 0.0.27+810-1

Update to latest OpenAsar commit
Unset not needed variables in launch script
Rewording install file text
This commit is contained in:
Manuel 2023-06-08 21:56:34 +02:00
parent 8689b4a782
commit 7ad0778608
Signed by: Manuel
GPG key ID: 4085037435E1F07A
4 changed files with 21 additions and 18 deletions

View file

@ -1,27 +1,25 @@
post_upgrade() {
# return if old package version is greater than or equal to 0.0.27-5...
# return if old package version is greater than or equal to 0.0.27+809-5...
(( $(vercmp $2 '0.0.27+809-5') >= 0 )) && return
cat <<EOF
==> The launch script will now patch Krisp noise suppression support
if 'rizin' is installed. Restart your Discord client after update
to apply the patch
to apply the patch.
EOF
# return if old package version is greater than or equal to 0.0.27+809-2...
(( $(vercmp $2 '0.0.27+809-2') >= 0 )) && return
cat <<EOF
==> You can now add or uncomment additional Electron flags in
'~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
==> You can now set additional Electron flags in '~/.config/discord-flags.conf'.
EOF
}
post_install() {
cat <<EOF
==> For Krisp noise suppression support consider installing 'rizin'. Restart
your Discord client after installation or update to apply the patch
==> In case of performance problems consider adding or uncommenting Electron
flags in '~/.config/discord-flags.conf' (if XDG_CONFIG_HOME is not set)
your Discord client after installation or update to apply the patch.
==> Additional Electron flags can be set in '~/.config/discord-flags.conf'.
EOF
}