summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/dialog/EpisodesApplyActionFragment.java
AgeCommit message (Collapse)Author
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-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-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-07Replace HashMap with ArrayMapMartin Fietz
2015-11-29removed dangling spaceTom Hennen
2015-11-29resolve 'no empty constructor' errorTom Hennen
2015-11-06Gears dialog: Fix add to queue, convert to lambdaMartin Fietz
2015-09-20Added 'tags' to FeedItem and properly showing/not showing menu items for ↵Tom Hennen
favorites.
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-08-29Upgrade iconifyMartin Fietz
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