feat: polish gameplay and admin flow

This commit is contained in:
Jeremy Brandenburger
2026-04-03 11:59:24 +02:00
parent c8003cc77c
commit f5f57c3e4d
72 changed files with 2286 additions and 502 deletions
-6
View File
@@ -119,12 +119,6 @@ async function downloadAll() {
const slug = name.replace(/[^a-z0-9]/gi, '_').toLowerCase();
const outPath = path.join(ICONS_DIR, slug + '.svg');
if (fs.existsSync(outPath)) {
console.log(` ✓ skip ${name}`);
ok++;
continue;
}
// Build GitHub raw URL (spaces → %20)
const encoded = encodeURIComponent(folder) + '/' + encodeURIComponent(file + '.svg');
const url = `${BASE_URL}/${encoded}`;