Update of /cvsroot/gtkpod/gtkpod/src
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv13817/src
Modified Files:
mp3file.c
Log Message:
* src/mp3file.c (mp3_write_file_info): YEAR tag was not
written to file. Thanks to t0C for the patch.
Index: mp3file.c
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/src/mp3file.c,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- mp3file.c 18 Sep 2006 07:10:44 -0000 1.70
+++ mp3file.c 24 Sep 2006 03:57:10 -0000 1.71
@@ -1,4 +1,4 @@
-/* Time-stamp: <2006-09-18 15:57:55 jcs>
+/* Time-stamp: <2006-09-24 12:52:49 jcs>
|
| Copyright (C) 2002-2005 Jorg Schuler <jcsjcs at users sourceforge net>
| Part of the gtkpod project.
@@ -1562,6 +1562,10 @@
id3_set_string (id3tag, "TCOM", track->composer, encoding);
+ string1 = g_strdup_printf("%d", track->year);
+ id3_set_string(id3tag, ID3_FRAME_YEAR, string1, encoding);
+ g_free(string1);
+
if (track->tracks)
string1 = g_strdup_printf ("%d/%d",
track->track_nr, track->tracks);
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2