aboutsummaryrefslogtreecommitdiff
path: root/app/src/main (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-11-28Process subreddit links inside Wiki extrascria10001-11/+15
2021-11-28Don't pass reduntant View arguments to linkifyscria10005-5/+5
When used as a plugin for Markwon; BetterLinkMovement iterates TextViews under the ViewGroup at the setMarkdown stage, so there is no need to for this argument. Don't give a whole Activity as an argument to this method, this causes bugs.
2021-11-27Version 5.1.2.Alex Ning2-0/+2
2021-11-26Don't cancel all ImageLoader instancesscria10001-1/+1
2021-11-25Minor tweaksscria10001-2/+2
2021-11-25Return early if not spoilerscria10001-1/+9
2021-11-25Check if spoiler was found before setting markdownscria10001-4/+6
2021-11-25Fix typoscria10001-1/+1
2021-11-25Add a non-regex solution for parsing spoilersscria10008-39/+246
Add a non-regex solution for parsing spoilers that can also handle code blocks Add a custom BlockQuoteParser to prevent spoilers from being consumed as block quotes without the need for html escaping Make revealed spoiler backgrounds slightly darker
2021-11-22Version 5.1.1. Fix anonymous subreddits and multireddits do not show in ↵Alex Ning2-64/+43
MainActivity TabLayout. Fix changing tab names not working in anonymous mode.
2021-11-22Fix TrackSelectionDialog button color. Do not automatically show control ↵Alex Ning8-8/+26
view in autoplaying videos.
2021-11-21Implement SaveMemoryCenterInsideDownsampleStrategy to smartly downsample ↵Alex Ning6-134/+62
images in PostRecyclerViewAdapter and PostDetailRecyclerViewAdapter.
2021-11-21Fix dark theme issue when selecting playback speed. Minor bugs fixed.Alex Ning7-11/+68
2021-11-21Fix cannot open media in Gallery layout.Alex Ning1-11/+9
2021-11-16Make scroll button work on single comment modescria10001-10/+15
2021-11-16Refactor spoiler parsing into its own classscria100017-295/+161
Reuse spoiler pattern otherwise we match markdown like: `>!` lots of new lines and text <! And some other minor changes.
2021-11-15Don't start MaterialYouService if Material You is not enabled.Alex Ning2-3/+15
2021-11-15Don't leave out single characterscria10001-1/+1
oops >! match this!< >!match this!< >! match this!< >!don't match this<! >! match this !< >!match this !< >! match this!< >! O!< >! O !< >! X !< >! DON'TMATCH !< >!O!< >! O O!< >!!<
2021-11-14Revert changes made in refactorscria100011-13/+16
We need the original superscript markdown for when we edit posts!
2021-11-14Refactorscria100011-14/+13
2021-11-14Optimize spoiler regexscria10001-1/+1
Optimize spoiler regex to allow at least one new line. >! match this!< >!match this!< >! match this!< >!don't match this<! >! match this !< >!match this !<
2021-11-14Don't handle unescaped bracket links for nowscria10001-47/+1
Until there is a better solution that can also handle `[Title]: https://link.com` type links and others.
2021-11-13Version 5.1.0-beta3.Alex Ning2-14/+15
2021-11-13Disable BangInlineProcessorscria100013-82/+111
Don't process ! bangs before links since reddit markdown does not support it. Now links inside spoilers can be rendered correctly.
2021-11-12Try to handle unescaped space inside link blocksscria100014-157/+97
* Commonmark spec does not parse links with unescaped spaces in the link query * Maybe we can do the parsing ourselves by extending 'InlineProcessor', instead of using slow regex * Reuse `fixSuperScript`
2021-11-12Contact mods.Alex Ning3-2/+14
2021-11-11Add custom superscript processorscria100014-7/+195
2021-11-11More fixes related to markdown renderingscria100012-25/+67
2021-11-11UI changes in EditProfileActivity.Alex Ning3-42/+46
2021-11-11Missed this onescria10001-1/+1
2021-11-10Fix markdown not rendering in some commentsscria10001-1/+1
2021-11-10Some UI tweaks.Alex Ning15-197/+132
2021-11-10Fix https://github.com/Docile-Alligator/Infinity-For-Reddit/issues/327.Alex Ning6-18/+45
2021-11-09Fix clicking spoiler invokes OnClickListener on TextView in comments. Render ↵Alex Ning5-14/+117
profile description in markdown.
2021-11-07Fix clicking tab text does not change page in ViewUserDetailActivity, ↵Alex Ning4-16/+13
ViewSubredditDetailActivity or AccoundSavedThingActivity.
2021-11-07Minor bugs fixed.Alex Ning3-5/+5
2021-11-04Version 5.1.0-beta2. Fix crash when hiding read posts.Alex Ning1-0/+3
2021-11-04Wait 2 seconds before automatically applying Material You.Alex Ning1-0/+3
2021-11-04Minor layout tweaks.Alex Ning26-101/+102
2021-11-04Fix Material Design 3 issue.Alex Ning11-48/+53
2021-11-03Tweak Material You amoled theme on Android 12.Alex Ning1-2/+2
2021-11-03Tweak Material You dark theme on Android 12.Alex Ning1-13/+13
2021-11-03Tweak Material You light theme on Android 12.Alex Ning4-29/+27
2021-11-02Minor changes in EditProfileActivity.Alex Ning3-19/+31
2021-11-02cleanupWieland Schöbl1-2/+0
2021-11-02feat: re-enable manual material you for older platformsWieland Schöbl1-1/+78
2021-11-02Try optimizing image loading in PostRecyclerViewAdapter.Alex Ning1-10/+10
2021-11-01Optimize some layouts.Alex Ning13-84/+77
2021-10-30Continue migrating to Material Design 3.Alex Ning63-75/+142
2021-10-30Start migrating to Material Design 3. Try optimizing image loading in ↵Alex Ning16-192/+261
PostRecyclerViewAdapter.