summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh
AgeCommit message (Collapse)Author
2022-02-19Merge pull request #5726 from ByteHamster/stream-decide-ondemandByteHamster
Decide whether or not to stream on demand
2022-02-18Decide whether or not to stream on demandByteHamster
Fixes a bug where local folders sometimes did not start because AntennaPod thought it needed to play locally. Also avoids situations in which it streams even though a local file is available. Simplifies the PlaybackService slightly.
2022-02-18Merge pull request #5725 from ByteHamster/smaller-hidden-suggestionsByteHamster
Shrink discovery section when hidden
2022-02-18Removed the speed indicator from the PlaybackControlsDialog (#5702)Silverwarriorin
2022-02-18Shrink discovery section when hiddenByteHamster
2022-02-05Fix clipboard deprecation in AddFeedFragmentTacoTheDank
2022-01-30Nicer placeholder images (#5679)ByteHamster
Shows randomly generated placeholder images for: - Feeds that do not have a cover (usually happens for text-only feeds) - Feeds that specify an invalid cover still show a gray square - Local folders when there is no image file in the folder that we could use
2022-01-15Merge pull request #5656 from ByteHamster/more-checkstyleByteHamster
Move more checkstyle checks from 'new code' style to main style
2022-01-15Move more checkstyle checks from 'new code' style to main styleByteHamster
2022-01-15handle mouse right click (#5625)Tony Tam
2022-01-06Rewrite download request creation (#5530)ByteHamster
Android has a limit on the size of Intent parameters. When enqueuing a huge number of items, it just ignored the argument and did not call onNewIntent. We now load the list over in DownloadService.
2022-01-04Try to get missing feed url from discover with a search (#5620)agibault
2022-01-04Update Balloon library (#5584)Taco
2022-01-04Local feeds: add sort option for file name (#5629)Shom Bandopadhaya
Co-authored-by: widlok <widlok@users.noreply.github.com>
2022-01-03Combine 'Episode webpage' & 'Media file address' share options (#5626)vbh
2022-01-02Don't show 'Set SleepTimer' and 'Disable SleepTimer' at the same timeJonathan Flueren
2021-12-28Detect network changes with Android > Lollipop (#5609)Tony Tam
2021-12-19Rename tags (#5601)vbh
2021-12-14Add keyboard shortcuts for going to the top and bottom of podcast list (#5588)silansuslu
2021-12-14Merge pull request #5581 from TacoTheDank/remove-old-compatByteHamster
Remove no longer needed compat methods
2021-12-12Remove no longer needed compat methodsTacoTheDank
2021-12-10Simplify confusing string with two pluralsByteHamster
2021-12-01Add preference to show subscription title (#5538)vbh
2021-11-28Merge branch 'master' into developByteHamster
2021-11-28Chromecast rework (#5518)ByteHamster
2021-11-21Bump to minimum SDK version 19 (Android 4.4)ByteHamster
2021-11-21Add 'add to tag' option to multiselect menu (#5553)vbh
2021-11-21Merge pull request #5555 from ByteHamster/crash-double-chapterByteHamster
Do not crash when opening chapter dialog twice
2021-11-21Fix crash on API 21 when showing subscriptions screenByteHamster
2021-11-21Fix short flash of long stats table when showing short oneByteHamster
2021-11-17Do not crash when opening chapter dialog twiceByteHamster
2021-11-14Merge pull request #5546 from ByteHamster/incorrect-positionByteHamster
Fix sometimes showing incorrect position when continuous playback is disabled
2021-11-14Merge pull request #5547 from ByteHamster/fix-flashingByteHamster
Don't reload image when download status changes
2021-11-14Don't reload image when download status changesByteHamster
2021-11-14Fix sometimes showing incorrect position when continuous playback is disabledByteHamster
2021-11-14Make it slightly harder to swipe episodes (#5135)Tony Tam
2021-11-14Fix Permission Denial when sharing filesByteHamster
2021-11-09Warn about using debug versionByteHamster
2021-11-07Merge pull request #5532 from ByteHamster/delete-use-actionByteHamster
Fix crash when deleting feed
2021-11-06Fix CoverFragment crashing when showing RemoteMediaByteHamster
2021-11-06Fix crash when deleting feedByteHamster
When the database is huge, loading the subscription item list takes a long time. Redirecting to the episodes screen after deleting sometimes results in the item list starting to update before. If the screen is then hidden before the Callable returns, the app crashes.
2021-11-06Add subscription to home screen (#5523)vbh
2021-11-04Merge pull request #5516 from ByteHamster/auto-download-backoffByteHamster
Fix auto-download retry backoff
2021-11-04Merge pull request #5520 from ByteHamster/move-events-to-moduleByteHamster
Move (most) events to their own module
2021-11-02Merge pull request #5515 from ByteHamster/feed-statistics-tableByteHamster
Show more detailed feed statistics
2021-11-02Fix auto-download retry backoffByteHamster
The new value never got stored in the database. Also, it only got increased by certain types of errors - all other errors could be retried indefinitely. Also added a unit test.
2021-11-02Move (most) events to their own moduleByteHamster
2021-10-31Merge pull request #5514 from ByteHamster/pause-interruptionsByteHamster
Pause on focus loss by default
2021-10-31Show more detailed feed statisticsByteHamster
2021-10-31Pause on focus loss by defaultByteHamster