From a14e269e3eed40bac497c65b124755007e9e50c8 Mon Sep 17 00:00:00 2001 From: randshell Date: Wed, 29 Nov 2023 17:32:43 +0000 Subject: [PATCH] Fix auto update with magisk `changelog` is required, even when we don't have any changelog file --- build.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.py b/build.py index 71a0fd1..ffa1454 100644 --- a/build.py +++ b/build.py @@ -95,7 +95,8 @@ def create_updater_json(project_tag: str): updater ={ "version": project_tag, "versionCode": int(project_tag.replace(".", "").replace("-", "")), - "zipUrl": f"https://github.com/ViRb3/magisk-frida/releases/download/{project_tag}/MagiskFrida-{project_tag}.zip" + "zipUrl": f"https://github.com/ViRb3/magisk-frida/releases/download/{project_tag}/MagiskFrida-{project_tag}.zip", + "changelog": "" } with open(PATH_BUILD.joinpath("updater.json"), "w", newline="\n") as f: