summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/service
AgeCommit message (Collapse)Author
2014-09-17Changed project structuredaniel oeh
Switched from custom layout to standard gradle project structure
2014-08-05Acquire wifi lock if media file is being streameddaniel oeh
2014-08-05Acquire wake lock when playing mediadaniel oeh
2014-08-01Abandon audio focus when a phone call comes indaniel oeh
Otherwise playback continues directly after the end of the call
2014-07-30Replaced ImageLoader and DiskCache with Picassodaniel oeh
Implemented Picasso Downloaders Replaced ImageLoader and DiskCache with Picasso Removed ImageLoader, DiskCache code
2014-07-26Fixed auto-flattr when playback endsdaniel oeh
2014-07-16Made automatic flattr threshold configurabledaniel oeh
2014-07-15Fixed possible auto-download loop in DownloadServicedaniel oeh
fixes #443, fixes #468
2014-07-07Fixed NullPointerException in FeedMediadaniel oeh
2014-07-06Increased use of library methodsdaniel oeh
2014-06-15Only report unknown keycode if PlaybackService is playingdaniel oeh
2014-06-07Make seek time configurableDavid Reiss
A 30-second seek time is way to long for me. Make the seek duration a configurable preference.
2014-06-07Show a toast when an unknown media key is pressedDavid Reiss
This is just an idea. If people want more media keys supported, they will be able to use this toast to report exactly what key codes their hardware is generating. If you don't want to include this, just let me know and I can remove it from the pull request.
2014-06-07Support next/previous media keysDavid Reiss
The "seek" buttons in my car send "next" and "previous" media key codes, rather than "fast forward" and "rewind", so update the playback service to recognize them. fixes #386 fixes #432
2014-06-07Remove unnecessary braces in PlaybackService case blockDavid Reiss
The other blocks in this switch don't have braces, and they would look a little silly when I add an extra case label.
2014-06-07Bugfix: Playback could not be restarted in some cases. fixes #387daniel oeh
2014-06-07Bugfix: Parser failures were not reported properly. fixes #450daniel oeh
2014-05-31Added missing contentIntent0.9.9.0daniel oeh
2014-05-25Added support for podlove alternate feedsdaniel oeh
http://podlove.org/alternate-feeds/
2014-05-24Disabled update of rewritten URLs in gpodder.net sync servicedaniel oeh
Othwerwise, feeds might be synced twice
2014-05-19Removed unused resources, reduced number of lint warningsdaniel oeh
2014-05-19Merge branch 'newgui' into develop. closes #407daniel oeh
Conflicts: res/layout/feedinfo.xml
2014-05-17Auto-download episodes on DownloadService shutdown. fixes #316 closes #408daniel oeh
2014-05-17Improved syncing speed for large amounts of feeds. fixes #371daniel oeh
- Bundle db operations in FeedSyncThread - Show "Processing downloads" message instead of "0 downloads left"
2014-05-17Treat feeds with same title and different download URLs as different feeds. ↵daniel oeh
fixes #101
2014-05-11Fixed Download screen problems and download report notificationdaniel oeh
2014-04-27Fixed visibility issue with playback speed buttondaniel oeh
2014-04-27Resume failed downloads. closes #168daniel oeh
2014-04-27Prevent media files from being deleted after a failed downloaddaniel oeh
2014-04-21Added navigation drawer to audio player, fixed DownloadService notificationdaniel oeh
2014-04-06Disabled downloading of episode images. closes #390daniel oeh
Uses too much bandwidth
2014-03-31Disabled downloading of episode images. closes #390daniel oeh
Uses too much bandwidth
2014-03-28Replaced AppConfig.DEBUG with BuildConfig.DEBUGdaniel oeh
2014-03-28Support going back 30 seconds if less than 30 seconds have been played. ↵daniel oeh
closes #285
2014-03-28Fixed image loading bugsdaniel oeh
- If a feed contained items with non-unique image URLs, those images were not displayed - Images in a list were not loaded correctly if the list contained entries without an image
2014-03-19PlaybackPreferences were not written correctly when a playback error ↵daniel oeh
occurred (issue #374)
2014-03-19Added support for images in itunes:image tags.daniel oeh
2014-03-19Playback was not completed correctly. Might fix issue #366 and #374daniel oeh
2014-03-19Don't encode already encoded URLs. fixes #376daniel oeh
2014-03-17Implemented DownloadAuthenticationActivitydaniel oeh
2014-03-17Added authentication notificationdaniel oeh
2014-03-17Added authentication support to DownloadRequester and HttpDownloaderdaniel oeh
2014-03-17Merge branch 'BasicAuth' of git://github.com/cszucko/AntennaPod into ↵daniel oeh
cszucko-BasicAuth
2014-02-23played_duration was updated incorrectlydaniel oeh
2014-02-17Merged pull-request #346daniel oeh
2014-02-17Merge branch 'flattr_queue_autoflattr' into develop (#331)daniel oeh
Other changes: - Changed FlattrStatusFetcher into Thread-subclass - Changed auto-flattr mechanism so that it's compatible with the updated PlaybackService - Changed a couple of strings Conflicts: src/de/danoeh/antennapod/storage/DBReader.java src/de/danoeh/antennapod/storage/DBWriter.java src/de/danoeh/antennapod/util/menuhandler/FeedItemMenuHandler.java src/instrumentationTest/de/test/antennapod/storage/DBReaderTest.java
2014-02-15Added RejectedExecutionHandler to Runnabledaniel oeh
2014-02-14Support HTTP Basic Authentication for FeedsChristopher Szucko
Enables the use of feed URLs with the format http://user:password@example.com
2014-02-14Added content descriptions to imagebuttons and imageviewsdaniel oeh
2014-02-14Resolved intent redelivery issuedaniel oeh