From 987c7163afc598ebed18eb0a3af5edce0a0baeb7 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Thu, 22 Aug 2024 13:34:17 +0200 Subject: [PATCH] chore: pump version to v1.99.05 --- index.html | 40 ++++++++++++++++++++-------------------- modules/ui/editors.js | 6 +++--- versioning.js | 2 +- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/index.html b/index.html index a5206b4e..bcdbacf7 100644 --- a/index.html +++ b/index.html @@ -7978,7 +7978,7 @@ - + @@ -7989,15 +7989,15 @@ - + - + - + - + @@ -8006,22 +8006,22 @@ - + - - + + - - - + + + - - - + + + @@ -8035,12 +8035,12 @@ - - + + - + @@ -8051,13 +8051,13 @@ - - + + - + diff --git a/modules/ui/editors.js b/modules/ui/editors.js index 79018f40..2b9ce44e 100644 --- a/modules/ui/editors.js +++ b/modules/ui/editors.js @@ -1252,18 +1252,18 @@ function refreshAllEditors() { // dynamically loaded editors async function editStates() { if (customization) return; - const Editor = await import("../dynamic/editors/states-editor.js?v=1.99.00"); + const Editor = await import("../dynamic/editors/states-editor.js?v=1.99.05"); Editor.open(); } async function editCultures() { if (customization) return; - const Editor = await import("../dynamic/editors/cultures-editor.js?v=1.96.01"); + const Editor = await import("../dynamic/editors/cultures-editor.js?v=1.99.05"); Editor.open(); } async function editReligions() { if (customization) return; - const Editor = await import("../dynamic/editors/religions-editor.js?v=1.96.00"); + const Editor = await import("../dynamic/editors/religions-editor.js?v=1.99.05"); Editor.open(); } diff --git a/versioning.js b/versioning.js index ad8cd9d1..ca2f82a0 100644 --- a/versioning.js +++ b/versioning.js @@ -1,7 +1,7 @@ "use strict"; // version and caching control -const version = "1.99.04"; // generator version, update each time +const version = "1.99.05"; // generator version, update each time { document.title += " v" + version;