Skip to content

Commit

Permalink
v 1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Azgaar committed Oct 6, 2021
1 parent 126f662 commit 58dfbf3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
16 changes: 9 additions & 7 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -405,11 +404,14 @@ function showWelcomeMessage() {
alertMessage.innerHTML = `The Fantasy Map Generator is updated up to version <b>${version}</b>.
This version is compatible with ${changelog}, loaded <i>.map</i> files will be auto-updated.
<ul>Main changes:
<li>Add custom fonts dialog</li>
<li>Save and load <i>.map</i> files to Dropbox</li>
<li>Ability to add control points on river edit</li>
<li>New heightmap template: Taklamakan</li>
<li>Option to not scale labels on zoom</li>
<li>New marker types</li>
<li>New markers editor</li>
<li>Markers overview screen</li>
<li>Markers regeneration menu</li>
<li>Burg editor update</li>
<li>Editable theme color</li>
<li>Add font dialog</li>
<li>Save to Dropbox</li>
</ul>
<p>Join our ${discord} and ${reddit} to ask questions, share maps, discuss the Generator and Worlbuilding, report bugs and propose new features.</p>
Expand Down
1 change: 0 additions & 1 deletion modules/ui/markers-overview.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 58dfbf3

Please sign in to comment.