# HG changeset patch # User nenolod # Date 1172670278 28800 # Node ID c0e5cf2273ad2499a8208efc0774e4bfb904157d # Parent ea470384e75205f92c4537bb6f97a1e08af69040 [svn] - Add support for the custom tuple field. Patch by Christian Birchinger (joker). diff -r ea470384e752 -r c0e5cf2273ad ChangeLog --- 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 + 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 revision [4186] - proxy requests for metadata attached to a VFSBufferedFile to the live diff -r ea470384e752 -r c0e5cf2273ad src/audacious/build_stamp.c --- 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 -const gchar *svn_stamp = "20070227-4186"; +const gchar *svn_stamp = "20070227-4188"; diff -r ea470384e752 -r c0e5cf2273ad src/audacious/titlestring.c --- 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;