aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into go-to-top-of-page-buttonDocile-Alligator2021-09-2316-109/+141
|\
| * Merge pull request #469 from andrewrasch/link-handling-fixesDocile-Alligator2021-09-232-22/+60
| |\ | | | | | | Update link handling for amp and v.redd.it
| | * Merge branch 'master' into link-handling-fixesDocile-Alligator2021-09-2315-87/+80
| | |\ | | |/ | |/|
| * | Merge pull request #470 from andrewrasch/fix-wiki-pagesDocile-Alligator2021-09-236-4/+24
| |\ \ | | | | | | | | Fix Wiki Page Handling
| | * | Added link to wiki in subredditandrewrasch2021-09-223-0/+13
| | | | | | | | | | | | | | | | Subreddit details menu now has a link to its wiki. Subs without a wiki will show the "this subreddit has no wiki" page.
| | * | Fixed handling of wiki pagesandrewrasch2021-09-222-3/+5
| | | | | | | | | | | | | | | | LinkResolverActivity now handles wiki pages other than index and their subpages.
| | * | Added API call for generic wiki page.andrewrasch2021-09-222-2/+7
| | | | | | | | | | | | | | | | Updated old wiki-only call to cascade to new generic.
| * | | Fix posts not marked as read in ViewPostDetailActivity if swipe between ↵Alex Ning2021-09-223-8/+21
| | | | | | | | | | | | | | | | posts is enabled.
| * | | Only save read post ids in PostFragment. Add read post ids to readPosts in ↵Alex Ning2021-09-229-83/+43
| |/ / | | | | | | | | | PostFragment.
| | * Added path patterns to other linksandrewrasch2021-09-221-24/+47
| | | | | | | | | | | | Fixes bug where only google amp links open in Infinity
| | * Update link handling for amp and v.redd.itandrewrasch2021-09-222-0/+15
| |/ | | | | | | Added manifest entries for google.com amp links (reddit only) and v.redd.it. Updated handling of google amp links in LinkResolverActivity.
* | Change the go to top iconandrewrasch2021-09-223-2/+15
| | | | | | | | Changed to use a double up arrow icon
* | Added go to top of page option.andrewrasch2021-09-225-0/+21
|/ | | | Added Main + Other Activity bottom bar option to go to the top of a page.
* Fix marking posts as read on scroll.Alex Ning2021-09-171-5/+14
|
* Fix hiding read posts automatically.Alex Ning2021-09-173-58/+65
|
* Fix opening the same media multiple times by clicking it repeatedly.Alex Ning2021-09-171-43/+46
|
* Rewrite code related to hiding read posts.Alex Ning2021-09-172-91/+3
|
* No need to pass a HashSet to hide read posts.Alex Ning2021-09-162-13/+14
|
* Remove unused API.Alex Ning2021-09-161-75/+0
|
* Fix no post message not shown in PostFragment.Alex Ning2021-09-163-9/+20
|
* Fix the same value, null, was passed as the nextKey in two sequential Pages ↵Alex Ning2021-09-161-3/+1
| | | | loaded from a PagingSource.
* Use Transformations.map and PagingDataTransforms.filter to remove read ↵Alex Ning2021-09-153-3/+59
| | | | posts. It is an ugly design but I cannot think of a better way.
* Fix gfycat videos cannot be downloaded.Alex Ning2021-09-081-0/+2
|
* Fix onPostUpdateEvent and onNeedForPostListFromPostRecyclerViewAdapterEvent ↵Alex Ning2021-09-071-8/+8
| | | | in PostFragment.
* Unlock Account Section -> Unlock in LockScreenActivity.Alex Ning2021-09-061-1/+1
|
* Remove PostViewModel, PostDataSource and PostDataSourceFactory. ↵Alex Ning2021-09-0617-1866/+302
| | | | NewPostViewModel is renamed to PostViewModel.
* Remove unused variables.Alex Ning2021-09-064-8/+9
|
* Remove retryLoadingMore in NewPostViewModel.Alex Ning2021-09-063-36/+1
|
* Remove code related to NetworkState in PostRecyclerViewAdapter.Alex Ning2021-09-062-185/+71
|
* Use withLoadStateFooter to show load state.Alex Ning2021-09-063-2/+146
|
* Remove PostPaging3Repository.Alex Ning2021-09-062-174/+112
|
* Refreshing, changing sort type and post filter are now working in PostFragment.Alex Ning2021-09-064-34/+108
|
* Start migrating to Paging 3 library.Alex Ning2021-09-0514-4829/+749
|
* Fix a bug which causes the ViewModel not retain its state after orientation ↵Alex Ning2021-09-055-50/+37
| | | | change.
* Testing Paging 3 library.Alex Ning2021-09-0413-4/+4991
|
* Save last foreground time instead of last unlock time.Alex Ning2021-09-033-13/+5
|
* New options: App Lock and App Lock Timeout.Alex Ning2021-09-039-10/+151
|
* Update Credits page.Alex Ning2021-09-036-4/+25
|
* Start implementing app lock feature.Alex Ning2021-09-038-20/+117
|
* Sidebar -> About.Alex Ning2021-09-0318-18/+2
|
* Fix showing wrong post feed in the second tab in MainActivity.Alex Ning2021-09-023-18/+22
|
* Use PostFragment to handle loading subreddit or user icons for ↵Alex Ning2021-09-022-96/+109
| | | | PostRecyclerViewAdapter.
* Null check when fetching v.redd.it in ViewVideoActivity.Alex Ning2021-08-292-14/+19
|
* Merge pull request #406 from Skyluker4/github-actionsDocile-Alligator2021-08-293-0/+72
|\ | | | | Add Automated Workflows
| * Create codeql-analysis.ymlLuke Simmons2021-07-131-0/+33
| | | | | | | | | | | | | | | | Automatically scans code for vulnerabilities on every push to master, pull request, on demand, and at 12:00 UTC every day. Fix Signed-off-by: Luke Simmons <luke5083@live.com>
| * Create build.ymlLuke Simmons2021-07-121-0/+33
| | | | | | | | | | | | Automatically build project on every push, pull request, and on demand and uploads build artifacts. Signed-off-by: Luke Simmons <luke5083@live.com>
| * Create dependabot.ymlLuke Simmons2021-07-121-0/+6
| | | | | | | | Automatically checks for updates for project dependencies and creates pull requests.
* | Merge pull request #331 from curche/time-format-arraysDocile-Alligator2021-08-291-22/+23
|\ \ | | | | | | Make time format strings less ambiguous
| * | Make time format strings less ambiguouscurche2021-04-281-22/+23
| | | | | | | | | | | | | | | the previous date format was ambiguous - 2020-01-02 01:00 this commit changes it with a slightly better date - 2020-01-23 23:45
* | | Version 5.0.4.Alex Ning2021-08-261-2/+2
| | |