diff options
author | jcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-11-04 00:53:06 +0000 |
---|---|---|
committer | jcsjcs <jcsjcs@f01d2545-417e-4e96-918e-98f8d0dbbcb6> | 2007-11-04 00:53:06 +0000 |
commit | 6092806e6086790c89afef8275be74f99170cec4 (patch) | |
tree | 21361120243b138a4321ef6246e3f120f4fde625 | |
parent | 268b930473934ae1ffe50fce7955f9bf1ebea174 (diff) | |
download | libgpod-6092806e6086790c89afef8275be74f99170cec4.tar.gz libgpod-6092806e6086790c89afef8275be74f99170cec4.tar.xz libgpod-6092806e6086790c89afef8275be74f99170cec4.zip |
* itdb_itunesdb.c (itdb_create_directories): Add support for
iPhones (wrong directories were created). Thanks to Jesse
Bouwman for the patch.
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1754 f01d2545-417e-4e96-918e-98f8d0dbbcb6
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/itdb_itunesdb.c | 5 |
2 files changed, 9 insertions, 0 deletions
@@ -1,5 +1,9 @@ 2007-11-04 Jorg Schuler <jcsjcs at users.sourceforge.net> + * itdb_itunesdb.c (itdb_create_directories): Add support for + iPhones (wrong directories were created). Thanks to Jesse + Bouwman for the patch. + Added support for video output of photos for iPod Nano Videos and iPod Classics. diff --git a/src/itdb_itunesdb.c b/src/itdb_itunesdb.c index 5edddbd..a47ae79 100644 --- a/src/itdb_itunesdb.c +++ b/src/itdb_itunesdb.c @@ -6638,6 +6638,11 @@ static gboolean itdb_create_directories (Itdb_Device *device, GError **error) calconnotes = FALSE; devicefile = TRUE; break; + case ITDB_IPOD_MODEL_IPHONE_1: + podpath = g_strdup ("iTunes_Control"); + calconnotes = FALSE; + devicefile = TRUE; + break; case ITDB_IPOD_MODEL_UNKNOWN: podpath = g_strdup ("iPod_Control"); calconnotes = TRUE; |