From 17aaae6f0ed01c53669dfb0229621f0159c0c0e7 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 26 Nov 2022 14:17:20 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20New=20app=20hex-editor?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 ++ src/config.py | 2 +- src/patches.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d7d4f4..4388f55 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,8 @@ By default, script build the version as recommended by Revanced team. 9. icon-pack-studio 10. ticktick 11. twitch + 12. pflotsh-ecmwf + 13. hex-editor 2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 3. By default, it will build only `youtube`. To build other apps supported by revanced team. diff --git a/src/config.py b/src/config.py index 42ff6b0..8ad4655 100644 --- a/src/config.py +++ b/src/config.py @@ -20,7 +20,7 @@ class RevancedConfig: self.build_extended = env.bool("BUILD_EXTENDED", False) self.apk_mirror = "https://www.apkmirror.com" self.upto_down = ["spotify", "nyx-music-player", "icon-pack-studio", "twitch"] - self.apk_pure = ["pflotsh-ecmwf"] + self.apk_pure = ["pflotsh-ecmwf", "hex-editor"] self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") self.apps = env.list("PATCH_APPS", default_build) self.extended_apps: List[str] = ["youtube", "youtube_music"] diff --git a/src/patches.py b/src/patches.py index 0aa1e6d..9f3a6c0 100644 --- a/src/patches.py +++ b/src/patches.py @@ -23,6 +23,7 @@ class Patches(object): "com.ticktick.task": ("ticktick", "_ticktick"), "tv.twitch.android.app": ("twitch", "_twitch"), "com.garzotto.pflotsh.ecmwf_a": ("pflotsh-ecmwf", "_pflotsh"), + "com.myprog.hexedit": ("hex-editor", "_hexeditor"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -128,6 +129,7 @@ class Patches(object): "ticktick": "_ticktick", "twitch": "_twitch", "pflotsh-ecmwf": "_pflotsh", + "hex-editor": "_hexeditor", } if not (app_name := app_names.get(app)): raise AppNotFound(app)