Skip to content

Commit 58dfbf3

Browse files
author
Azgaar
committed
v 1.7
1 parent 126f662 commit 58dfbf3

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

main.js

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
// https://github.com/Azgaar/Fantasy-Map-Generator
33

44
"use strict";
5-
// TODO: pump version to 1.7
6-
const version = "1.662"; // generator version
5+
const version = "1.7"; // generator version
76
document.title += " v" + version;
87

98
// Switches to disable/enable logging features
@@ -405,11 +404,14 @@ function showWelcomeMessage() {
405404
alertMessage.innerHTML = `The Fantasy Map Generator is updated up to version <b>${version}</b>.
406405
This version is compatible with ${changelog}, loaded <i>.map</i> files will be auto-updated.
407406
<ul>Main changes:
408-
<li>Add custom fonts dialog</li>
409-
<li>Save and load <i>.map</i> files to Dropbox</li>
410-
<li>Ability to add control points on river edit</li>
411-
<li>New heightmap template: Taklamakan</li>
412-
<li>Option to not scale labels on zoom</li>
407+
<li>New marker types</li>
408+
<li>New markers editor</li>
409+
<li>Markers overview screen</li>
410+
<li>Markers regeneration menu</li>
411+
<li>Burg editor update</li>
412+
<li>Editable theme color</li>
413+
<li>Add font dialog</li>
414+
<li>Save to Dropbox</li>
413415
</ul>
414416
415417
<p>Join our ${discord} and ${reddit} to ask questions, share maps, discuss the Generator and Worlbuilding, report bugs and propose new features.</p>

modules/ui/markers-overview.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ function overviewMarkers() {
4141
if (el.classList.contains("icon-pin")) return pinMarker(el, i);
4242
if (el.classList.contains("locks")) return toggleLockStatus(el, i);
4343
if (el.classList.contains("icon-trash-empty")) return triggerRemove(i);
44-
// TODO: hidden attribute
4544
}
4645

4746
function addLines() {

0 commit comments

Comments
 (0)