summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment
AgeCommit message (Collapse)Author
2016-06-19Merge pull request #1983 from mfietz/issue/1970-remove-ambiguousTom Hennen
Item view: Make remove/delete less ambiguous
2016-06-19Unsubscribe when fragment is destroyedMartin Fietz
2016-06-11Make remove/delete less ambiguousMartin Fietz
2016-06-09Merge pull request #2001 from domingos86/flavors-optimizationMartin Fietz
Flavors code optimization
2016-06-08Merge pull request #1968 from mfietz/issue/1929-new-episodes-marked-asMartin Fietz
New episodes: Mark (all) as seen
2016-06-07adapt ui to different flavorsDomingos Lopes
2016-06-06New episodes: Show correct snackbar "marked as seen"Martin Fietz
2016-06-06New episodes: Mark all as seen instead of playedMartin Fietz
2016-06-06Merge pull request #1958 from drabux/sort_by_feed_titleMartin Fietz
Add option to sort queue by feed title
2016-06-06Prevent possible hang-bugsMartin Fietz
2016-06-04Create one flavor with Google Cast support and one (free) withoutMartin Fietz
2016-05-25Add option to sort queue by feed titledrabux
2016-05-19Fix for restoring scroll position in detail view #1947Jens Klingenberg
The scroll position on detail view is now being restored when you are switching back to it. On orientation change it doesn't restore on the exact position at the moment. But i think that could work with a scroll position relative to the webview height.
2016-05-02Use strings to point to images, not urisMartin Fietz
2016-04-24allow fine control on where to show the cast buttonDomingos Lopes
2016-04-24have external player fragment show play button if castingDomingos Lopes
2016-04-24separate audioplayeractivity into audio and cast activitiesDomingos Lopes
2016-04-20Reload description on swipeMartin Fietz
Always calls onFragmentLoaded() because updateAppearance() does not reload the description. Resolves #1876
2016-04-19Merge pull request #1875 from mfietz/issue/1831-apply-actions-tagsTom Hennen
Fix item tags
2016-04-14Post event after queue has been persistedMartin 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-04-14Enable full hyphenation on Android 6Martin Fietz
2016-04-02fixes AntennaPod/AntennaPod#1848Tom Hennen
2016-04-02Merge pull request #1828 from mfietz/feature/662-episode-swipeTom Hennen
Episode view: Go to previous/next list item when swiping right/left
2016-03-31* SubscriptionsAdapter now using its own ItemAccess instead of MainActivityTom Hennen
* SubscriptionFragment now properly reloading data when it should
2016-03-29Merge pull request #1827 from mfietz/issue/1239-open-podcastTom Hennen
Episode view: Open podcast
2016-03-28Open podcast fragment as childMartin Fietz
2016-03-28Episode view: Open podcast menu or click on cover or podcast titleMartin Fietz
2016-03-27Merge pull request #1826 from TomHennen/subscriptions_viewTom Hennen
Subscriptions view
2016-03-27added 'add podcast' and back now works properlyTom Hennen
2016-03-27Episode view: Go to previous/next list item when swiping right/leftMartin Fietz
2016-03-26context menu for subscriptionsTom Hennen
2016-03-25Don't get notified about mark as playedMartin Fietz
2016-03-25additional cleanup, removed submodule, renamed thingsTom Hennen
2016-03-25updated and fixed PR AntennaPod/AntennPod#1624Tom Hennen
2016-03-22remove reference to MainActivity instanceDomingos Lopes
2016-03-22further fixes based on mfietz inputDomingos 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-18Merge pull request #1751 from mfietz/issue/1727-podcast-titleTom Hennen
Episode view: Show podcast title
2016-03-16Merge pull request #1763 from mfietz/issue/1762-audioplayer-leakMartin Fietz
Audioplayer: Prevent leak
2016-03-16Merge pull request #1689 from mfietz/issue/1687-delay-hide-controlsMartin Fietz
Video player: Delay controls hide on interaction
2016-03-13Prevent leakMartin Fietz
2016-03-10Do not crash...Martin Fietz
2016-03-08Do not show loading indicator on rotation changeMartin Fietz
2016-03-08Show podcast titleMartin Fietz
2016-03-07Prevent IllegalStateExceptionMartin Fietz
2016-02-22Do not refresh when not attachedMartin Fietz
2016-02-18Delay control hiding when button pressedMartin Fietz
2016-02-08Remove deprecation warnings by using ContextCompat.getColor().Tobias Preuss