# HG changeset patch # User nenolod # Date 1171812253 28800 # Node ID 9fe930a34683c4220f2c653a1107784a66b94f2d # Parent 610d85b8a22b4c45a0cf320d11fdb5a927111a1e [svn] - run gtk events while iterating through the playlist diff -r 610d85b8a22b -r 9fe930a34683 ChangeLog --- a/ChangeLog Sat Feb 17 19:59:01 2007 -0800 +++ b/ChangeLog Sun Feb 18 07:24:13 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-18 03:59:01 +0000 Yoshiki Yazawa + revision [4100] + - on loading a playlist with tuple, invoke the scanner thread only if mtime is -1. + + trunk/src/audacious/playlist.c | 23 ++++++++++++----------- + 1 file changed, 12 insertions(+), 11 deletions(-) + + 2007-02-18 00:59:39 +0000 William Pitcock revision [4098] - update chinese simplified translation -- diff -r 610d85b8a22b -r 9fe930a34683 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Sat Feb 17 19:59:01 2007 -0800 +++ b/src/audacious/build_stamp.c Sun Feb 18 07:24:13 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070218-4098"; +const gchar *svn_stamp = "20070218-4100"; diff -r 610d85b8a22b -r 9fe930a34683 src/audacious/ui_jumptotrack.c --- a/src/audacious/ui_jumptotrack.c Sat Feb 17 19:59:01 2007 -0800 +++ b/src/audacious/ui_jumptotrack.c Sun Feb 18 07:24:13 2007 -0800 @@ -341,12 +341,14 @@ PLAYLIST_LOCK(playlist->mutex); for (playlist_glist = playlist->entries; playlist_glist; - playlist_glist = g_list_next(playlist_glist)) { - + playlist_glist = g_list_next(playlist_glist)) + { PlaylistEntry *entry = PLAYLIST_ENTRY(playlist_glist->data); const gchar *title; gchar *filename = NULL; + g_main_context_iteration(g_main_context_default(), FALSE); + title = entry->title; if (!title) { filename = str_to_utf8(entry->filename);