summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/dialog/PlaybackControlsDialog.java
AgeCommit message (Collapse)Author
2021-10-24Convert speed update to eventByteHamster
2021-10-10Reworked feed specific speed selector (#5458)ByteHamster
2021-07-29Removed left/right volume controlsByteHamster
The setting does not work in our default player anyway and just clutters the interface with yet another setting that nobody uses.
2021-02-15Removed method that does the same as loadMediaInfo anywayByteHamster
2021-02-15Removed return parameter of loadMediaInfoByteHamster
We return true anyways. The call for actually loading is asynchronous, so returning anything here does not make sense. Reduces likelihood of loader being interrupted to just load the same item again when the state changes.
2020-10-09Replacing deprecated default constructor of handler with constructor that ↵Chetan Pawar
accepts Looper (#4513)
2020-09-29Fix a few more deprecations, tiny cleanup (#4388)Taco
2020-07-16New playback speed dialogByteHamster
2020-05-11Fixed blue buttons with blue textByteHamster
2020-04-08Fix locale of every String.format number formatterEbrahim Byagowi
2020-04-04Allow to select audio trackByteHamster
2020-03-26Removed unused code from PlaybackControllerByteHamster
2020-02-21Fixed overlapping audio controlsByteHamster
2020-02-05Merge branch 'master' into developByteHamster
2020-01-25Do not link playback speed settingsByteHamster
Users are confused that the slider does not have all speed options anymore This basically reverts 6a56260
2020-01-20Convert playback speeds to floatByteHamster
Advantage: When setting the speed to a value that is not available for the button using the audio controls dialog, we no longer jump to the lowest value. Instead, we jump to the next bigger one.
2019-11-12Fixed playback speed buttonByteHamster
Problem was that a float 5.99999 was casted to an int and therefore was 5.
2019-11-06Removed MaterialDialog dependencyByteHamster
The AlertDialogs from Androidx are material, too.
2019-10-17Add an option to replace Episode cover with Podcast coverXavier Gouchet
The default is to use the episode cover (keep the previous behavior). Fixes #3070
2019-10-05Removed unused imports and unnecessary whitespace changesJonas Kalderstam
2019-10-05Changed from db backed item speed to preferences backed global valueJonas Kalderstam
2019-10-05Merge remote-tracking branch 'antennapod/develop' into per_feed_playbackspeedJonas Kalderstam
2019-10-04Automatic AndroidX migrationByteHamster
2019-09-13Moved logic for selecting playback speed entirely to UserPreferencesJonas Kalderstam
2019-09-13Respect media speed for videosJonas Kalderstam
2019-09-13Changed type of media last playback speed to float from stringJonas Kalderstam
Also sets default to "magic" -1 value
2019-09-12Fixed playback speed issues when switching to next mediaJonas Kalderstam
Fixes some issues related to the playback speed when playback was completed or playback was paused and the app went away for awhile. Now a media item which is "in progress" will remember its playback speed so that it can be restored properly. The per-feed-media speed is cleared once playback finishes, either by reaching the end or by the user starting to play something different.
2019-09-12Added per-feed playback speed settingJonas Kalderstam
Fixes #375
2019-08-30Allow different playback speed for videoByteHamster
2019-08-30Extracted playback controls to new classByteHamster