Switch to v2 ocean logo, archive v1, update icons, remove key for CWS upload, and add zip script

This commit is contained in:
2026-09-08 15:26:15 -07:00
parent a74281c531
commit 77b0b3b431
12 changed files with 66 additions and 1 deletions

13
scripts/generate-icons.js Normal file
View File

@@ -0,0 +1,13 @@
import sharp from 'sharp';
import fs from 'fs';
const src = 'public/icons/OpenScript_v2.png';
const sizes = [16, 32, 48, 128];
for (const s of sizes) {
await sharp(src)
.resize(s, s, { fit: 'contain' })
.png()
.toFile(`public/icons/icon-${s}.png`);
console.log(`✓ Generated icon-${s}.png`);
}