From 01d1a108b5493d28a13583821341901cc4d44a0d Mon Sep 17 00:00:00 2001 From: Azgaar Date: Mon, 26 Aug 2024 12:15:11 +0200 Subject: [PATCH] Update versioning.js to fix incorrect message display for stored version --- versioning.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/versioning.js b/versioning.js index 3ddbaf12..1c1cb580 100644 --- a/versioning.js +++ b/versioning.js @@ -8,7 +8,7 @@ * Update the version MANUALLY on each merge to main: * 1. MAJOR version: Incompatible changes that break existing maps * 2. MINOR version: Backwards-compatible changes requiring old .map files to be updated - * 3. PATCH version: Backwards-compatible bug fixes or features not affecting .map file format + * 3. PATCH version: Backwards-compatible bug fixes not affecting .map file format * * Example: 1.102.0 -> Major version 1, Minor version 102, Patch version 0 */ @@ -29,7 +29,7 @@ const VERSION = "1.100.00"; const patreon = "https://www.patreon.com/azgaar"; alertMessage.innerHTML = /* html */ `The Fantasy Map Generator is updated up to version ${VERSION}. This version is compatible with previous versions, loaded save files will be auto-updated. - ${storedVersion ? "Reload the page to fetch fresh code." : ""} + ${storedVersion ? "Click on OK and then reload the page to fetch fresh code." : ""}