diff --git a/index.html b/index.html index d46757e8..4215309a 100644 --- a/index.html +++ b/index.html @@ -24,6 +24,9 @@ font-size: 10px; overflow: hidden; } + #map { + position: absolute; + } #loading > * { pointer-events: none; position: fixed; @@ -113,7 +116,6 @@ id="map" width="100%" height="100%" - style="position: absolute" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" @@ -6159,7 +6161,7 @@ - + diff --git a/modules/dynamic/auto-update.js b/modules/dynamic/auto-update.js index abeee814..6df4b634 100644 --- a/modules/dynamic/auto-update.js +++ b/modules/dynamic/auto-update.js @@ -525,4 +525,9 @@ export function resolveVersionConflicts(version) { // v1.84.0 added grid.cellsDesired to stored data if (!grid.cellsDesired) grid.cellsDesired = rn((graphWidth * graphHeight) / grid.spacing ** 2, -3); } + + if (version < 1.85) { + // v1.84.0 moved intial screen out of maon svg + svg.select("#initial").remove(); + } } diff --git a/modules/io/load.js b/modules/io/load.js index acf05abe..0e3e85de 100644 --- a/modules/io/load.js +++ b/modules/io/load.js @@ -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?v=29052022"); + const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=01062022"); resolveVersionConflicts(versionNumber); } diff --git a/versioning.js b/versioning.js index b6f62996..bc2c4518 100644 --- a/versioning.js +++ b/versioning.js @@ -1,7 +1,7 @@ "use strict"; // version and caching control -const version = "1.84.0"; // generator version, update each time +const version = "1.84.01"; // generator version, update each time { document.title += " v" + version;