From ef4d3aeb6101b0e0626066ddc694254e16788d06 Mon Sep 17 00:00:00 2001 From: Munashe Dirwayi <80176761+wanomaniac@users.noreply.github.com> Date: Mon, 10 Mar 2025 10:58:59 +0200 Subject: [PATCH] Update ImageTag to support Unity 6 versions Unity has went from unity 20xx.x.xxxx to 6000.x.xxxx and it made activations broken. This should fix it. --- src/model/image-tag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/model/image-tag.ts b/src/model/image-tag.ts index 2fe8fdf..6f5507f 100644 --- a/src/model/image-tag.ts +++ b/src/model/image-tag.ts @@ -27,7 +27,7 @@ class ImageTag { } static get versionPattern() { - return /^20\d{2}\.\d\.\w{3,4}|3$/; + return /^(20\d{2}\.\d\.\w{3,4}|6000\.\d\.\w{3,4})$/; } static get imageSuffixes() {