A Lemmy client forked from the Infinity for Reddit project https://lemdro.id/c/infinityforlemmy
Go to file
Sergei Kozelko 540ba6e74e
Parse spoilers into nodes (#1150)
Implementation is inspired by already existing in Markwon image and link processing
but has to work around some limitations of writing an external plugin.

The first one is storing brackets ourselves. Stored brackets need to be cleared
when a new block starts. Markwon does it in MarkwonInlineProcessor but there is
no callback that we could use. Clearing storage from our own block parser is
unreliable as it is not guaranteed to be called. Instead, every time we need to
access the storage we compare current block with the last used block and clear
storage if necessary.

The second problem is actually a feature of Markwon that it applies spans in
reverse order of calls to MarkwonVisitor#setSpansForNode. This causes other spans
like links and code to be drawn over spoilers making them visible. Adding spans
with a different priority doesn't help as it would require negative priority.
Instead we just remove all the SpoilerSpans from the final string and add them
again, so they are applied last as we want.
2022-10-08 14:25:02 +08:00
.github Add description to Steps to reproduce 2022-09-15 15:40:41 +02:00
app Parse spoilers into nodes (#1150) 2022-10-08 14:25:02 +08:00
fastlane/metadata/android/en-US Add Fastlane file structure for app metadata. 2020-06-21 22:26:03 +02:00
gradle/wrapper Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
.gitignore add VScode 2022-09-14 15:42:07 +02:00
build.gradle Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
gradle.properties Downloading video without sound is now available. Minor bugs fixed. 2019-12-01 20:05:27 +08:00
gradlew Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
gradlew.bat Update gradle wrapper (#1006) 2022-09-09 23:24:18 +08:00
LICENSE Adopt AGPLv3 license 2019-10-29 00:14:05 +08:00
README.md Update README.md 2022-09-16 22:05:51 +08:00
settings.gradle First commit 2018-07-26 23:04:44 +08:00

Infinity For Reddit Patreon

A Reddit client on Android written in Java. It does not have any ads and it features a clean UI and smooth browsing experience


Infinity for Reddit is available on Google Play and F-Droid

Get it on Google Play Get it on F-Droid

release license GitHub issues

Donation

Patreon: https://www.patreon.com/docile_alligator

Bitcoin: bc1qxtkd5ap9na7uy8nr9qpt6jny6tdwaj4v43ddle

Table of Contents

About The Project

Key features of Infinity For Reddit:

  • Lazy mode: Automatic scrolling of posts enables you to enjoy amazing posts without moving your thumb.
  • Browsing posts
  • View comments
  • Expand and collapse comments section
  • Vote posts and comments
  • Save posts
  • Write comments
  • Edit comments and delete comments
  • Submit posts (text, link, image and video)
  • Edit posts (mark and unmark NSFW and spoiler and edit flair) and delete posts
  • See all the subscribed subreddits and followed users
  • View the messages
  • Get notifications of unread messages
  • etc...

Screenshot 1 Screenshot 2 Screenshot 3 Screenshot 4 Screenshot 5 Screenshot 6 Screenshot 7

(back to top)

Contributing

First off, thanks for taking the time to contribute! Contributions are what makes the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request.

Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Here are other ways you can help:

(back to top)

License

Distributed under the AGPL-3.0 License. See LICENSE for more information.

(back to top)

Contact

u/Hostilenemy - docilealligator.app@gmail.com (Owner)

or u/Wladefant - wladefant@gmail.com (Collaborator)

Project Link: https://github.com/Docile-Alligator/Infinity-For-Reddit

(back to top)