# HG changeset patch # User js # Date 1179522105 25200 # Node ID 37e46a06a8d493b28237fd21746025819ac7babe # Parent 79c75896893a24a1c378e4ee0dce6455bc611b65 [svn] Moved migrate_config.sh to contrib. diff -r 79c75896893a -r 37e46a06a8d4 ChangeLog --- a/ChangeLog Thu May 17 19:47:56 2007 -0700 +++ b/ChangeLog Fri May 18 14:01:45 2007 -0700 @@ -1,3 +1,15 @@ +2007-05-18 02:47:56 +0000 William Pitcock + revision [4584] + Entirely rework the default skin from scratch. A comparison is available + at http://mail.atheme.org/~nenolod/new_and_old_skins.png. The rationale + of this rework is that the old skin had become a hodgepodge of multiple + styles during 1.3 development, etcetera. There are some minor tweaks + that could still be done, I will take care of those in the next + few commits. + + 0 files changed + + 2007-05-17 08:59:45 +0000 William Pitcock revision [4582] - drop no-longer-used libaudacious C++ bindings diff -r 79c75896893a -r 37e46a06a8d4 contrib/migrate_config.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contrib/migrate_config.sh Fri May 18 14:01:45 2007 -0700 @@ -0,0 +1,28 @@ +#!/bin/sh +# +# This script is used to convert the old $HOME/.audacious config dir +# to the new XDG basedir equivalent. +# + +: ${BMP_RCPATH:=".audacious"} +: ${XDG_CONFIG_HOME:="$HOME/.config"} +: ${XDG_DATA_HOME:="$HOME/.local/share"} +: ${XDG_CACHE_HOME:="$HOME/.cache"} + +rm -fr "$XDG_CONFIG_HOME/audacious" +rm -fr "$XDG_DATA_HOME/audacious" +rm -fr "$XDG_CACHE_HOME/audacious" + +mkdir -p "$XDG_CONFIG_HOME/audacious" +mkdir -p "$XDG_DATA_HOME/audacious/Plugins" +mkdir -p "$XDG_DATA_HOME/audacious/Skins" +mkdir -p "$XDG_CACHE_HOME/audacious/thumbs" + +mv "$HOME/$BMP_RCPATH/config" "$XDG_CONFIG_HOME/audacious/" +mv "$HOME/$BMP_RCPATH/playlist.xspf" "$XDG_CONFIG_HOME/audacious/" +mv "$HOME/$BMP_RCPATH/Plugins" "$XDG_DATA_HOME/audacious/" +mv "$HOME/$BMP_RCPATH/Skins" "$XDG_DATA_HOME/audacious/" +mv "$HOME/$BMP_RCPATH/accels" "$XDG_CONFIG_HOME/audacious/" +mv "$HOME/$BMP_RCPATH/log" "$XDG_CONFIG_HOME/audacious/" + +echo "Conversion done. Please move the remaining files manually." diff -r 79c75896893a -r 37e46a06a8d4 migrate_config.sh --- a/migrate_config.sh Thu May 17 19:47:56 2007 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -#!/bin/sh -# -# This script is used to convert the old $HOME/.audacious config dir -# to the new XDG basedir equivalent. -# - -: ${BMP_RCPATH:=".audacious"} -: ${XDG_CONFIG_HOME:="$HOME/.config"} -: ${XDG_DATA_HOME:="$HOME/.local/share"} -: ${XDG_CACHE_HOME:="$HOME/.cache"} - -rm -fr "$XDG_CONFIG_HOME/audacious" -rm -fr "$XDG_DATA_HOME/audacious" -rm -fr "$XDG_CACHE_HOME/audacious" - -mkdir -p "$XDG_CONFIG_HOME/audacious" -mkdir -p "$XDG_DATA_HOME/audacious/Plugins" -mkdir -p "$XDG_DATA_HOME/audacious/Skins" -mkdir -p "$XDG_CACHE_HOME/audacious/thumbs" - -mv "$HOME/$BMP_RCPATH/config" "$XDG_CONFIG_HOME/audacious/" -mv "$HOME/$BMP_RCPATH/playlist.xspf" "$XDG_CONFIG_HOME/audacious/" -mv "$HOME/$BMP_RCPATH/Plugins" "$XDG_DATA_HOME/audacious/" -mv "$HOME/$BMP_RCPATH/Skins" "$XDG_DATA_HOME/audacious/" -mv "$HOME/$BMP_RCPATH/accels" "$XDG_CONFIG_HOME/audacious/" -mv "$HOME/$BMP_RCPATH/log" "$XDG_CONFIG_HOME/audacious/" - -echo "Conversion done. Please move the remaining files manually." diff -r 79c75896893a -r 37e46a06a8d4 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Thu May 17 19:47:56 2007 -0700 +++ b/src/audacious/build_stamp.c Fri May 18 14:01:45 2007 -0700 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070517-4582"; +const gchar *svn_stamp = "20070518-4584";