summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-31Remove 'set lockscreen background' setting (#6385)ByteHamster
Users disable the setting and then wonder why other apps (like Android Auto) do not display the cover image, even though it says so in the setting summary.
2023-03-31Don't try to start foreground service, Android doesn't let us anyway (#6386)ByteHamster
2023-03-31Random enqueue location (#6403)Andrzej Węgłowski
2023-03-23Mention in statistics to warning when deleting podcast(s) (#6393)Keunes
2023-03-14Move feed download to worker (#6375)ByteHamster
Feed downloads are now independent from episode downloads. This makes it easier to use WorkManager for refreshing. Also, it will make it easier to add different refresh intervals in the future.
2023-03-12Notify Android Auto that the queue changed (#6373)ByteHamster
2023-03-11Automatically clear old download log entries on upgrade (#6370)ByteHamster
2023-03-11Make statistics filter start at 00:00 (#6371)ByteHamster
2023-03-06Warn when local folder is empty instead of silently ignoring (#6366)ByteHamster
2023-03-01Instead of specialized methods, use the global 'getEpisodes' method with a ↵ByteHamster
filter (#6358)
2023-02-28Add option to switch a- & descending sort order for Inbox (#6266)GitStart
2023-02-26Remove deprecated media players (#6354)ByteHamster
2023-02-25Add cancel action to download notification (#6353)ByteHamster
2023-02-25Add chapters button to video player (#6348)ByteHamster
2023-02-24More human readable player error message (#6346)ByteHamster
2023-02-24Use more clear swipe action label (#6345)ByteHamster
2023-02-24Always add feeds from opml, even if download fails (#6347)ByteHamster
2023-02-24Add mobile sync setting (#6349)ByteHamster
2023-02-24Resume playback does not work when streaming after data connection drops (#6272)GitStart
2023-02-24Add back skip buttons and more custom actions on Android Auto (#6050)Andrew Booze
2023-02-24Do not jump bottom sheet when playing (#6342)ByteHamster
Whenever some view calls requestLayout(), the bottom view jumps. This happens during slide when setting the player from GONE to VISIBLE. Also, it happens every time the position changes because the TextView has a dynamic width. We are not actually interested in the dynamic width and can simply keep the initial width. This avoids requestLayout() calls every time the position is updated.
2023-02-24Update 'show in main list' string (#6344)Keunes
2023-02-23Fix crash in iTunes loader (#6341)ByteHamster
2023-02-23Fix memory leaks (#6335)peking_ling
2023-02-22Add "New Episodes Action" preference (#6095)Erik Johnson
2023-02-22change iTunes to Apple Podcasts (#6324)Tony Tam
2023-02-22Add sort option to episodes screen (#6286)GitStart
2023-02-22Update iTunes to Apple Podcasts in Google Play (#6331)femmdi
2023-02-20Merge branch 'master' into developByteHamster
2023-02-20Force-refresh feeds that failed before (#6332)ByteHamster
Apparently some servers return "Not Modified", even though a broken feed was fixed in the meantime. When refreshing all feeds, now force-refresh the feeds that previously failed.
2023-02-20Add retry button to download failed notifications (#6333)ByteHamster
2023-02-19Bump version to 3.0.0-beta6ByteHamster
2023-02-19Update translationsByteHamster
2023-02-19Remove another global callback object (#6316)ByteHamster
2023-02-18Clarify "show in main list" checkbox title (#6326)ByteHamster
2023-02-18Extra toggle for full black theme (#6328)ByteHamster
2023-02-18Ensure that the context is non-null when loading the shownotes (#6327)ByteHamster
2023-02-17Fix Chromecast on Android 12, use styled receiver (#6321)ByteHamster
2023-02-16Update duration from feed if there is none yet (#6322)ByteHamster
2023-02-12Add sorting options to downloads screen (#6210)Jared234
2023-02-12Automatically switch to different screen when hiding current one from drawer ↵GitStart
(#6254)
2023-02-12Fix current chapter having the same color as the dialog background (#6315)ByteHamster
2023-02-11Convert subscriptions screen to cards (#6261)GitStart
2023-02-11Don't break tab labels into multiple lines on small devices (#6313)ByteHamster
2023-02-08Update build instructions in README (#6310)ByteHamster
2023-02-05Fix shownotes text border overlap for long translations (#6304)Victor Häggqvist
2023-02-02Bump version to 3.0.0-beta5ByteHamster
2023-02-02Update list of supported website languagesByteHamster
2023-02-02Fix when playback is started from MediaSessionCompat.Callback (#6295)ByteHamster
In that case: - The service does not go through onStartCommand, so it does not go to foreground state. - The media session is already destroyed. Now, create a new media session and definitely start foreground service when something is playing.
2023-02-02Use nicer animation when sliding up player (#6301)ByteHamster