summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/dialog
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-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
2014-12-19Replaced FeedItemDialog with ItemFragmentdaniel oeh
2014-12-08Destroy webview when it is no longer useddaniel oeh
Not destroying the webview might have caused crashes on some devices
2014-10-24Merge branch 'migration' into developdaniel oeh
Non-GUI classes have been moved into the 'core' project in order to allow AntennaPod SP to reference it as a subproject. Conflicts: app/src/main/AndroidManifest.xml build.gradle core/src/main/java/de/danoeh/antennapod/core/service/playback/PlaybackService.java core/src/main/java/de/danoeh/antennapod/core/syndication/namespace/NSSimpleChapters.java core/src/main/java/de/danoeh/antennapod/core/util/ChapterUtils.java gradle/wrapper/gradle-wrapper.properties pom.xml
2014-10-11Moved core classes into subprojectdaniel oeh
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