New app iconpackstudio

This commit is contained in:
Nikhil Badyal
2022-11-16 22:06:16 +05:30
parent 1544c8cf52
commit bd60b37e87
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -126,6 +126,7 @@ By default, script build the version as recommended by Revanced team.
6. warnwetter 6. warnwetter
7. spotify 7. spotify
8. nyx-music-player 8. nyx-music-player
9. icon-pack-studio
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
View File
@@ -19,7 +19,7 @@ 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"] self.upto_down = ["spotify", "nyx-music-player", "icon-pack-studio"]
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"]
+2
View File
@@ -46,6 +46,7 @@ class Patches(object):
"de.dwd.warnapp": ("warnwetter", "_warnwetter"), "de.dwd.warnapp": ("warnwetter", "_warnwetter"),
"com.spotify.music": ("spotify", "_spotify"), "com.spotify.music": ("spotify", "_spotify"),
"com.awedea.nyx": ("nyx-music-player", "_nyx"), "com.awedea.nyx": ("nyx-music-player", "_nyx"),
"ginlemon.iconpackstudio": ("icon-pack-studio", "_iconpackstudio"),
} }
for app_name in (revanced_app_ids[x][1] for x in revanced_app_ids): for app_name in (revanced_app_ids[x][1] for x in revanced_app_ids):
@@ -116,6 +117,7 @@ class Patches(object):
"youtube_music": "_ytm", "youtube_music": "_ytm",
"spotify": "_spotify", "spotify": "_spotify",
"nyx-music-player": "_nyx", "nyx-music-player": "_nyx",
"icon-pack-studio": "_iconpackstudio",
} }
if not (app_name := app_names.get(app)): if not (app_name := app_names.get(app)):
raise AppNotFound(app_name) raise AppNotFound(app_name)