From 223423dc5d00fcf3dfd0fd034bcea1d60634ff7a Mon Sep 17 00:00:00 2001 From: hifumi Date: Sat, 7 Feb 2026 23:58:48 +0100 Subject: [PATCH] Add support for version 26 in version check --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 71627833..5ce25d5c 100644 --- a/index.html +++ b/index.html @@ -398,8 +398,8 @@ // Check if version is supported const majorVersion = parseInt(this.versionName.split('.')[0]); - if (majorVersion !== 20 && majorVersion !== 25) { - this.errors.versionName = 'Currently only versions 20.X and 25.X are supported'; + if (majorVersion !== 20 && majorVersion !== 25 && majorVersion !==26) { + this.errors.versionName = 'Currently only versions 20.X, 25.X and 26 are supported'; return false; }