summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/dialog/VariableSpeedDialog.java
AgeCommit message (Collapse)Author
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-09-29Fix a few more deprecations, tiny cleanup (#4388)Taco
2020-07-16New playback speed dialogByteHamster
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-22Merge branch 'develop' into remove-prestissimoH. Lehmann
2019-11-22Removed prestissimoByteHamster
2019-11-22Bumped minimum API version to 16ByteHamster
2019-11-06Removed MaterialDialog dependencyByteHamster
The AlertDialogs from Androidx are material, too.
2019-10-04Automatic AndroidX migrationByteHamster
2019-08-18Allow to open speed settings with ExoPlayerByteHamster
2018-04-21Added ExoPlayer settingByteHamster
2016-06-29Fixed rule 'Lamdbas containing only one statement should not nest this ↵Soso Tughushi
statement in a block'
2016-03-22code cleaning:Domingos Lopes
- lambda expressions, method references, - multi catches, - remove unnecessary keywords (public keyword on interface method signatures, static on interfaces or enums, final on private method signatures), - == false expressions, - diamond type (<>) expressions, - replace StringBuffer with StringBuilder for local variables used by a single thread, - replace Arrays.asList with Collections.singletonList whenever applicable, - inline variable returns (whenever the variable name's meaning is not important to understand the code), - replace some chains of if/else if/... with switch/case, - break append(a + b) into append(a).append(b) for StringBuilder objects, - unused import statements, - reduce log TAGs to 23 characters, - MaterialDialog callback deprecated, - ActionBarActivity for AppCompatActivity,
2016-01-24Eliminate confusion from UI elements that change playback speedMartin Fietz
2016-01-21Enable Sonic by defaultMartin Fietz
2016-01-16Audio player redesignMartin Fietz
Sleep timer and audio effects (e.g. balance) accessible from actionbar, fragment pager
2015-11-08AlertDialog -> v7 AlertDialogMartin Fietz
2015-09-27Variable Speed Dialog: Install Prestissimo or enable SonicMartin Fietz
2015-09-19Move audio player classes to external libraryMartin Fietz
2014-09-19Moved non-gui classes to 'core' packagedaniel oeh
2014-09-17Changed project structuredaniel oeh
Switched from custom layout to standard gradle project structure