# HG changeset patch # User yaz # Date 1171872988 28800 # Node ID 864c12eafb49512dc79f76ff2cad39f9c21d2352 # Parent ef59b072a5d2b3807163e63c750bf0a23dac714f [svn] - mtime should be initialized to -1, otherwise 0 will be recorded for not yet scanned entries. it means static and will suppress on-demand scanning. diff -r ef59b072a5d2 -r 864c12eafb49 ChangeLog --- a/ChangeLog Sun Feb 18 22:33:03 2007 -0800 +++ b/ChangeLog Mon Feb 19 00:16:28 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-19 06:33:03 +0000 Yoshiki Yazawa + revision [4108] + - update playlist->tail when an entry has been removed. + + trunk/src/audacious/playlist.c | 2 ++ + 1 file changed, 2 insertions(+) + + 2007-02-19 04:42:53 +0000 Yoshiki Yazawa revision [4106] - highly experimental code to speed up loading huge playlist. let me know if it breaks something. diff -r ef59b072a5d2 -r 864c12eafb49 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Sun Feb 18 22:33:03 2007 -0800 +++ b/src/audacious/build_stamp.c Mon Feb 19 00:16:28 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070219-4106"; +const gchar *svn_stamp = "20070219-4108"; diff -r ef59b072a5d2 -r 864c12eafb49 src/audacious/titlestring.c --- a/src/audacious/titlestring.c Sun Feb 18 22:33:03 2007 -0800 +++ b/src/audacious/titlestring.c Mon Feb 19 00:16:28 2007 -0800 @@ -53,6 +53,7 @@ input = g_new0(BmpTitleInput, 1); input->__size = XMMS_TITLEINPUT_SIZE; input->__version = XMMS_TITLEINPUT_VERSION; + input->mtime = -1; return input; }