anoter small ipod sync fix (filesize in iTunesDB) from Nick - thanks

git-svn-id: svn://svn.berlios.de/gpodder/trunk@177 b0d088ad-0a06-0410-aad2-9ed5178a7e87
This commit is contained in:
Thomas Perl 2006-11-20 11:00:14 +00:00
parent bee113e794
commit cda1c5bffe
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Mon, 20 Nov 2006 11:58:37 +0100 <thp@perli.net>
* src/gpodder/libipodsync.py: Applied patch from Nick (nikosapi
gmail com) to add file size to iTunesDB. This should fix the
constant disk spinning on 5G iPods. Thanks :)
Sat, 18 Nov 2006 11:41:16 +0100 <thp@perli.net>
* src/gpodder/libipodsync.py: Applied modified patch from (nikosapi
gmail com) to add "blue bullet" and "remember playback position"

View File

@ -240,6 +240,7 @@ class gPodder_iPodSync(object):
track.description = str(episode.description)
track.podcasturl = str(episode.url)
track.podcastrss = str(channel.url)
track.size = os.path.getsize( local_filename)
gpod.itdb_track_add( self.itdb, track, -1)
playlist = self.get_playlist_for_channel( channel)