mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
Merge pull request #88 from nikhilbadyal/new-app/windy-app [skip ci]
✨ New app windy
This commit is contained in:
@@ -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.
|
||||
|
||||
+7
-1
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user