mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
Merge pull request #77 from nikhilbadyal/ticktick
✨ New app com.ticktick.task
This commit is contained in:
@@ -127,6 +127,7 @@ By default, script build the version as recommended by Revanced team.
|
||||
7. spotify
|
||||
8. nyx-music-player
|
||||
9. icon-pack-studio
|
||||
10. ticktick
|
||||
|
||||
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.
|
||||
|
||||
@@ -49,6 +49,7 @@ class RevancedConfig:
|
||||
"warnwetter": f"{self.apk_mirror}/apk/deutscher-wetterdienst/warnwetter/",
|
||||
"youtube": f"{self.apk_mirror}/apk/google-inc/youtube/",
|
||||
"youtube_music": f"{self.apk_mirror}/apk/google-inc/youtube-music/",
|
||||
"ticktik": f"{self.apk_mirror}/apk/appest-inc/ticktick-to-do-list-with-reminder-day-planner/",
|
||||
}
|
||||
self.apk_mirror_version_urls = {
|
||||
"reddit": f"{self.apk_mirror_urls.get('reddit')}reddit",
|
||||
@@ -57,6 +58,7 @@ class RevancedConfig:
|
||||
"warnwetter": f"{self.apk_mirror_urls.get('warnwetter')}warnwetter",
|
||||
"youtube": f"{self.apk_mirror_urls.get('youtube')}youtube",
|
||||
"youtube_music": f"{self.apk_mirror_urls.get('youtube_music')}youtube-music",
|
||||
"ticktik": f"{self.apk_mirror_urls.get('ticktik')}ticktick-to-do-list-with-reminder-day-planner",
|
||||
}
|
||||
self.archs_to_build = env.list("ARCHS_TO_BUILD", [])
|
||||
self.alternative_youtube_patches = env.list("ALTERNATIVE_YOUTUBE_PATCHES", [])
|
||||
|
||||
@@ -47,6 +47,7 @@ class Patches(object):
|
||||
"com.spotify.music": ("spotify", "_spotify"),
|
||||
"com.awedea.nyx": ("nyx-music-player", "_nyx"),
|
||||
"ginlemon.iconpackstudio": ("icon-pack-studio", "_iconpackstudio"),
|
||||
"com.ticktick.task": ("ticktik", "_ticktik"),
|
||||
}
|
||||
|
||||
for app_name in (revanced_app_ids[x][1] for x in revanced_app_ids):
|
||||
@@ -118,6 +119,7 @@ class Patches(object):
|
||||
"spotify": "_spotify",
|
||||
"nyx-music-player": "_nyx",
|
||||
"icon-pack-studio": "_iconpackstudio",
|
||||
"ticktik": "_ticktik",
|
||||
}
|
||||
if not (app_name := app_names.get(app)):
|
||||
raise AppNotFound(app_name)
|
||||
|
||||
Reference in New Issue
Block a user