aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Continue adding Card Layout 3.Docile-Alligator2023-09-101-3/+7
|
* Continue adding Card Layout 3.Docile-Alligator2023-09-101-3/+6
|
* Continue adding Card Layout 3.Docile-Alligator2023-09-105-0/+1678
|
* Please update Infinity after August 30th.Docile-Alligator2023-08-271-2/+2
|
* Fix RedditAPIInfoBottomSheetFragment not scrollable.Docile-Alligator2023-06-221-48/+54
|
* Showing info related to the Reddit API changesDocile-Alligator2023-06-202-0/+72
|
* Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1475Docile-Alligator2023-05-221-0/+1
|
* Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1448Docile-Alligator2023-05-131-1/+3
|
* Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/1456Docile-Alligator2023-05-071-0/+2
|
* Do not render ZoomSurfaceView when pinch to to zoom video is disabled.Docile-Alligator2023-05-032-13/+55
|
* Fixed gallery images swipe gesture and Slidr gesture conflicts in all places.Docile-Alligator2023-04-281-2/+2
|
* Include Slidr in code.Docile-Alligator2023-04-263-4/+9
|
* Show if comments are edited (#1388)Thomas2023-04-242-0/+15
|
* Revert bottom app bar style.Docile-Alligator2023-02-061-6/+60
|
* Version 5.4.0-beta3. Bring back blocking users.Docile-Alligator2023-01-262-0/+10
|
* Change the style of the bottom app bar.Docile-Alligator2022-12-292-60/+26
|
* New option in fab: go to top.Docile-Alligator2022-12-263-0/+33
|
* Minor UI tweaks.Docile-Alligator2022-12-102-2/+4
|
* Remove RPAN.Docile-Alligator2022-12-0322-390/+0
|
* Match parent for the bottom app bar in ViewRedditGalleryImageOrGifFragment.Docile-Alligator2022-12-031-1/+1
|
* Fix bottom app bar not shown in ViewRedditGalleryImageOrGifFragment.Docile-Alligator2022-12-031-0/+1
|
* Notification permission.Docile-Alligator2022-12-031-0/+3
|
* New option: Settings->Interface->Comment->Comment Divider Type.Docile-Alligator2022-11-143-0/+20
|
* Swipe to see gallery images in PostDetailRecyclerViewAdapter.Docile-Alligator2022-11-142-125/+103
|
* Swipe to see images in gallery in gallery layout.Docile-Alligator2022-11-143-2/+49
|
* Swipe to view images in a gallery in Card Layout 2.Docile-Alligator2022-11-131-0/+309
|
* Show the current image index in gallery in PostFragment.Docile-Alligator2022-11-122-20/+42
|
* Swipe between gallery images in PostFragment.Docile-Alligator2022-11-122-0/+332
|
* New option: Settings->Interface->Comment->Hide the Number of Votes.Docile-Alligator2022-11-081-0/+5
|
* Limit EditText's height in CustomizePostFilterActivity.Docile-Alligator2022-11-087-17/+61
|
* Material Design 3 Switch. Target Sdk 33.Docile-Alligator2022-11-0813-25/+25
|
* Retry loading more posts.Docile-Alligator2022-11-062-1/+2
|
* Minor changes to loading more posts.Docile-Alligator2022-11-051-4/+16
|
* Show status of loading more posts in MorePostsInfoFragment.Docile-Alligator2022-11-052-0/+25
|
* New option: Settings->Interface->Hide FAB in Post Feed.Docile-Alligator2022-11-032-0/+6
|
* New option in PostFragment: More options.Docile-Alligator2022-11-032-0/+7
|
* Handle invalid regex pattern in post filter.Docile-Alligator2022-11-031-0/+2
|
* Rename confidence sort to best (#1177)Sergei Kozelko2022-11-031-16/+0
| | | | | | | | | | | | * Rename CONFIDENCE comments sort type to BEST and remove old BEST type The Reddit API supports only CONFIDENCE sort type for comments but displays it as BEST. I renamed CONFIDENCE name to Best and added a migration step for loading correct sort type. * Clean up sortType usages in ViewPostDetailFragment Removed unnecessary null checks, object creations and most case conversions
* add backup password below backup settings button (#1185)Patrick Demers2022-11-022-1/+3
|
* add button to export logs to GitHub issue (#1180)Patrick Demers2022-11-022-0/+7
|
* Hide Karma (#1168)Patrick Demers2022-10-222-0/+7
| | | | | | | * feature/ability to hide karma * only hide karma in nav bar * center account name vertically when not showing karma
* Add view that can lock swipe-to-close gesture (#1140)Sergei Kozelko2022-10-221-2/+3
| | | | | | | | | | | | | | | | | | | | | | Slidr works by adding its own view in the hierarchy and listening to touch events in `onInterceptTouchEvent`. Once it detects movement in the correct direction, it returns `true` and handles all the events itself. Adding scrollable view detection to Slidr would solve the problem, but it is not possible and would probably have performance impact. Fortunately Slidr does not intercept the very first event, which is ACTION_DOWN, and it reaches scrollable view. So the scrollable view itself can decide if it should disallow the swipe. This also has a performance benefit over `OnScrollChangedListener` because the listener is triggered for every scroll of every view even if the child we are interested in did not scroll. On the other hand `on(Intercept)TouchEvent` is triggered only when the view is touched. There is a possibility that swipe won't be unlocked if view never receives ACTION_UP or ACTION_CANCEL. However the docs say nothing about the probability of this happening. Anyways, one possible solution is to post a runnable that will unlock swipe soon after locking.
* Ellipsize usernames if they don't fit on one line in a fully collapsed ↵cmp2022-10-081-0/+1
| | | | comment text area. (#1148)
* Fix crash in debug build by using fully qualified class name for ↵Sergei Kozelko2022-09-2512-14/+14
| | | | | | | | | | layoutmanager (#1130) When the class name is relative, Android tries to resolve it against applicationId. However it does not match the package because of `.debug` suffix so it tries to load the wrong class. This results in ClassNotFoundException and a crash. Using fully qualified class name fixes it as the system can use the class name as is.
* Minor bugs fixed.Docile-Alligator2022-09-211-1/+0
|
* Fix reply markdown (#1098)Sergei Kozelko2022-09-211-2/+6
| | | | | | | | | | | | | | | | | | * Display comment body the same way as post body when replying There are two views that support markdown, one of them was used to display post titles and comments, the other - post bodies. The views are configured differently even though post and comment bodies should be displayed the same way. Now post and comment bodies are displayed by the same view. * Rename extra keys from TEXT to TITLE Now these extra keys are used only by post title, reflect this in the name. * Remove markdown support from post title view * Fix reply styling Co-authored-by: Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com>
* Allow parallel installation of debug and release versions (#636)sal0max2022-09-211-2/+2
| | | | | | * Allow parallel installation of debug and release versions ...by adding '.debug' suffix to application id * add separate app name resource for debug build
* Start utilizing view binding (#1013)Taco2022-09-213-24/+24
|
* delete "/" in filtering multireddit pathWladimir Kirianov2022-09-181-1/+1
|
* Update multireddit apply filter text (#712)user_7272022-09-181-1/+1
| | | | | * Update multireddit apply filter text A "/" is needed at the end of the path in order for the filter to be applied correctly to the multireddit. Also, any characters that are not lowercase will also make it not apply properly.