b408067cd9
Add frontend/assets/icons/GitpubDesktop.icns and update src-tauri/tauri.conf.json to reference the new ICNS path so the macOS build uses the provided icon. Also change package.json name from "gitpub-desktop" to "Gitpub Desktop" (display/casing) for consistency.
39 lines
834 B
JSON
39 lines
834 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "gitpub-desktop",
|
|
"version": "0.1.0",
|
|
"identifier": "com.andrewzambazos.gitpub-desktop",
|
|
"build": {
|
|
"frontendDist": "../frontend"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"macOSPrivateApi": true,
|
|
"windows": [
|
|
{
|
|
"title": "Gitpub Desktop",
|
|
"width": 1320,
|
|
"height": 860,
|
|
"minWidth": 1024,
|
|
"minHeight": 680,
|
|
"decorations": false,
|
|
"transparent": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"../frontend/assets/icons/GitpubDesktop.icns",
|
|
"../frontend/assets/icons/GitpubDesktop-Icon.ico"
|
|
]
|
|
}
|
|
}
|