diff --git a/main.js b/main.js
index 53aa7235..5c1fbb89 100644
--- a/main.js
+++ b/main.js
@@ -349,8 +349,7 @@ function showWelcomeMessage() {
${post}
- River overview and River editor rework
- River generation code refactored and optimized
-
- - Rivers discharge (flux) properly calculated
+ - Rivers discharge (flux) and mouth width calculated
- Lake editor rework
- Lake type defined dynamically based on evaporation and river system
- Lake flux, inlets and outlet tracked properly
@@ -365,7 +364,7 @@ function showWelcomeMessage() {
$("#alert").dialog(
{resizable: false, title: "Fantasy Map Generator update", width: "28em",
buttons: {OK: function() {$(this).dialog("close")}},
- position: {my: "center center-80", at: "center", of: "svg"},
+ position: {my: "center center-4em", at: "center", of: "svg"},
close: () => localStorage.setItem("version", version)}
);
}
diff --git a/modules/ui/options.js b/modules/ui/options.js
index 56f633be..26e3329e 100644
--- a/modules/ui/options.js
+++ b/modules/ui/options.js
@@ -89,7 +89,8 @@ function showSupporters() {
ThatGuyGW,Dee Chiu,MontyBoosh,Achillain,Jaden,SashaTK,Steve Johnson,Pierrick Bertrand,Jared Kennedy,Dylan Devenny,Kyle Robertson,Andrew Rostaing,Daniel Gill,
Char,Jack,Barna CsĂkos,Ian Rousseau,Nicholas Grabstas,Tom Van Orden jr,Bryan Brake,Akylos,Riley Seaman,MaxOliver,Evan-DiLeo,Alex Debus,Joshua Vaught,
Kyle S,Eric Moore,Dean Dunakin,Uniquenameosaurus,WarWizardGames,Chance Mena,Jan Ka,Miguel Alejandro,Dalton Clark,Simon Drapeau,Radovan Zapletal,Jmmat6,
- Justa Badge,Blargh Blarghmoomoo,Vanessa Anjos,Grant A. Murray,Akirsop,Rikard Wolff,Jake Fish,teco 47,Antiroo,Jakob Siegel,Guilherme Aguiar,Jarno Hallikainen`;
+ Justa Badge,Blargh Blarghmoomoo,Vanessa Anjos,Grant A. Murray,Akirsop,Rikard Wolff,Jake Fish,teco 47,Antiroo,Jakob Siegel,Guilherme Aguiar,Jarno Hallikainen,
+ Justin Mcclain,Kristin Chernoff,Rowland Kingman,Esther Busch,Grayson McClead,Austin,Hakon the Viking`;
const array = supporters.replace(/(?:\r\n|\r|\n)/g, "").split(",").map(v => capitalize(v.trim())).sort();
alertMessage.innerHTML = "" + array.map(n => `- ${n}
`).join("") + "
";