summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment/PlaybackHistoryFragment.java
AgeCommit message (Collapse)Author
2018-01-14Add final modifiersMartin Fietz
2016-06-29Fixed rule 'Lamdbas containing only one statement should not nest this ↵Soso Tughushi
statement in a block'
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-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-01-13Prevent IllegalStateException when fragment is detachedMartin Fietz
2016-01-07Minor changes to playback historyMartin Fietz
2015-12-19Prevent ArrayIndexOutOfBoundsExceptionMartin Fietz
2015-11-26RxJava defer -> fromCallableMartin Fietz
2015-11-26DownloadObserver must dieMartin Fietz
2015-09-20Added 'tags' to FeedItem and properly showing/not showing menu items for ↵Tom Hennen
favorites.
2015-09-19Replace some of the most annoying AsyncTasks with RxJavaMartin Fietz
2015-09-10Refactor database accessMartin Fietz
2015-07-12PlaybackHistory doesn't dim played items anymore.Tom Hennen
Also adds a space before the feed title when displaying the title. fixes AntennaPod/AntennaPod#1007
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-05-19Redone new indicatorMartin 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-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-05QueueEvents, Queue shows undobar on removal of an itemMartin Fietz
2015-04-05Minor changes: Log, import order, small refactoringsMartin Fietz
2015-04-01Direct play from the the listsvolhol
position in media item is now updated
2015-03-31Direct play from the the listsvolhol
Pause/play buttons work; position in media item not always updated yet
2014-12-19Replaced FeedItemDialog with ItemFragmentdaniel oeh
2014-11-05Updated layoutsdaniel oeh
Use new navigation drawer toggle Customized colors of new themes Updated navigation drawer layout Updated "new episodes list" layout Updated feeditemlist layout Fixed refresh button behavior in feeditemlist Updated downloads fragment layout Fixed layouts on smaller screens, updated borderless buttons Use PreferenceFragment instead of PreferenceActivity if possible Changes of the Preference UI should now be made in the PreferenceController class. Replaced vertical_divider with android:attr/listDivider Updated itemlist layout in onlinefeedview Fixed NPE in TagFragment Updated gpodnet list layout Updated search layout Adjusted background color of external player Added material design icons Adjusted primary dark color
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