# HG changeset patch # User yaz # Date 1156399745 25200 # Node ID ebc170f08767fafd2caeffa0fa37341398a02efc # Parent 15d92c51bde6d00e55810e5850c60097efef8703 [svn] - file_path should not contain file name. diff -r 15d92c51bde6 -r ebc170f08767 ChangeLog --- a/ChangeLog Wed Aug 23 07:46:33 2006 -0700 +++ b/ChangeLog Wed Aug 23 23:09:05 2006 -0700 @@ -1,3 +1,19 @@ +2006-08-23 14:46:33 +0000 Yoshiki Yazawa + revision [2099] + - modified time (mtime) has been introduced into tuple + - playlist makes use of mtime for scan control + - xspf records and reads mtime + + + Changes: Modified: + +19 -0 trunk/Plugins/Container/xspf/xspf.c + +1 -0 trunk/audacious/input.c + +58 -21 trunk/audacious/playlist.c + +4 -3 trunk/audacious/titlestring.h + +1 -0 trunk/audacious/ui_fileinfo.c + +2 -1 trunk/libaudacious/titlestring.h + + 2006-08-20 19:20:36 +0000 George Averill revision [2097] - Don't explode when loading http streams from xspf files. diff -r 15d92c51bde6 -r ebc170f08767 Plugins/Container/xspf/xspf.c --- a/Plugins/Container/xspf/xspf.c Wed Aug 23 07:46:33 2006 -0700 +++ b/Plugins/Container/xspf/xspf.c Wed Aug 23 23:09:05 2006 -0700 @@ -64,7 +64,7 @@ xmlFree(str); if(locale_uri){ tuple->file_name = g_path_get_basename(locale_uri); - tuple->file_path = g_strdup(locale_uri); + tuple->file_path = g_path_get_dirname(locale_uri); } } else if(nptr->type == XML_ELEMENT_NODE && !strcmp(nptr->name, "creator")){