Revision: 1969
http://gtkpod.svn.sourceforge.net/gtkpod/?rev=1969&view=rev
Author: jcsjcs
Date: 2008-05-10 06:10:38 -0700 (Sat, 10 May 2008)
Log Message:
-----------
* tests/test-covers.c: print more status messages.
Modified Paths:
--------------
libgpod/trunk/ChangeLog
libgpod/trunk/tests/test-covers.c
Modified: libgpod/trunk/ChangeLog
===================================================================
--- libgpod/trunk/ChangeLog 2008-05-05 13:55:14 UTC (rev 1968)
+++ libgpod/trunk/ChangeLog 2008-05-10 13:10:38 UTC (rev 1969)
@@ -1,3 +1,8 @@
+2008-05-10 Jorg Schuler <jcsjcs at users.sourceforge.net>
+
+ * tests/test-covers.c: print more status messages.
+
+
2008-05-01 Todd Zullinger <tmzullinger at users.sourceforge.net>
* configure.ac:
Modified: libgpod/trunk/tests/test-covers.c
===================================================================
--- libgpod/trunk/tests/test-covers.c 2008-05-05 13:55:14 UTC (rev 1968)
+++ libgpod/trunk/tests/test-covers.c 2008-05-10 13:10:38 UTC (rev 1969)
@@ -56,13 +56,13 @@
thumb = (Itdb_Thumb *)it->data;
g_return_if_fail (thumb);
- filename = NULL;
filename = g_strdup_printf
("%03d_%s-%s-%s-%d-%016"G_GINT64_MODIFIER"x.png",
count++,
song->artist, song->album,
song->title, thumb->type,
song->dbid);
if (filename != NULL) {
+ g_print (" %s\n", filename);
save_itdb_thumb (song->itdb, thumb, filename);
g_free (filename);
}
@@ -74,11 +74,13 @@
save_thumbnails (Itdb_iTunesDB *db)
{
GList *it;
+ gint count = 0;
for (it = db->tracks; it != NULL; it = it->next) {
Itdb_Track *song;
song = (Itdb_Track *)it->data;
+ g_print ("Track %d\n", count++);
save_song_thumbnails (song);
}
}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference
Don't miss this year's exciting event. There's still time to save $100.
Use priority code J8TL2D2.
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2