Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Conflicts:
src/de/danoeh/antennapod/activity/PreferenceActivity.java
src/de/danoeh/antennapod/feed/FeedManager.java
src/de/danoeh/antennapod/service/PlaybackService.java
src/de/danoeh/antennapod/service/download/DownloadService.java
src/de/danoeh/antennapod/service/download/DownloadStatus.java
src/de/danoeh/antennapod/service/download/HttpDownloader.java
src/de/danoeh/antennapod/storage/DownloadRequester.java
src/de/danoeh/antennapod/storage/PodDBAdapter.java
src/de/danoeh/antennapod/util/playback/PlaybackController.java
|
|
|
|
DBReader, DBTasks and DBWriter should be used instead from now on
|
|
Makes it possible to get number of (new, in progress) episodes of a feed without loading the whole list of items
|
|
|
|
|
|
|
|
|
|
|
|
|
|
into patheticpat-nineoldandroids
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
|
- DownloadService should now terminate properly as soon as all downloads have been completed.
- Notification bug ("0 downloads left" notification) should be fixed
|
|
|
|
This commit may address symptoms seen in #187 and #197 where
AntennaPod did not flag incomplete downloads as failed.
|
|
This commit fixes 36 of the 109 warnings.
|
|
|
|
This fixes the crashes on pre-Honeycomb devices when entering the
Organize Queue activity (Fixes #223)
|
|
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)
#
|
|
|
|
|
|
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.
|
|
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.
|
|
|
|
|
|
|
|
|
|
Selecting a link has sometimes opened the OPML import of AntennaPod, even though the selected link was not an OPML file.
|
|
|
|
|
|
|
|
|
|
Added support for proguard in maven build process, fixed signing issues with maven
|
|
|
|
|
|
|