2023-05-27 20:10:10 +02:00
|
|
|
post_upgrade() {
|
2024-01-04 22:47:25 +01:00
|
|
|
# return if old package version is greater than or equal to 0.0.39-2...
|
2024-01-04 15:07:13 +01:00
|
|
|
(( $(vercmp $2 '0.0.39-2') >= 0 )) && return
|
|
|
|
|
|
|
|
cat <<EOF
|
|
|
|
==> In order to patch Krisp noise suppression support set 'PATCH_KRISP=true'
|
|
|
|
in '~/.config/discord.conf' in addition to having 'rizin' installed.
|
|
|
|
EOF
|
|
|
|
|
2023-06-02 21:52:11 +02:00
|
|
|
# return if old package version is greater than or equal to 0.0.27-5...
|
|
|
|
(( $(vercmp $2 '0.0.27-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
|
2023-07-03 22:56:16 +02:00
|
|
|
to apply the patch.
|
2023-06-02 21:52:11 +02:00
|
|
|
EOF
|
|
|
|
|
2023-05-27 20:10:10 +02:00
|
|
|
# return if old package version is greater than or equal to 0.0.27-2...
|
|
|
|
(( $(vercmp $2 '0.0.27-2') >= 0 )) && return
|
|
|
|
|
|
|
|
cat <<EOF
|
2023-07-03 22:56:16 +02:00
|
|
|
==> You can now set additional Electron flags in '~/.config/discord-flags.conf'.
|
2023-05-27 20:10:10 +02:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
post_install() {
|
|
|
|
cat <<EOF
|
2024-01-04 15:07:13 +01:00
|
|
|
==> For Krisp noise suppression support consider installing 'rizin' and
|
|
|
|
setting 'PATCH_KRISP=true' in '~/.config/discord.conf'. Restart your
|
|
|
|
Discord client afterwards to apply the patch.
|
|
|
|
==> In case of performance problems consider setting additional flags
|
|
|
|
in '~/.config/discord-flags.conf'.
|
2023-05-27 20:10:10 +02:00
|
|
|
EOF
|
|
|
|
}
|