feat: add dragon logo icons for window, tray, and taskbar (all platforms)
Some checks failed
Build Dragon Wind Desktop / Linux (AppImage) (push) Failing after 8s
Build Dragon Wind Desktop / Create Release (push) Failing after 0s

This commit is contained in:
Zac Gaetano 2026-04-08 22:48:18 -04:00
parent 75c1b2297d
commit e5f5255a41
6 changed files with 7 additions and 0 deletions

BIN
assets/icon-256.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
assets/icon.icns Normal file

Binary file not shown.

BIN
assets/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

BIN
assets/tray-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -81,7 +81,14 @@ function updateTrayMenu(stats = null) {
// ── Main Window ───────────────────────────────────────────────────────────────
function createWindow() {
const winIcon = process.platform === "win32"
? path.join(__dirname, "../../assets/icon.ico")
: process.platform === "darwin"
? path.join(__dirname, "../../assets/icon.icns")
: path.join(__dirname, "../../assets/icon.png");
mainWindow = new BrowserWindow({
icon: winIcon,
width: 480,
height: 680,
minWidth: 400,