From e8bd435fe3a80c655bda5d6fa9ddf0c1f8ede78a Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Fri, 21 Apr 2023 09:46:48 +0300 Subject: [PATCH] fw version in json --- scripts/version.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/version.py b/scripts/version.py index 2faef119c..df56f8479 100644 --- a/scripts/version.py +++ b/scripts/version.py @@ -154,6 +154,7 @@ class Main(App): "firmware_commit": current_info["GIT_COMMIT"], "firmware_branch": current_info["GIT_BRANCH"], "firmware_target": current_info["TARGET"], + "firmware_version": current_info["VERSION"], } with open(version_json_name, "w", newline="\n") as file: json.dump(version_json, file, indent=4)