summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/fragment/SearchFragment.java
AgeCommit message (Collapse)Author
2024-03-31Restructure related UI classes together (#7044)ByteHamster
2024-03-29Add :ui:discovery module (#7037)ByteHamster
2024-03-27Split up DBTasks which has unclear responsibilities (#7032)ByteHamster
2024-02-20Remove some deprecated methods (#6932)ByteHamster
2023-11-11Fix deeplink/search?query=xy intent (#6754)ByteHamster
2023-10-22Multi-select actions on search results (#6719)Vinod Patil
2023-10-13Add 'Search online' button if local search has no results (#6681)ByteHamster
2023-05-05Download Service Rewrite (#6420)ByteHamster
2023-02-02Add long press menu to search results in subscriptions list (#6267)GitStart
2022-11-27Switch back to non-transparent navigation bar (#6111)ByteHamster
2022-09-18Migrate Toolbars to Material3ByteHamster
2022-08-27Home Screen (#5864)ByteHamster
Co-authored-by: ueen <ueli.sarnighausen@online.de>
2022-04-02Merge branch 'master' into developByteHamster
2022-03-15Fix context menu click ending up in wrong fragmentByteHamster
This can have all kinds of weird side effects. For example, it could trigger the "delete" button of a podcast and then ask for deleting another one because another fragment handles the deletion.
2022-02-22Delete a few unused thingsByteHamster
2022-01-15Move more checkstyle checks from 'new code' style to main styleByteHamster
2021-11-02Move (most) events to their own moduleByteHamster
2021-10-24Moved playback events to their own packageByteHamster
2021-10-09Closing Keyboard when clicked in the background (#5437)Dhiraj Chauhan
2021-08-08Live results in local searchByteHamster
2021-06-29Contextual menu for multi selecting episodes (#5130)peakvalleytech
2021-05-31Fix stuck swipe refresh indicatorJohannes Henninger
ViewPager2 does not play nice with SwipeRefreshLayout if the wrapped RecyclerView is hidden. This commit removes the show/hide logic from EmptyViewHandler, so that the RecyclerView is always displayed, even when empty. This prevents you from swiping left/right while pulling down the swipe refresh indicator. Fixes #5132
2021-04-22Moved model to its own moduleByteHamster
2021-04-21Deleted duplicate resourcesByteHamster
2020-11-01Fixed toolbar state updatesByteHamster
Do not modify up arrow state of background fragments's toolbars. They are invisible anyways and their state can be kept when resuming later.
2020-11-01Converted second-level fragments to stand-alone toolbarByteHamster
2020-10-13Add chip when searching for specific feed (#4522)Ezequiel
2020-10-07Fixed "Searching within single podcast shows other podcasts #4488" (#4505)Abhinav Gangadharan
Since the single SearchFragment is used for searching items at both within a podcast fragment and at Episode Fragment, only difference arises is the passage of feed, episode page pushes 0 and the podcast page pushes the particular value) Hence, A check is placed when retrieving search results for the feed value and The Feed recycler Data is appropriately handled
2020-07-16Added CI Lint checks for app moduleByteHamster
2020-07-13Fix a bunch of deprecationsTacoTheDank
2020-06-19Fixed events delivering to background thread and modifying ViewsByteHamster
2020-04-02Recycle ViewHolders throughout the appByteHamster
2020-03-20Fixed item flickering while downloadingByteHamster
2020-03-17Showing feed results in searchByteHamster
2020-03-17Converted lists to RecyclerViewByteHamster
Also, cleaned up list adapters
2020-03-15Centralize creation of search iconByteHamster
2020-03-15Moved Toolbar to individual FragmentsByteHamster
2020-02-05Make lists react to eventsByteHamster
2020-02-05Using unified item view in search fragmentByteHamster
2020-02-05Removed search stringsByteHamster
2020-02-05Do not search in chaptersByteHamster
This speeds up searching a LOT. I hope that most podcasts use good descriptions and we do not need to search for chapters. Podcasts outside of Germany use chapters only very infrequently.
2020-01-01Added progress bar to episode searchByteHamster
2019-12-31Fix not showing options menu for search resultsByteHamster
2019-10-25Removed EventDistributorByteHamster
2019-10-25Migrated unread items update to EventBusByteHamster
2019-10-23Removed event that is never sentByteHamster
2019-10-04Automatic AndroidX migrationByteHamster
2019-06-24Reorganize search fragment lifecycleAnderson Mesquita
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
2018-09-30Migrate rxjava to version 2Martin Fietz