diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-02 02:57:50 -0600 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2014-02-02 02:57:50 -0600 |
commit | e725197d944a48f55c584edc52701b3adfbd9fd7 (patch) | |
tree | 9e51d5aad3a3fb60225c8e25d6c6308cc2a8cb16 | |
parent | f7e7a694fcd127d1fdc6dc0d46d0f15dd4d76519 (diff) | |
download | tdebase-e725197d944a48f55c584edc52701b3adfbd9fd7.tar.gz tdebase-e725197d944a48f55c584edc52701b3adfbd9fd7.zip |
Minor fixes to r14-xdg-update in quanta plugins.rc file.
-rw-r--r-- | r14-xdg-update | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/r14-xdg-update b/r14-xdg-update index 86ecb7c78..65f83ea18 100644 --- a/r14-xdg-update +++ b/r14-xdg-update @@ -3,7 +3,7 @@ # A script to perform R14.0.0 XDG compliance updates. SCRIPT_NAME="`basename \`readlink -f $0\``" -SCRIPT_VERSION=201401150 +SCRIPT_VERSION=201402020 # This script should be needed to run only once, but corner cases # and file/directory permissions could cause incomplete updates. @@ -530,12 +530,13 @@ if [ "$R14_VERSION" -lt "201309150" ]; then fi fi -if [ "$R14_VERSION" -lt "201401150" ]; then +if [ "$R14_VERSION" -lt "201402020" ]; then Log "Updating Quanta Plus plugins.rc." if [ -r $PROFILE_DIR/share/apps/quanta/plugins.rc ]; then sed -i 's|FileName=kde3|FileName=trinity|g' "$PROFILE_DIR/share/apps/quanta/plugins.rc" 2>/dev/null + sed -i 's|FileName=kdemod3|FileName=trinity|g' "$PROFILE_DIR/share/apps/quanta/plugins.rc" 2>/dev/null sed -i 's|KFileReplace|TDEFileReplace|g' "$PROFILE_DIR/share/apps/quanta/plugins.rc" 2>/dev/null - sed -i 's|libkfilereplace|libtdefilereplace|g' "$PROFILE_DIR/share/apps/quanta/plugins.rc" 2>/dev/null + sed -i 's|kfilereplace|tdefilereplace|g' "$PROFILE_DIR/share/apps/quanta/plugins.rc" 2>/dev/null else Log "Quanta Plus plugins.rc does not exist." fi |