Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-02-25 | Guess next episode release date (#6925) | ByteHamster | |
2024-02-25 | Fix Gradle deprecations (#6939) | Taco | |
2024-02-24 | Fix warnings about deprecated checks (#6935) | loucasal | |
2024-02-20 | Screenshot creation script (#6933) | ByteHamster | |
2024-02-20 | Remove some deprecated methods (#6932) | ByteHamster | |
2024-02-18 | Merge branch 'master' into develop | ByteHamster | |
2024-02-18 | Rewind when sleep timer pauses playback (#6923) | mueller-ma | |
2024-02-16 | Use proper plurals when showing number of episodes (#6922) | ByteHamster | |
2024-02-04 | Tweak OPML import (#6906) | ByteHamster | |
- Only request storage permission when ContentResolver fails - Easier to read error message | |||
2024-02-04 | Add next chapter button to notification (#6276) | Matej Drobnič | |
2024-01-31 | Remove unused test class (#6907) | ByteHamster | |
2024-01-20 | Hide refresh from toolbar (#6850) | ueen | |
2024-01-10 | Merge pull request #6859 from ByteHamster/echo-tweaks | ByteHamster | |
2024-01-04 | Always show share in player toolbar (#6849) | ueen | |
2024-01-04 | Permanently hide Echo section if it has too few hours | ByteHamster | |
2024-01-04 | Center numbers on Echo share screen | ByteHamster | |
2024-01-04 | Ellipsize titles on Echo share image | ByteHamster | |
2024-01-04 | Increase timeout of Echo images | ByteHamster | |
2024-01-03 | Print duration as number of days only on Echo (#6842) | ByteHamster | |
Reverts an accidental change to the queue time display | |||
2024-01-02 | Update queue list when toggling 'keep sorted' (#6853) | ByteHamster | |
2024-01-02 | Move 'skip silence' checkbox to playback speed dialog (#6834) | quails4Eva | |
2024-01-02 | Migrate subscriptions filter dialog to DialogFragment (#6846) | ueen | |
Co-authored-by: ByteHamster <info@bytehamster.com> | |||
2024-01-02 | Use localized date format (#6843) | ByteHamster | |
2024-01-01 | Add scrollbar to Nextcloud login dialog (#6838) | satish-vanjara | |
2023-12-31 | Add reset button to episodes filter (#6825) | ueen | |
2023-12-31 | If feed url was typed manually, show edit url button on error (#6833) | ByteHamster | |
2023-12-31 | Share AntennaPod subscribe link instead of RSS url (#6835) | ByteHamster | |
Apparently users are confused by RSS links. | |||
2023-12-29 | Remove unnecessary autodownload code (#6832) | ByteHamster | |
This should not change any behavior. The retry count and timing are managed by WorkManager, so this code is irrelevant. | |||
2023-12-29 | Show currently playing episode in Android Auto (#6816) | Tony Tam | |
2023-12-29 | Check if volume boost effect is supported on the device (#6808) | Matej Drobnič | |
2023-12-29 | Close unresponsive tickets earlier (#6830) | ByteHamster | |
2023-12-29 | Better center number in 'new' pill (#6831) | ByteHamster | |
2023-12-28 | Fix Echo using wrong number of days in a year (#6822) | ByteHamster | |
2023-12-23 | Update preference search library (#6821) | ByteHamster | |
2023-12-13 | Make it easier to migrate Echo to a new year (#6803) | ByteHamster | |
Also, add a new screen background | |||
2023-12-06 | Fix 'played' state on TalkBack when cover is hidden (#6796) | ByteHamster | |
2023-12-06 | Merge branch 'master' into develop | ByteHamster | |
2023-12-03 | New sort dialog (#6789) | ByteHamster | |
2023-12-02 | Update debug icons with new design (#6782) | ByteHamster | |
2023-12-02 | Remove audio player license (#6783) | ByteHamster | |
2023-11-29 | Bump version to 3.2.03.2.0 | ByteHamster | |
2023-11-28 | Fix Italian translations | ByteHamster | |
2023-11-28 | Update translations | ByteHamster | |
2023-11-28 | AntennaPod Echo (#6780) | ByteHamster | |
2023-11-28 | Make onPlayFromSearch continue playback (#6779) | Andrey Gusev | |
According to the Android documentation, if onPlayFromSearch is called with an empty query, the app should make a decision what to play. Before, a database search with this empty query was performed, which returned arbitrary results. Now we play the last played episode instead. | |||
2023-11-26 | De-duplicate also if episodes have different but similar media type (#6776) | ByteHamster | |
2023-11-22 | Remove Iconify from FeedInfoFragment (#6655) | caoilTe O'Connor | |
2023-11-17 | Add ScrollView to sleep timer dialog | peking_ling | |
2023-11-17 | Honor sort in episode list view in Android Auto (#6756) | Tony Tam | |
2023-11-15 | Fix seeking to end using seek bar (#6763) | Erik Johnson | |
Merging #6074 has caused a new edge case for VBR audio files, in which using the seek bar to seek to the end of an episode sometimes hits the new code path, and the `skip()` function is called. Because `skip()` invokes `endPlayback()` with `hasEnded` set to `false`, post-processing tasks are not executed unless the pre-seek position falls within the "Smart mark as played" range. If "Smart mark as played" is set to `Disabled`, or the pre-seek position is outside that range, then the episode is not marked as played, and not removed from queue. This commit fixes that edge case by replacing `skip()` with a direct call to `endPlayback()`, with `hasEnded` set to `true`. |