mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
Add missing package name for xiaomi-wearable (#547)
* fix: Add missing package name for `xiaomi-wearable` * fix: Replace the deprecated keystore `alias` flag * chore: fix formatting
This commit is contained in:
+5
-1
@@ -193,7 +193,11 @@ class Parser(object):
|
|||||||
args[1::2] = map(self.config.temp_folder.joinpath, args[1::2])
|
args[1::2] = map(self.config.temp_folder.joinpath, args[1::2])
|
||||||
if app.old_key and "v4" in version:
|
if app.old_key and "v4" in version:
|
||||||
# https://github.com/ReVanced/revanced-cli/issues/272#issuecomment-1740587534
|
# https://github.com/ReVanced/revanced-cli/issues/272#issuecomment-1740587534
|
||||||
old_key_flags = ["--alias=alias", "--keystore-entry-password=ReVanced", "--keystore-password=ReVanced"]
|
old_key_flags = [
|
||||||
|
"--keystore-entry-alias=alias",
|
||||||
|
"--keystore-entry-password=ReVanced",
|
||||||
|
"--keystore-password=ReVanced",
|
||||||
|
]
|
||||||
args.extend(old_key_flags)
|
args.extend(old_key_flags)
|
||||||
if self.config.ci_test:
|
if self.config.ci_test:
|
||||||
self.exclude_all_patches()
|
self.exclude_all_patches()
|
||||||
|
|||||||
@@ -73,6 +73,7 @@ class Patches(object):
|
|||||||
"com.myfitnesspal.android": "fitnesspal",
|
"com.myfitnesspal.android": "fitnesspal",
|
||||||
"com.facebook.katana": "facebook",
|
"com.facebook.katana": "facebook",
|
||||||
"io.syncapps.lemmy_sync": "lemmy-sync",
|
"io.syncapps.lemmy_sync": "lemmy-sync",
|
||||||
|
"com.xiaomi.wearable": "xiaomi-wearable",
|
||||||
}
|
}
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|||||||
Reference in New Issue
Block a user