summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/dialog
AgeCommit message (Collapse)Author
2018-01-21Merge branch 'develop' into refactorMartin Fietz
# Conflicts: # app/src/main/java/de/danoeh/antennapod/activity/MediaplayerInfoActivity.java # core/src/main/java/de/danoeh/antennapod/core/service/download/DownloadService.java
2018-01-20Make some static fields finalAndrew Gaul
Adding final prohibits modification and allows initialization of primitive and String fields at compile time instead of runtime in clinit: https://developer.android.com/training/articles/perf-tips.html#UseFinal Found via error-prone.
2018-01-14Add final modifiersMartin Fietz
2018-01-14Weaken declaration accessMartin Fietz
2018-01-14Replace anonymous type with lambdaMartin Fietz
2018-01-07Cleanup order/remove unused includesDirk Mueller
This is the result of Android Studio's include cleanup Macro. This removes some no longer used includes, simplifying the code a bit. The rest is grouping and resorting alphabetically.
2017-10-15lambdas break old Androids, sigh.Danial Klimkin
2017-10-15Reworking data dir dialogDanial Klimkin
2016-12-30Merge pull request #2188 from mfietz/okhttp3Martin Fietz
Upgrade okhttp to version 3
2016-12-04Turn auto enable sleep timer on/off immediatelyMartin Fietz
2016-11-19Fix unintended switch fall-throughMartin Fietz
2016-11-13Upgrade to OkHttp3Martin Fietz
2016-11-01Add ability to rename feedsMartin Fietz
2016-10-09Add dialog option to auto-enable sleep timerMartin Fietz
2016-10-09Extract sleep timer preferences into dedicated classMartin Fietz
2016-10-03Add "has media" filtering to gears dialogMartin Fietz
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-03-16Add proxy settingsMartin Fietz
2016-03-14Avoid unneeded boxingAndrew Gaul
Found via FindBugs.
2016-02-02Apply Actions: Get Add to Queue backMartin Fietz
2016-01-26Make actions selectableMartin Fietz
2016-01-26New select criteria: queued, not queuedMartin Fietz
2016-01-26Minor changesMartin Fietz
2016-01-24Eliminate confusion from UI elements that change playback speedMartin Fietz
2016-01-23Merge pull request #1524 from recalculated/iconsTom Hennen
Material in-app icons
2016-01-23Add material design iconsrecalculated
Includes RSS icon, sync notification icon, icons inside the apply actions screen, and the drag handle icon in the queue.
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
2016-01-07Replace HashMap with ArrayMapMartin Fietz
2015-11-29removed dangling spaceTom Hennen
2015-11-29resolve 'no empty constructor' errorTom Hennen
2015-11-27Merge pull request #1369 from mfietz/ratingTom Hennen
Rating Dialog
2015-11-09Rating dialogMartin Fietz
2015-11-08AlertDialog -> v7 AlertDialogMartin Fietz
2015-11-08Sleep timer dialogMartin Fietz
2015-11-06Gears dialog: Fix add to queue, convert to lambdaMartin Fietz
2015-09-27Variable Speed Dialog: Install Prestissimo or enable SonicMartin Fietz
2015-09-20Added 'tags' to FeedItem and properly showing/not showing menu items for ↵Tom Hennen
favorites.
2015-09-19Move audio player classes to external libraryMartin Fietz
2015-09-10Refactor database accessMartin Fietz
2015-09-06Set episode back to 'New' when undo remove from new episodes.Tom Hennen
markItemRead -> markItemPlayed and now requires the desired state instead of boolean. fixes AntennaPod/AntennaPod#1173
2015-09-05Sleep Timer dialog remembers settingsMartin Fietz
2015-09-05Add options to sleep timer dialogMartin Fietz
2015-08-29Upgrade iconifyMartin Fietz
2015-08-02Changed string names relating to time units.Tom Hennen
Android can handle plurals and strings having the same names, but Transifex can't. Renamed the time_unit*'s to just time_ to make sure we got the correct translations.
2015-07-02Nav drawer subscriptions context menuMartin Fietz
2015-06-28Fix enqueueing order, prevent NPEsMartin Fietz
2015-06-27Enqueue and items in the currently display order, submit changes on bulkMartin Fietz
2015-06-27Add episode action fragmentMartin Fietz