Mercurial > audlegacy
changeset 2590:c0e5cf2273ad trunk
[svn] - Add support for the custom tuple field. Patch by Christian Birchinger (joker).
author | nenolod |
---|---|
date | Wed, 28 Feb 2007 05:44:38 -0800 |
parents | ea470384e752 |
children | f14a639354b3 |
files | ChangeLog src/audacious/build_stamp.c src/audacious/titlestring.c |
diffstat | 3 files changed, 15 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Tue Feb 27 04:09:06 2007 -0800 +++ b/ChangeLog Wed Feb 28 05:44:38 2007 -0800 @@ -1,3 +1,13 @@ +2007-02-27 12:09:06 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [4188] + - add vfs_buffered_file_release_live_fd(). + + trunk/src/audacious/Makefile | 1 + + trunk/src/audacious/vfs_buffered_file.c | 19 ++++++++++++++++++- + trunk/src/audacious/vfs_buffered_file.h | 3 +++ + 3 files changed, 22 insertions(+), 1 deletion(-) + + 2007-02-27 11:49:22 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [4186] - proxy requests for metadata attached to a VFSBufferedFile to the live
--- a/src/audacious/build_stamp.c Tue Feb 27 04:09:06 2007 -0800 +++ b/src/audacious/build_stamp.c Wed Feb 28 05:44:38 2007 -0800 @@ -1,2 +1,2 @@ #include <glib.h> -const gchar *svn_stamp = "20070227-4186"; +const gchar *svn_stamp = "20070227-4188";
--- a/src/audacious/titlestring.c Tue Feb 27 04:09:06 2007 -0800 +++ b/src/audacious/titlestring.c Wed Feb 28 05:44:38 2007 -0800 @@ -214,6 +214,7 @@ char n = *fmt++; if (!((n == 'a' && VS(input, album_name)) || (n == 'c' && VS(input, comment)) || + (n == 'C' && VS(input, custom)) || (n == 'd' && VS(input, date)) || (n == 'e' && VS(input, file_ext)) || (n == 'f' && VS(input, file_name)) || @@ -245,6 +246,9 @@ case 'c': string = VS(input, comment); goto Print_string; + case 'C': + string = VS(input, custom); + goto Print_string; case 'd': string = VS(input, date); goto Print_string;