Mercurial > audlegacy
changeset 2574:40407b7363f3 trunk
[svn] - enforce playback stop when clearing the playlist to load new files in. closes #808.
author | nenolod |
---|---|
date | Sun, 25 Feb 2007 00:53:19 -0800 |
parents | a04777621ca6 |
children | 9713b5a67cba |
files | ChangeLog src/audacious/build_stamp.c src/audacious/main.c |
diffstat | 3 files changed, 12 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Feb 25 00:43:25 2007 -0800 +++ b/ChangeLog Sun Feb 25 00:53:19 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-25 08:43:25 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4156] + - update documentation + + trunk/NEWS | 42 +++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 41 insertions(+), 1 deletion(-) + + 2007-02-25 08:31:25 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4154] - bump libaudacious API revision. this will make 1.2 plugins binary
--- a/src/audacious/build_stamp.c Sun Feb 25 00:43:25 2007 -0800 +++ b/src/audacious/build_stamp.c Sun Feb 25 00:53:19 2007 -0800 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070225-4154"; +const gchar *svn_stamp = "20070225-4156";
--- a/src/audacious/main.c Sun Feb 25 00:43:25 2007 -0800 +++ b/src/audacious/main.c Sun Feb 25 00:53:19 2007 -0800 @@ -915,7 +915,10 @@ pos = xmms_remote_get_playlist_length(session); if (!options->enqueue) + { xmms_remote_playlist_clear(session); + xmms_remote_stop(session); + } xmms_remote_playlist_add_url_string(session, filename);