By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2127
Collapse All | Expand All

(-)a/r14-xdg-update (-1 / +9 lines)
Lines 3-9 Link Here
3
# A script to perform R14.0.0 XDG compliance updates.
3
# A script to perform R14.0.0 XDG compliance updates.
4
4
5
SCRIPT_NAME="`basename \`readlink -f $0\``"
5
SCRIPT_NAME="`basename \`readlink -f $0\``"
6
SCRIPT_VERSION=201407050
6
SCRIPT_VERSION=201410170
7
7
8
# This script should be needed to run only once, but corner cases
8
# This script should be needed to run only once, but corner cases
9
# and file/directory permissions could cause incomplete updates.
9
# and file/directory permissions could cause incomplete updates.
Lines 608-613 if [ "$R14_VERSION" -lt "201310050" ]; then Link Here
608
  fi
608
  fi
609
fi
609
fi
610
610
611
# Update TDENewStuff
612
if [ "$R14_VERSION" -lt "201410170" ]; then
613
  Log "Updating TDENewStuff providers and status."
614
  find "$PROFILE_DIR"/share/config -type f -print0 2>/dev/null | \
615
    xargs -r0 grep -ZIEl "^\[KNewStuff" | \
616
    xargs -r0 sed -i -e "/^\[KNewStuff/,/^\[|$/{" -e "s|^\[KNewStuff|[TDENewStuff|" -e "s|^ProvidersUrl=[^ ]*|ProvidersUrl=https://www.trinitydesktop.org/ocs/providers.xml|" -e "}"
617
fi
618
611
Log "Renaming some configuration files and directories."
619
Log "Renaming some configuration files and directories."
612
# Note: The only rebranding that occured before starting the R14 branch was krita. All other
620
# Note: The only rebranding that occured before starting the R14 branch was krita. All other
613
# rebranding updates belong in this script.
621
# rebranding updates belong in this script.

Return to bug 2127