# HG changeset patch # User giacomo # Date 1166482068 28800 # Node ID d0312301163fe16b1ba26771bcc77dc0061a2984 # Parent 0934eeabc0eda4d10358fbbf56511f6966cbe68f [svn] fixed bug #699 about playlist->queue with patch provided by bug reporter diff -r 0934eeabc0ed -r d0312301163f ChangeLog --- a/ChangeLog Mon Dec 18 14:01:29 2006 -0800 +++ b/ChangeLog Mon Dec 18 14:47:48 2006 -0800 @@ -1,3 +1,13 @@ +2006-12-18 22:01:29 +0000 Troels Bang Jensen + revision [3343] + Added subsampling and nonlinear transfer function to the voiceprint + visualizer. Also increased the intensity range. + + trunk/audacious/visualization.c | 10 +++++++--- + trunk/audacious/widgets/vis.c | 3 +-- + 2 files changed, 8 insertions(+), 5 deletions(-) + + 2006-12-18 21:11:23 +0000 Giacomo Lozito revision [3341] - allow user to choose a regex library between gnu (default), oniguruma, pcre (experimental); oniguruma and pcre support utf-8 encoding diff -r 0934eeabc0ed -r d0312301163f audacious/playlist.c --- a/audacious/playlist.c Mon Dec 18 14:01:29 2006 -0800 +++ b/audacious/playlist.c Mon Dec 18 14:47:48 2006 -0800 @@ -426,6 +426,7 @@ } playlist->shuffle = g_list_remove(playlist->shuffle, entry); + playlist->queue = g_list_remove(playlist->queue, entry); playlist->entries = g_list_remove_link(playlist->entries, node); playlist_entry_free(entry); g_list_free_1(node);