# HG changeset patch # User nenolod # Date 1172393599 28800 # Node ID 40407b7363f30c20ea70da56dab118ebebff55d5 # Parent a04777621ca68ff2cf168db4bd92917ba7dfa8db [svn] - enforce playback stop when clearing the playlist to load new files in. closes #808. diff -r a04777621ca6 -r 40407b7363f3 ChangeLog --- 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 + revision [4156] + - update documentation + + trunk/NEWS | 42 +++++++++++++++++++++++++++++++++++++++++- + 1 file changed, 41 insertions(+), 1 deletion(-) + + 2007-02-25 08:31:25 +0000 William Pitcock revision [4154] - bump libaudacious API revision. this will make 1.2 plugins binary diff -r a04777621ca6 -r 40407b7363f3 src/audacious/build_stamp.c --- 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 -const gchar *svn_stamp = "20070225-4154"; +const gchar *svn_stamp = "20070225-4156"; diff -r a04777621ca6 -r 40407b7363f3 src/audacious/main.c --- 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);