From 12bf8cba8883aaedd3a427e32c0f7615064672fb Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Thu, 13 Jul 2023 22:44:00 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20Infinity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/config.py | 1 + src/patches.py | 1 + 3 files changed, 3 insertions(+) diff --git a/README.md b/README.md index 84c7f83..f86fd61 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ By default, script build the version as recommended by Revanced team. 33. [boost](https://www.apkmirror.com/apk/ruben-mayayo/boost-for-reddit/) 34. [rif](https://www.apkmirror.com/apk/talklittle/reddit-is-fun/) 35. [sync](https://www.apkmirror.com/apk/red-apps-ltd/sync-for-reddit/) + 36. [infinity](https://www.apkmirror.com/apk/red-apps-ltd/sync-for-reddit/)
Please verify the source of original APKs yourself with links provided. I'm not responsible for any damaged caused. If you know any better/safe source to download clean. Please raise a PR. diff --git a/src/config.py b/src/config.py index 5b91db2..4abf829 100644 --- a/src/config.py +++ b/src/config.py @@ -82,6 +82,7 @@ class RevancedConfig(object): "boost": f"{self.apk_mirror}/apk/ruben-mayayo/boost-for-reddit/", "rif ": f"{self.apk_mirror}/apk/talklittle/reddit-is-fun/", "sync ": f"{self.apk_mirror}/apk/red-apps-ltd/sync-for-reddit/", + "infinity ": f"{self.apk_mirror}/apk/docile-alligator/infinity-for-reddit/", } self.apk_mirror_version_urls = { key: value + value.split("/")[-2] diff --git a/src/patches.py b/src/patches.py index 0bbbbcd..9455c1e 100644 --- a/src/patches.py +++ b/src/patches.py @@ -47,6 +47,7 @@ class Patches(object): "com.rubenmayayo.reddit": "boost", "com.andrewshu.android.reddit": "rif", "com.laurencedawson.reddit_sync": "sync", + "ml.docilealligator.infinityforreddit": "infinity", } revanced_app_ids = { key: (value, "_" + value) for key, value in _revanced_app_ids.items()