ipod nano podcast flag bugfix

git-svn-id: svn://svn.berlios.de/gpodder/trunk@243 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2007-01-28 08:27:21 +00:00
parent 78deab6370
commit 0bdebc95df
4 changed files with 12 additions and 2 deletions

View File

@ -16,6 +16,7 @@ Thanks to all the other patch writers:
Nick <nikosapi@gmail.com> (many patches for iPod 5G support + mplayer-length)
Seth Remington <sremington@saberlogic.com> (several important bugfixes)
Robert Young <robertkyoung@gmail.com> (path fix patch for MP3 player sync)
José Luis Fustel <dr_psy@terra.es> (Fix for iPod nano podcast flags)
Thanks for bug reports and other suggestions go out to:

View File

@ -1,3 +1,9 @@
Sun, 28 Jan 2007 09:21:47 +0100 <thp@perli.net>
* src/gpodder/libipodsync.py: Added mediatype flag for iPod nano
as suggested by José Luis Fustel (dr_psy terra.es) - thanks!
* AUTHORS: Added JLF to list of patch writers
* bin/gpodder: pushed release date + version
Wed, 24 Jan 2007 22:33:30 +0100 <thp@perli.net>
* TODO: Updated TODO list

View File

@ -26,8 +26,8 @@
# PLEASE DO NOT CHANGE FORMAT OF __version__ LINE (setup.py reads this)
__author__ = "Thomas Perl <thp@perli.net>"
__version__ = "0.8.0+svn20070122"
__date__ = "2007-01-22"
__version__ = "0.8.0+svn20070127"
__date__ = "2007-01-27"
__copyright__ = "Copyright (c) 2005-2007 %s. All rights reserved." % __author__
__licence__ = "GPL"

View File

@ -272,6 +272,9 @@ class gPodder_iPodSync( gPodderSyncMethod):
track.flag2 = 0x01
track.flag3 = 0x01
track.flag4 = 0x01
# Podcast flags for iPod nano (thanks to José Luis Fustel)
track.mediatype = 0x00000004
except:
log( '(ipodsync) Seems like your python-gpod is out-of-date.')