summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment/QueueFragment.java
AgeCommit message (Collapse)Author
2019-09-11Added warning when locking queueByteHamster
2019-09-09Fixed crash when clicking keep sorted on empty queueByteHamster
2019-08-30Merge pull request #3345 from ByteHamster/queue-moveH. Lehmann
Disabled long-press drag
2019-08-30Disabled long-press dragByteHamster
2019-08-30Allow different playback speed for videoByteHamster
2019-08-11Changes due to feedback in pull request #3315damoasda
2019-08-11Changes due to feedback in pull request #3315damoasda
2019-08-10Queue: Keep sorted #1556damoasda
2019-08-10Queue: Keep sorted #1556damoasda
2019-08-04Merge branch 'develop' into Queue-Sort-Orderdamoasda
2019-07-23Added batch edit to queueByteHamster
2019-07-22Updated appearance of empty viewByteHamster
2019-07-09Queue: Keep sorted #1556damoasda
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-03Simplify empty view handling on recycler viewsByteHamster
2019-04-30Fixed empty list not receiving updatesByteHamster
2019-04-26Fixed crash where recyclerAdapter is nullByteHamster
Closes #3138
2019-04-25Cleanup compiler warningsAnderson Mesquita
Removes redundant casts and adds generic type to avoid compiler warnings.
2019-04-19bugfix #3092 - time left on Queue screen not updated after download completesAli
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-11Fix displaying progress indicator in multi windowByteHamster
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-06Merge pull request #3083 from orionlee/bulk_remove_from_queue_1145H. Lehmann
Bulk remove from queue
2019-04-06Create new adapter to show single item after undoMartin Fietz
2019-04-03bulk edit - refactor - reorder method parameter for ↵orionlee
DBWriter.removeQueueItem(Context, FeedItem, boolean) to be consistent with the rest of the API.
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-21Added empty views to the PlayBack History, Queue,and DownloadsJatin Kumar
2018-12-26Merge branch 'develop' into rxjava2ByteHamster
2018-10-21Remove redundant type castsegsavage
2018-10-13Fix error-prone errorsAndrew Gaul
2018-10-07Resolves #2829 - Make queue remaining time sensitive to playback speedegsavage
2018-09-30Migrate rxjava to version 2Martin Fietz
2018-05-10Issue #2680: Display time left in queue info baramhokies
2018-04-27Added "Random" and "Smart Shuffle" items at the bottom of the Queue|Sort menu.mr-intj
Added "Permutor" interface to allow specification of reordering logic to be specified in QueueSorter (vs. DBWriter), similar to the existing sort logic. Added "Random" and "Smart Shuffle" strings to core/src/main/res/values (did not add translations for non-English languages) Closes #2366, Closes #2602
2018-04-02Merge remote-tracking branch 'upstream/develop' into layout-improvementsByteHamster
2018-03-16Only write queue order to database on drag release for the podcast queue.Matthew Gaffen
This prevents large numbers of db writes in quick succession. This is a particular problem for large queue lengths. Fixes #2562 and potentially fixed #2573
2018-02-05Do not flicker when pressing back arrowByteHamster
2018-01-14Remove catch for exception that is never thrownMartin Fietz
2018-01-14Add final modifiersMartin Fietz
2017-10-19Prevent ArrayIndexOutOfBoundsExceptionMartin Fietz
2016-06-29Fixed rule 'Lamdbas containing only one statement should not nest this ↵Soso Tughushi
statement in a block'
2016-05-25Add option to sort queue by feed titledrabux
2016-04-14Don't use LongLists, use tags directlyMartin Fietz
2016-03-25Don't get notified about mark as playedMartin Fietz
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