New app windy

This commit is contained in:
Nikhil Badyal
2022-11-26 21:46:26 +05:30
parent 37149b81d9
commit ac0ba8ebe1
3 changed files with 10 additions and 1 deletions
+1
View File
@@ -135,6 +135,7 @@ By default, script build the version as recommended by Revanced team.
13. hex-editor 13. hex-editor
14. citra 14. citra
15. crunchyroll 15. crunchyroll
16. windy
2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 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. 3. By default, it will build only `youtube`. To build other apps supported by revanced team.
+7 -1
View File
@@ -19,7 +19,13 @@ class RevancedConfig:
self.session.headers["User-Agent"] = "anything" self.session.headers["User-Agent"] = "anything"
self.build_extended = env.bool("BUILD_EXTENDED", False) self.build_extended = env.bool("BUILD_EXTENDED", False)
self.apk_mirror = "https://www.apkmirror.com" 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.apk_pure = ["pflotsh-ecmwf", "hex-editor"]
self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
self.apps = env.list("PATCH_APPS", default_build) self.apps = env.list("PATCH_APPS", default_build)
+2
View File
@@ -26,6 +26,7 @@ class Patches(object):
"com.myprog.hexedit": ("hex-editor", "_hexeditor"), "com.myprog.hexedit": ("hex-editor", "_hexeditor"),
"org.citra.citra_emu": ("citra", "_citra"), "org.citra.citra_emu": ("citra", "_citra"),
"com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"), "com.crunchyroll.crunchyroid": ("citra", "_crunchyroll"),
"co.windyapp.android": ("windy", "_windy"),
} }
revanced_extended_app_ids = { revanced_extended_app_ids = {
"com.google.android.youtube": ("youtube", "_yt"), "com.google.android.youtube": ("youtube", "_yt"),
@@ -134,6 +135,7 @@ class Patches(object):
"hex-editor": "_hexeditor", "hex-editor": "_hexeditor",
"citra": "_citra", "citra": "_citra",
"crunchyroll": "_crunchyroll", "crunchyroll": "_crunchyroll",
"windy": "_windy",
} }
if not (app_name := app_names.get(app)): if not (app_name := app_names.get(app)):
raise AppNotFound(app) raise AppNotFound(app)