Rename kvirc 'qt' sound system if found in the configuration. This relates to TDE/kvirc #22

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/454/head
Michele Calgaro 4 months ago
parent dc9ec2711b
commit ac73f2aeb1
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -3,7 +3,7 @@
# A script to perform R14.0.0 XDG compliance updates.
SCRIPT_NAME="$(basename -- "$0")"
SCRIPT_VERSION=202307100
SCRIPT_VERSION=202402210
# This script should be needed to run only once, but corner cases
# and file/directory permissions could cause incomplete updates.
@ -1026,6 +1026,17 @@ if [ "$R14_VERSION" -lt "202307100" ]; then
Log " Renamed twin3_ to twin_ in theme files"
fi
# Rename kvirc "qt" sound system if found
if [ "$R14_VERSION" -lt "202402210" ]; then
KVIRC_CFG_DIR=`grep LocalKvircDirectory "${PROFILE_DIR}/share/config/kvircrc" | sed "s/LocalKvircDirectory=//"`
if [ ! -z "${KVIRC_CFG_DIR}" ]; then
find "${KVIRC_CFG_DIR}/" -type f -iname "main.kvc" -print0 2>/dev/null | \
xargs -r0 sed -ri "s|stringSoundSystem=qt|stringSoundSystem=tqt|g"
Log " Renamed kvirc sound system"
fi
unset KVIRC_CFG_DIR
fi
# Perform some nominal update validations.
# First clean house from any previous failures.
if [ "$CACHE_DIR" = "" ]; then

Loading…
Cancel
Save