version info and hash update

This commit is contained in:
Azgaar 2022-05-30 00:37:03 +03:00
parent a392223ef6
commit d5f202ba47
6 changed files with 40 additions and 37 deletions

View file

@ -427,7 +427,7 @@ async function parseLoadedData(data) {
{
// dynamically import and run auto-udpdate script
const versionNumber = parseFloat(params[0]);
const {resolveVersionConflicts} = await import("../dynamic/auto-update.js");
const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=29052022");
resolveVersionConflicts(versionNumber);
}

View file

@ -1119,12 +1119,12 @@ function refreshAllEditors() {
// dynamically loaded editors
async function editStates() {
if (customization) return;
const StateEditor = await import("../dynamic/editors/states-editor.js?v=20052022");
const StateEditor = await import("../dynamic/editors/states-editor.js?v=29052022");
StateEditor.open();
}
async function editCultures() {
if (customization) return;
const CulturesEditor = await import("../dynamic/editors/cultures-editor.js?v=20052022");
const CulturesEditor = await import("../dynamic/editors/cultures-editor.js?v=29052022");
CulturesEditor.open();
}

View file

@ -623,7 +623,7 @@ function changeEra() {
}
async function openTemplateSelectionDialog() {
const HeightmapSelectionDialog = await import("../dynamic/heightmap-selection.js");
const HeightmapSelectionDialog = await import("../dynamic/heightmap-selection.js?v=290520222");
HeightmapSelectionDialog.open();
}