mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 11:58:37 +09:00
Merge pull request #85 from nikhilbadyal/hex-editor
✨ New app hex-editor
This commit is contained in:
@@ -129,6 +129,8 @@ By default, script build the version as recommended by Revanced team.
|
|||||||
9. icon-pack-studio
|
9. icon-pack-studio
|
||||||
10. ticktick
|
10. ticktick
|
||||||
11. twitch
|
11. twitch
|
||||||
|
12. pflotsh-ecmwf
|
||||||
|
13. hex-editor
|
||||||
|
|
||||||
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.
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ class RevancedConfig:
|
|||||||
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"]
|
||||||
self.apk_pure = ["pflotsh-ecmwf"]
|
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)
|
||||||
self.extended_apps: List[str] = ["youtube", "youtube_music"]
|
self.extended_apps: List[str] = ["youtube", "youtube_music"]
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ class Patches(object):
|
|||||||
"com.ticktick.task": ("ticktick", "_ticktick"),
|
"com.ticktick.task": ("ticktick", "_ticktick"),
|
||||||
"tv.twitch.android.app": ("twitch", "_twitch"),
|
"tv.twitch.android.app": ("twitch", "_twitch"),
|
||||||
"com.garzotto.pflotsh.ecmwf_a": ("pflotsh-ecmwf", "_pflotsh"),
|
"com.garzotto.pflotsh.ecmwf_a": ("pflotsh-ecmwf", "_pflotsh"),
|
||||||
|
"com.myprog.hexedit": ("hex-editor", "_hexeditor"),
|
||||||
}
|
}
|
||||||
revanced_extended_app_ids = {
|
revanced_extended_app_ids = {
|
||||||
"com.google.android.youtube": ("youtube", "_yt"),
|
"com.google.android.youtube": ("youtube", "_yt"),
|
||||||
@@ -128,6 +129,7 @@ class Patches(object):
|
|||||||
"ticktick": "_ticktick",
|
"ticktick": "_ticktick",
|
||||||
"twitch": "_twitch",
|
"twitch": "_twitch",
|
||||||
"pflotsh-ecmwf": "_pflotsh",
|
"pflotsh-ecmwf": "_pflotsh",
|
||||||
|
"hex-editor": "_hexeditor",
|
||||||
}
|
}
|
||||||
if not (app_name := app_names.get(app)):
|
if not (app_name := app_names.get(app)):
|
||||||
raise AppNotFound(app)
|
raise AppNotFound(app)
|
||||||
|
|||||||
Reference in New Issue
Block a user