# HG changeset patch # User nenolod # Date 1171312911 28800 # Node ID c8d6564f9c82f5985e978961f5dc165ce1cfcc37 # Parent b1ec2cbe0d0cec317f2a13c236cfac2e7b18e4f5 [svn] - only strip the subsong identifier if it is really a valid subsong identifier. closes #792. diff -r b1ec2cbe0d0c -r c8d6564f9c82 ChangeLog --- a/ChangeLog Mon Feb 12 10:08:11 2007 -0800 +++ b/ChangeLog Mon Feb 12 12:41:51 2007 -0800 @@ -1,3 +1,12 @@ +2007-02-12 18:08:11 +0000 Yoshiki Yazawa + revision [4028] + - bundled libid3tag.so has been renamed libaudid3tag.so to avoid conflict. + - install location of libaudid3tag.so also has been changed to $(plugindir) since bundled build depends on audacious vfs. + + trunk/src/libid3tag/Makefile | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + + 2007-02-12 17:22:32 +0000 Michael Farber <01mf02@gmail.com> revision [4026] - more playlist cleanups (generalized code for playlist loading/saving diff -r b1ec2cbe0d0c -r c8d6564f9c82 src/audacious/build_stamp.c --- a/src/audacious/build_stamp.c Mon Feb 12 10:08:11 2007 -0800 +++ b/src/audacious/build_stamp.c Mon Feb 12 12:41:51 2007 -0800 @@ -1,2 +1,2 @@ #include -const gchar *svn_stamp = "20070212-4026"; +const gchar *svn_stamp = "20070212-4028"; diff -r b1ec2cbe0d0c -r c8d6564f9c82 src/audacious/input.c --- a/src/audacious/input.c Mon Feb 12 10:08:11 2007 -0800 +++ b/src/audacious/input.c Mon Feb 12 12:41:51 2007 -0800 @@ -429,7 +429,7 @@ tmp = strrchr(tmp_uri, '?'); - if (tmp != NULL) + if (tmp != NULL && g_ascii_isdigit(*(tmp + 1))) *tmp = '\0'; fd = vfs_buffered_file_new_from_uri(tmp_uri);