summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment/AllEpisodesFragment.java
AgeCommit message (Collapse)Author
2019-05-27Replace action/callback utils with ItemActionButtonAnderson Mesquita
This just replaces all previous usages of `ActionButtonUtils` and `DefaultActionButtonCallback` with the newly created `ItemActionButton` class.
2019-05-19Merge branch 'develop' into eventbus-v3ByteHamster
2019-05-03Merge pull request #3155 from ByteHamster/empty-view-simplificationH. Lehmann
Simplify empty view handling on recycler views
2019-05-03Fixed NPE when selected item is nullByteHamster
The method is called again with a valid listAdapter automatically Closes #3154
2019-05-03Simplify empty view handling on recycler viewsByteHamster
2019-04-30Fixed empty list not receiving updatesByteHamster
2019-04-25Cleanup compiler warningsAnderson Mesquita
Removes redundant casts and adds generic type to avoid compiler warnings.
2019-04-12Fixed NPEByteHamster
2019-04-12Upgraded EventBus to v3ByteHamster
Also made sure that register/unregister are called in onStart/onStop instead of onResume/onPause (prevents possible MultiWindow problems where updates are not received because activity is not fucused).
2019-04-06#2966 RxJava2 null - explicit mark underlying Rx sources as NonNullorionlee
to be on the safe side, for cases that the consuming observers checks null unnecessarily. Rx observer : underlying sources marked as NonNull OnlineFeedViewActivity.startFeedDownload : Downloader.getResult AllEpisodesFragment.loadItems : AllEpisodesFragment.loadData PlaybackHistoryFragment.loadItems : DBReader.getPlaybackHistory QueueFragment.loadItems : DBReader.getQueue SearchFragment.search : .performSearch
2019-04-06Show single item after undo in EpisodesFragmentByteHamster
2019-04-02Renamed text view ids and added tools namespaceJatin Kumar
2019-04-01Added include to the queue and episode layoutJatin Kumar
2019-03-29Fixed typosJatin Kumar
2019-03-27Fixes #3052: Added empty views to the Playback History, Queue, Downloads and ↵Jatin Kumar
Episodes
2019-03-08Fixed download status update in NewEpisodesFragmentByteHamster
2018-12-26Code styleByteHamster
2018-12-26Merge branch 'develop' into rxjava2ByteHamster
2018-11-16#2878: fix episode screen context menu is applied on wrong feed item during ↵orionlee
refresh
2018-10-21Remove redundant type castsegsavage
2018-09-30Migrate rxjava to version 2Martin Fietz
2018-05-02Issue #2580: Expose "Mark as seen" as a context menu item in Episodeorionlee
screen, in addition to the existing swipe in Episode > New tab.
2018-01-14Remove catch for exception that is never thrownMartin Fietz
2018-01-14Add final modifiersMartin Fietz
2018-01-14Weaken declaration accessMartin Fietz
2017-04-17Only allow menu invalidations from active fragmentByteHamster
Fixes #2081
2016-10-03Show "mark all as seen" confirmation dialogMartin Fietz
2016-07-02Merge pull request #2055 from ↵Martin Fietz
DevFactory/release/Lamdbas_containing_only_one_statement_should_not_nest_this_statement_in_a_block squid:S1602 - Lamdbas containing only one statement should not nest this statement in a block.
2016-06-29Fixed rule 'Lamdbas containing only one statement should not nest this ↵Soso Tughushi
statement in a block'
2016-06-24Fix mark as seen and improve mark all X [of feed Z] as YMartin Fietz
2016-06-08Merge pull request #1968 from mfietz/issue/1929-new-episodes-marked-asMartin Fietz
New episodes: Mark (all) as seen
2016-06-06New episodes: Mark all as seen instead of playedMartin Fietz
2016-06-06Prevent possible hang-bugsMartin Fietz
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