feat: add application icons to main window and build configuration

This commit is contained in:
Ümit Tunç
2026-05-23 13:18:51 +03:00
parent cd90beb42c
commit 645ad5b36e
4 changed files with 5 additions and 2 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 125 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 418 KiB

+1
View File
@@ -11,6 +11,7 @@ function createWindow() {
height: 820, height: 820,
minWidth: 1000, minWidth: 1000,
minHeight: 700, minHeight: 700,
icon: path.join(__dirname, 'docs', 'dekupai-logo.png'), // Custom app logo
frame: false, // Sleek frameless design frame: false, // Sleek frameless design
transparent: false, // Set to false to avoid rendering bugs on some Windows setups transparent: false, // Set to false to avoid rendering bugs on some Windows setups
backgroundColor: '#0a0a0f', // Dark baseline background backgroundColor: '#0a0a0f', // Dark baseline background
+4 -2
View File
@@ -37,11 +37,13 @@
"!node_modules/**" "!node_modules/**"
], ],
"win": { "win": {
"target": "nsis" "target": "nsis",
"icon": "build/icon.ico"
}, },
"mac": { "mac": {
"target": "dmg", "target": "dmg",
"category": "public.app-category.graphics-design" "category": "public.app-category.graphics-design",
"icon": "build/icon.png"
} }
} }
} }