diff --git a/README.md b/README.md index b48ef46..fa772ac 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ By default, script build the version as recommended by Revanced team. 13. hex-editor 14. citra 15. crunchyroll + 16. windy 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 55cebdb..ed7ea21 100644 --- a/src/config.py +++ b/src/config.py @@ -19,7 +19,13 @@ class RevancedConfig: self.session.headers["User-Agent"] = "anything" 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.upto_down = [ + "spotify", + "nyx-music-player", + "icon-pack-studio", + "twitch", + "windy", + ] 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) diff --git a/src/patches.py b/src/patches.py index 4b64380..1bef51a 100644 --- a/src/patches.py +++ b/src/patches.py @@ -26,6 +26,7 @@ class Patches(object): "com.myprog.hexedit": ("hex-editor", "_hexeditor"), "org.citra.citra_emu": ("citra", "_citra"), "com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"), + "co.windyapp.android": ("windy", "_windy"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -134,6 +135,7 @@ class Patches(object): "hex-editor": "_hexeditor", "citra": "_citra", "crunchyroll": "_crunchyroll", + "windy": "_windy", } if not (app_name := app_names.get(app)): raise AppNotFound(app)