v1.5.43 update screen change

This commit is contained in:
Azgaar 2021-02-20 18:37:43 +03:00
parent bd7b7c2a5d
commit d61970de1f
2 changed files with 7 additions and 6 deletions

View file

@ -2003,8 +2003,8 @@ svg.button {
} }
#alertMessage ul { #alertMessage ul {
padding-left: 15px; padding-left: 1.2em;
margin: 10px 0; margin: 1em 0;
} }
.pseudoLink { .pseudoLink {

View file

@ -338,7 +338,7 @@ function applyDefaultBiomesSystem() {
} }
function showWelcomeMessage() { function showWelcomeMessage() {
const post = link("https://www.reddit.com/r/FantasyMapGenerator/comments/ft5b41/update_v15/", "Main changes:"); // announcement on Reddit const post = "Main changes:" //link("https://www.reddit.com/r/FantasyMapGenerator/comments/ft5b41/update_v15/", "Main changes:");
const changelog = link("https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Changelog", "previous version"); const changelog = link("https://github.com/Azgaar/Fantasy-Map-Generator/wiki/Changelog", "previous version");
const reddit = link("https://www.reddit.com/r/FantasyMapGenerator", "Reddit community"); const reddit = link("https://www.reddit.com/r/FantasyMapGenerator", "Reddit community");
const discord = link("https://discordapp.com/invite/X7E84HU", "Discord server"); const discord = link("https://discordapp.com/invite/X7E84HU", "Discord server");
@ -347,18 +347,19 @@ function showWelcomeMessage() {
alertMessage.innerHTML = `The Fantasy Map Generator is updated up to version <b>${version}</b>. 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. This version is compatible with ${changelog}, loaded <i>.map</i> files will be auto-updated.
<ul>${post} <ul>${post}
<li>Emblems generation</li> <li>State, province and burg Emblems generation</li>
<li>Emblem editor integrated with ${link("https://azgaar.github.io/Armoria", "Armoria")}</li> <li>Emblem editor integrated with ${link("https://azgaar.github.io/Armoria", "Armoria")} our new dedicated Heraldry generator and editor</li>
<li>Burg editor screen update</li> <li>Burg editor screen update</li>
<li>Speak name functionality</li> <li>Speak name functionality</li>
</ul> </ul>
<img src="https://raw.githubusercontent.com/Azgaar/Armoria/master/public/preview.png" alt="Armoria preview" width="100%" height="auto"/>
<p>Join our ${discord} and ${reddit} to ask questions, share maps, discuss the Generator and Worlbuilding, report bugs and propose new features.</p> <p>Join our ${discord} and ${reddit} to ask questions, share maps, discuss the Generator and Worlbuilding, report bugs and propose new features.</p>
<span>Thanks for all supporters on ${patreon}!</i></span>`; <span>Thanks for all supporters on ${patreon}!</i></span>`;
$("#alert").dialog( $("#alert").dialog(
{resizable: false, title: "Fantasy Map Generator update", width: "28em", {resizable: false, title: "Fantasy Map Generator update", width: "28em",
buttons: {OK: function() {$(this).dialog("close")}}, buttons: {OK: function() {$(this).dialog("close")}},
position: {my: "center", at: "center", of: "svg"}, position: {my: "center center-80", at: "center", of: "svg"},
close: () => localStorage.setItem("version", version)} close: () => localStorage.setItem("version", version)}
); );
} }