update supporters

This commit is contained in:
Azgaar 2022-05-23 20:20:59 +03:00
parent b144191621
commit 8cb556262b
3 changed files with 3 additions and 3 deletions

View file

@ -6139,7 +6139,7 @@
<script src="modules/ui/stylePresets.js"></script>
<script src="modules/ui/general.js?v=18052022"></script>
<script src="modules/ui/options.js?v=14052022"></script>
<script src="modules/ui/options.js?v=23052022"></script>
<script src="main.js?v=15052022"></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,
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,
Aaron Blair
Aaron Blair,Neyimadd,RLKZ1022
`);

View file

@ -75,7 +75,7 @@ document
// show popup with a list of Patreon supportes (updated manually, to be replaced with API call)
async function showSupporters() {
const {supporters} = await import("../dynamic/supporters.js");
const {supporters} = await import("../dynamic/supporters.js?v=23052022");
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"}});
}