summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod
AgeCommit message (Collapse)Author
2013-08-04Merge branch 'nineoldandroids' of git://github.com/patheticpat/AntennaPod ↵daniel oeh
into patheticpat-nineoldandroids
2013-08-03Fixes issue #249 (Cannot use Kinivo BTC450 bluetooth car kit to playDean Brettle
after pause). The problem was that audioManager.abandonAudioFocus() was being called before remoteControlClient.setPlaybackState(). That seems to have prevented the BTC450 from knowing that the audio was paused. As a result, the BTC450 continued to send "pause" instead of "play" for subsequent button presses. The fix just moves the call to abandonAudioFocus() until after setPlaybackState() has been called.
2013-08-03Set seek time of media keys to 30 seconds.daniel oeh
2013-08-03Merged #226 into developdaniel oeh
2013-08-03Merge branch 'mat-tso-inteligent_namefile' into developdaniel oeh
2013-08-03Merge into developdaniel oeh
2013-08-03Improved DownloadService, several bugfixesdaniel oeh
- DownloadService should now terminate properly as soon as all downloads have been completed. - Notification bug ("0 downloads left" notification) should be fixed
2013-08-02Organizing the queue now works, several bugfixes etc.daniel oeh
2013-07-14Check file size after downloadAndrew Gaul
This commit may address symptoms seen in #187 and #197 where AntennaPod did not flag incomplete downloads as failed.
2013-07-14Address FindBugs warningsAndrew Gaul
This commit fixes 36 of the 109 warnings.
2013-07-10Use NineOldAndroid compatibility library for animationsMichael Kaiser
This fixes the crashes on pre-Honeycomb devices when entering the Organize Queue activity (Fixes #223)
2013-07-07Merge branch 'buffered-output-stream-flush' of ↵daniel oeh
git://github.com/andrewgaul/AntennaPod into andrewgaul-buffered-output-stream-flush # Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit. # # It looks like you may be committing a merge. # If this is not correct, please remove the file # .git/MERGE_HEAD # and try again. # Please enter the commit message for your changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # On branch andrewgaul-buffered-output-stream-flush # All conflicts fixed but you are still merging. # (use "git commit" to conclude merge) # # Changes to be committed: # # modified: src/de/danoeh/antennapod/service/download/HttpDownloader.java # modified: tests/src/de/danoeh/antennapod/test/FeedHandlerTest.java # # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # (commit or discard the untracked or modified content in submodules) # # modified: submodules/ActionBarSherlock (modified content, untracked content) # modified: submodules/ViewPagerIndicator (modified content, untracked content) # modified: submodules/dslv (modified content, untracked content) #
2013-07-07Set 'reason' attribute when download was successful.daniel oeh
2013-07-02Enable Fast Forward and Rewind keys on Google TV remotes.David Carver
This enables the Fast Forward and Rewind keys on the google tv remote. If pressed it will jump ahead by 10 seconds or go back by 10 seconds.
2013-06-30Flush BufferedOutputStream correctlyAndrew Gaul
This ensures that IOException due to writes are thrown in the main code path instead of the exceptional code path. Specifically for HttpDownloader this ensures that IOUtils.closeQuietly does not swallow a failed write.
2013-06-29Promote DownloadError to enum for type-safetyAndrew Gaul
2013-06-21Use http instead of https for accessing the miroguide. Fixes #206daniel oeh
2013-06-21Added support for ID3 2.4 tag, resolved problems with frame size calculationdaniel oeh
2013-06-09Added support for Links in MP3 chapters (using WXXX frame)daniel oeh
2013-06-01Ported several classes from FeedManager to DB*-classesdaniel oeh
2013-05-26Added search methods to DBTasksdaniel oeh
2013-05-26Implemented refresh, auto-download, auto-cleanup methodsdaniel oeh
2013-05-19Split DownloadStatus into two separate classesdaniel oeh
DownloadStatus is now used only for finished downloads, whereas DownloadRequest is used for running/unfinished downloads
2013-05-17Implemented several DBTasks and DBWriter methodsdaniel oeh
2013-05-16Build media file name based on item titlemat tso
Use the media item title as a filename base if exist, fallback on the url name otherwise.
2013-05-13Reduce default speeds to every .1 instead of every .05 so user doesn't have ↵James Falcon
to do a lot of unchecking. Also, be consistant about where float or double is used and be consistent about which context is used for UserPreferences.
2013-05-11Fixed NullpointerException in AddFeedActivitydaniel oeh
2013-05-09Variable speed playback as user preferences and customization of playback speed.James Falcon
2013-05-06Merge branch 'playback-speed' into speedJames Falcon
Conflicts: res/values/arrays.xml res/values/strings.xml src/de/danoeh/antennapod/activity/PreferenceActivity.java src/de/danoeh/antennapod/service/PlaybackService.java
2013-05-04Bug fix for trying to set pitch when media is null.James Falcon
2013-05-04Implemented DBWriter-methodsdaniel oeh
2013-05-04Adding AntennaPod as RSS/XML ReaderNis Wechselberg
2013-05-03Added variable speed playback control as a global option.James Falcon
2013-05-03Added buttons to control playback speeddaniel oeh
2013-05-02Added methods for controlling playback speed to playback controllerdaniel oeh
2013-05-01Merge branch 'speed' into developJames Falcon
2013-05-01Updating formatting to match remoteJames Falcon
2013-05-01Adding audio variable speed playback support at the service levelJames Falcon
2013-05-01Added DBReader-methodsdaniel oeh
2013-04-30Use description of item if title is not available in RSS feed.daniel oeh
The title-tag of an item is optional in RSS 2 if a description-tag is avialable.
2013-04-30Moved update interval preference strings into strings.xml. Fixes #182daniel oeh
2013-04-27Created DB* classesdaniel oeh
2013-04-26Fixed nullpointer exception in DescriptionFragmentdaniel oeh
2013-04-23Automatic download didn't work if episode cache size was set todaniel oeh
unlimited
2013-04-21Fixes #174daniel oeh
2013-04-20Episode cache size can now be set to 'unlimited'daniel oeh
2013-04-20Made sure links are opened in external applicationdaniel oeh
2013-04-20Used wrong methodsdaniel oeh
2013-04-20Feedlist displayed wrong value in 'last update' if feed had no episodesdaniel oeh
2013-04-20Removed 'accept' button in OrganizeQueueActivitydaniel oeh