summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment/AllEpisodesFragment.java
AgeCommit message (Collapse)Author
2016-04-14Send FeedItemEvent when a tag has been added or removedMartin Fietz
2016-04-14Don't use LongLists, use tags directlyMartin Fietz
2016-03-27Episode view: Go to previous/next list item when swiping right/leftMartin Fietz
2016-03-22remove reference to MainActivity instanceDomingos Lopes
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-10Do not crash...Martin Fietz
2016-01-23Fix context menuMartin Fietz
2016-01-13Prevent IllegalStateException when fragment is detachedMartin Fietz
2016-01-07Replacement for deprecated support library methodMartin Fietz
2015-12-19Prevent ArrayIndexOutOfBoundsExceptionMartin Fietz
2015-12-13(1) Fix refresh indicator (2) On download event, only refresh items that are ↵Martin Fietz
affected
2015-11-27*EpisodesFragment: Fix context menu sharingMartin Fietz
2015-11-27WeakReferenceMartin Fietz
2015-11-26RxJava defer -> fromCallableMartin Fietz
2015-11-26Fix ArrayIndexOutOfBoundsExceptionMartin Fietz
See Play store crash report No idea why this happens...
2015-11-26DownloadObserver must dieMartin Fietz
2015-11-25Current RxJava version, not reloading when downloads are queuedMartin Fietz
2015-11-07Prettier dividersMartin Fietz
2015-11-06Check if this is the right fragmentMartin Fietz
2015-11-06RecyclerView context menus (with ripple)Martin Fietz
2015-11-04addressed some of mfietz's commentsTom Hennen
2015-11-03switched to snackbarTom Hennen
2015-11-03Fixed saving/restoration of scroll position thanks to some code fromTom Hennen
@mfietz, https://github.com/mfietz/AntennaPod/blob/recyclerview/app/src/main/java/de/danoeh/antennapod/fragment/AllEpisodesFragment.java
2015-11-03resolved compilation problem and got rid of the 'no items' labelTom Hennen
2015-11-03replaced context menu with popup menu. still a couple of other issuesTom Hennen
2015-11-03playing around with recycler view. context menu and swiping isn't workingTom Hennen
2015-09-20undoing changes to 'activity' which weren't neededTom Hennen
2015-09-20Added 'tags' to FeedItem and properly showing/not showing menu items for ↵Tom Hennen
favorites.
2015-09-20refactored after merging in changes from #1212Tom Hennen
2015-09-20basic favorite functionalityTom Hennen
2015-09-19Replace some of the most annoying AsyncTasks with RxJavaMartin Fietz
2015-09-10Refactor database accessMartin Fietz
2015-09-07fix messed up ItemFragment toolbarTom Hennen
2015-09-07Collapsed All and New Episodes in to 'Episodes' using tabsTom Hennen
This is to make room for 'Favorites' in the future. I kept the counter for 'New Episodes' and am displaying it next to 'Episodes'.
2015-09-07episodes fragment with tabs. layout of item info is messed up for some reason.Tom Hennen
2015-06-29Make new explicitMartin Fietz
2015-06-27Folks weren't always getting the updated copy of the download list, now they ↵Tom Hennen
are. fixes AntennaPod/AntennaPod#968
2015-06-20Sharing in options and context menusMartin Fietz
2015-06-19Don't propose to open malformed URLsMartin Fietz
2015-05-19Fix for indicator, changes in context menusMartin Fietz
2015-05-19Redone new indicatorMartin Fietz
2015-05-19Order feeds by number of unread items (descending)Martin Fietz
2015-05-12Fix ActionBar SearchViewMartin Fietz
2015-04-18Remove checks for opened drawer, now unneccessaryMartin Fietz
2015-04-18Minor changesMartin Fietz
2015-04-18Merge branch 'version_1.1.1' of https://github.com/AntennaPod/AntennaPod ↵Martin Fietz
into AntennaPod/version_1.1.1
2015-04-18Small fixMartin Fietz
2015-04-18Prepare merge.Martin Fietz
2015-04-17Fixed some NullPointerExceptionsTom Hennen
These were happening on some handsets when onPrepareOptionsMenu was getting called. It is sometimes called before the menu is actually loaded, causing us to not find the MenuItem we're looking for. This solves the symptom, if not the cause. After making this change the number of failures reported on Apkudo dropped from 20 devices to just 6.
2015-04-16reuse listView from AllEpisodesFragmentTom Hennen