From ecf835a5af12a9cb1fafc9af5fb55928fb756316 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal Date: Sat, 26 Nov 2022 21:03:55 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20New=20app=20citra-emulator?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + src/config.py | 2 ++ src/patches.py | 2 ++ 3 files changed, 5 insertions(+) diff --git a/README.md b/README.md index f8a1f3f..9e6dad3 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ By default, script build the version as recommended by Revanced team. 11. twitch 12. pflotsh-ecmwf 13. hex-editor + 14. citra 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 8ad4655..36c99b2 100644 --- a/src/config.py +++ b/src/config.py @@ -51,6 +51,7 @@ class RevancedConfig: "youtube": f"{self.apk_mirror}/apk/google-inc/youtube/", "youtube_music": f"{self.apk_mirror}/apk/google-inc/youtube-music/", "ticktick": f"{self.apk_mirror}/apk/appest-inc/ticktick-to-do-list-with-reminder-day-planner/", + "citra": f"{self.apk_mirror}/apk/citra-emulator/citra-emulator/", } self.apk_mirror_version_urls = { "reddit": f"{self.apk_mirror_urls.get('reddit')}reddit", @@ -60,6 +61,7 @@ class RevancedConfig: "youtube": f"{self.apk_mirror_urls.get('youtube')}youtube", "youtube_music": f"{self.apk_mirror_urls.get('youtube_music')}youtube-music", "ticktick": f"{self.apk_mirror_urls.get('ticktick')}ticktick-to-do-list-with-reminder-day-planner", + "citra": f"{self.apk_mirror_urls.get('ticktick')}citra-emulator", } self.archs_to_build = env.list("ARCHS_TO_BUILD", []) self.alternative_youtube_patches = env.list("ALTERNATIVE_YOUTUBE_PATCHES", []) diff --git a/src/patches.py b/src/patches.py index 9f3a6c0..b910f85 100644 --- a/src/patches.py +++ b/src/patches.py @@ -24,6 +24,7 @@ class Patches(object): "tv.twitch.android.app": ("twitch", "_twitch"), "com.garzotto.pflotsh.ecmwf_a": ("pflotsh-ecmwf", "_pflotsh"), "com.myprog.hexedit": ("hex-editor", "_hexeditor"), + "org.citra.citra_emu": ("citra", "_citra"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -130,6 +131,7 @@ class Patches(object): "twitch": "_twitch", "pflotsh-ecmwf": "_pflotsh", "hex-editor": "_hexeditor", + "citra": "_citra", } if not (app_name := app_names.get(app)): raise AppNotFound(app)