From f5c2bcc024fa58b0cfbd4b3682e570ad82b2580f Mon Sep 17 00:00:00 2001 From: Enginex0 Date: Tue, 10 Mar 2026 04:40:53 +0100 Subject: [PATCH] fix(module): align update.json versionCode with release ZIP Release ZIP was built at 89 commits (versionCode=89) but update.json had versionCode=90, causing an infinite update loop in KSU Manager. --- module/update.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/update.json b/module/update.json index fedb9de..1e1a8a8 100644 --- a/module/update.json +++ b/module/update.json @@ -1,6 +1,6 @@ { "version": "v4.0", - "versionCode": 90, + "versionCode": 89, "zipUrl": "https://github.com/Enginex0/TEESimulator/releases/download/v4.0/TEESimulator-v4.0-Release.zip", "changelog": "https://raw.githubusercontent.com/Enginex0/TEESimulator/main/module/changelog.md" }