diff --git a/README.md b/README.md index f3e213b..b88b768 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,7 @@ By default, script build the version as recommended by Revanced team. 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/) 37. [slide](https://www.apkmirror.com/apk/haptic-apps/slide-for-reddit/) + 38. [bacon](https://www.apkmirror.com/apk/onelouder-apps/baconreader-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 f12eb92..4f44ff7 100644 --- a/src/config.py +++ b/src/config.py @@ -84,6 +84,7 @@ class RevancedConfig(object): "sync ": f"{self.apk_mirror}/apk/red-apps-ltd/sync-for-reddit/", "infinity ": f"{self.apk_mirror}/apk/docile-alligator/infinity-for-reddit/", "slide ": f"{self.apk_mirror}/apk/haptic-apps/slide-for-reddit/", + "bacon ": f"{self.apk_mirror}/apk/onelouder-apps/baconreader-for-reddit/", } self.apk_mirror_version_urls = { key: value + value.split("/")[-2] diff --git a/src/patches.py b/src/patches.py index 515713e..ed7f0ed 100644 --- a/src/patches.py +++ b/src/patches.py @@ -49,6 +49,7 @@ class Patches(object): "com.laurencedawson.reddit_sync": "sync", "ml.docilealligator.infinityforreddit": "infinity", "me.ccrama.redditslide": "slide", + "com.onelouder.baconreader": "bacon", } revanced_app_ids = { key: (value, "_" + value) for key, value in _revanced_app_ids.items()