Age | Commit message (Collapse) | Author |
|
move-to-top
|
|
|
|
|
|
|
|
|
|
the top of the queue. There may be a way to do this while re-using the existing move function. Perhaps a helper is in order.
|
|
'Notifications' to more accurately reflect what it does
|
|
when using navigation apps (for example) so that you can hear what the navigation app says and you don't miss whatever was being said on your podcast. Without this setting checked they may wind up talking over each other, which can be confusing.
|
|
|
|
Was accidentally removed during merge
|
|
|
|
|
|
Conflicts:
src/de/danoeh/antennapod/activity/DownloadLogActivity.java
src/de/danoeh/antennapod/activity/FeedItemlistActivity.java
src/de/danoeh/antennapod/activity/ItemviewActivity.java
src/de/danoeh/antennapod/activity/MiroGuideChannelViewActivity.java
src/de/danoeh/antennapod/activity/OrganizeQueueActivity.java
src/de/danoeh/antennapod/activity/PreferenceActivity.java
src/de/danoeh/antennapod/fragment/EpisodesFragment.java
src/de/danoeh/antennapod/fragment/FeedlistFragment.java
src/de/danoeh/antennapod/fragment/ItemDescriptionFragment.java
src/de/danoeh/antennapod/fragment/ItemlistFragment.java
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|