diff --git a/main.js b/main.js index 822260a3..1e819b21 100644 --- a/main.js +++ b/main.js @@ -2,8 +2,7 @@ // https://github.com/Azgaar/Fantasy-Map-Generator "use strict"; -// TODO: pump version to 1.7 -const version = "1.662"; // generator version +const version = "1.7"; // generator version document.title += " v" + version; // Switches to disable/enable logging features @@ -405,11 +404,14 @@ function showWelcomeMessage() { alertMessage.innerHTML = `The Fantasy Map Generator is updated up to version ${version}. This version is compatible with ${changelog}, loaded .map files will be auto-updated.
Join our ${discord} and ${reddit} to ask questions, share maps, discuss the Generator and Worlbuilding, report bugs and propose new features.
diff --git a/modules/ui/markers-overview.js b/modules/ui/markers-overview.js index 0c9c174d..15837774 100644 --- a/modules/ui/markers-overview.js +++ b/modules/ui/markers-overview.js @@ -41,7 +41,6 @@ function overviewMarkers() { if (el.classList.contains("icon-pin")) return pinMarker(el, i); if (el.classList.contains("locks")) return toggleLockStatus(el, i); if (el.classList.contains("icon-trash-empty")) return triggerRemove(i); - // TODO: hidden attribute } function addLines() {