From 4a2a2ad96726f7327b80a5badda787927d582550 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Sat, 14 May 2022 21:38:11 +0300 Subject: [PATCH] load exclusion for 1.811 - hotfix --- index.html | 2 +- modules/io/load.js | 2 +- versioning.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index dc929b3d..4261cc43 100644 --- a/index.html +++ b/index.html @@ -6342,7 +6342,7 @@ - + diff --git a/modules/io/load.js b/modules/io/load.js index 89fcb584..32349310 100644 --- a/modules/io/load.js +++ b/modules/io/load.js @@ -125,7 +125,7 @@ function uploadMap(file, callback) { const isUpdated = mapVersion === currentVersion; const isAncient = mapVersion < OLDEST_SUPPORTED_VERSION; // TODO: temp condition for 1.811, remove when 1.82 is released - const isNewer = mapVersion > currentVersion && currentVersion !== 1.811; + const isNewer = mapVersion > currentVersion && mapVersion !== 1.811; const isOutdated = mapVersion < currentVersion; if (isInvalid) return showUploadMessage("invalid", mapData, mapVersion); diff --git a/versioning.js b/versioning.js index c225309a..ed988f51 100644 --- a/versioning.js +++ b/versioning.js @@ -1,7 +1,7 @@ "use strict"; // version and caching control -const version = "1.81.1"; // generator version, update each time +const version = "1.81.11"; // generator version, update each time { document.title += " v" + version;