chore: supporters update

This commit is contained in:
Azgaar 2022-06-01 23:08:56 +03:00
parent dec09e4bf2
commit 6737501c5d
4 changed files with 5 additions and 5 deletions

View file

@ -6120,7 +6120,7 @@
<script src="modules/ui/stylePresets.js"></script> <script src="modules/ui/stylePresets.js"></script>
<script src="modules/ui/general.js?v=02062022"></script> <script src="modules/ui/general.js?v=02062022"></script>
<script src="modules/ui/options.js?v=29052022"></script> <script src="modules/ui/options.js?v=01062022"></script>
<script src="main.js?v=010620222"></script> <script src="main.js?v=010620222"></script>
<script defer src="modules/relief-icons.js"></script> <script defer src="modules/relief-icons.js"></script>

View file

@ -40,5 +40,5 @@ export const supporters = format(`
Jordan,William Markus,Sidr Dim,Alexander Whittaker,The Next Level,Patrick Valverde,Markus Peham,Daniel Cooper,the Beagles of Neorbus,Marley Moule, Jordan,William Markus,Sidr Dim,Alexander Whittaker,The Next Level,Patrick Valverde,Markus Peham,Daniel Cooper,the Beagles of Neorbus,Marley Moule,
Maximilian Schielke,Johnathan Xavier Hutchinson,Ele,Rita,Randy Ross,John Wick,RedSpaz,cameron cannon,Ian Grau-Fay,Kyle Barrett,Charlotte Wiland, Maximilian Schielke,Johnathan Xavier Hutchinson,Ele,Rita,Randy Ross,John Wick,RedSpaz,cameron cannon,Ian Grau-Fay,Kyle Barrett,Charlotte Wiland,
David Kaul,E. Jason Davis,Cyberate,Atenfox,Sea Wolf,Holly Loveless,Roekai,Alden Z,angel carrillo,Sam Spoerle,S A Rudy,Bird Law Expert,Mira Cyr, David Kaul,E. Jason Davis,Cyberate,Atenfox,Sea Wolf,Holly Loveless,Roekai,Alden Z,angel carrillo,Sam Spoerle,S A Rudy,Bird Law Expert,Mira Cyr,
Aaron Blair,Neyimadd,RLKZ1022 Aaron Blair,Neyimadd,RLKZ1022,DerWolf,Kenji Yamada,Zion
`); `);

View file

@ -73,9 +73,9 @@ document
else if (id === "aboutTab") aboutContent.style.display = "block"; else if (id === "aboutTab") aboutContent.style.display = "block";
}); });
// show popup with a list of Patreon supportes (updated manually, to be replaced with API call) // show popup with a list of Patreon supportes (updated manually)
async function showSupporters() { async function showSupporters() {
const {supporters} = await import("../dynamic/supporters.js?v=23052022"); const {supporters} = await import("../dynamic/supporters.js?v=01062022");
alertMessage.innerHTML = "<ul style='column-count: 5; column-gap: 2em'>" + supporters.map(n => `<li>${n}</li>`).join("") + "</ul>"; alertMessage.innerHTML = "<ul style='column-count: 5; column-gap: 2em'>" + supporters.map(n => `<li>${n}</li>`).join("") + "</ul>";
$("#alert").dialog({resizable: false, title: "Patreon Supporters", width: "54vw", position: {my: "center", at: "center", of: "svg"}}); $("#alert").dialog({resizable: false, title: "Patreon Supporters", width: "54vw", position: {my: "center", at: "center", of: "svg"}});
} }

View file

@ -1,7 +1,7 @@
"use strict"; "use strict";
// version and caching control // version and caching control
const version = "1.84.07"; // generator version, update each time const version = "1.84.08"; // generator version, update each time
{ {
document.title += " v" + version; document.title += " v" + version;