Fix Windows installer icon configuration
This commit is contained in:
+43
-34
@@ -1,35 +1,44 @@
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "Thinkloom",
|
||||
"version": "0.1.0",
|
||||
"identifier": "com.thinkloom.desktop",
|
||||
"build": {
|
||||
"beforeDevCommand": "npm run desktop:dev",
|
||||
"devUrl": "http://localhost:1420",
|
||||
"beforeBuildCommand": "npm run desktop:build",
|
||||
"frontendDist": "../desktop-dist"
|
||||
},
|
||||
"app": {
|
||||
"windows": [{
|
||||
"title": "Thinkloom",
|
||||
"width": 1440,
|
||||
"height": 920,
|
||||
"minWidth": 960,
|
||||
"minHeight": 680,
|
||||
"resizable": true,
|
||||
"fullscreen": false,
|
||||
"center": true
|
||||
}],
|
||||
"security": {
|
||||
"csp": "default-src 'self'; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1:* https://api.openai.com; media-src 'self' blob:; object-src 'none'"
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": ["msi", "nsis"],
|
||||
"shortDescription": "Ideas into writing, without losing the thread.",
|
||||
"longDescription": "A local-first writing studio for exploring ideas, shaping drafts, and preserving creative process history.",
|
||||
"category": "Productivity",
|
||||
"copyright": "Copyright © 2026 Thinkloom"
|
||||
}
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "Thinkloom",
|
||||
"version": "0.1.0",
|
||||
"identifier": "com.thinkloom.desktop",
|
||||
"build": {
|
||||
"beforeDevCommand": "npm run desktop:dev",
|
||||
"devUrl": "http://localhost:1420",
|
||||
"beforeBuildCommand": "npm run desktop:build",
|
||||
"frontendDist": "../desktop-dist"
|
||||
},
|
||||
"app": {
|
||||
"windows": [
|
||||
{
|
||||
"title": "Thinkloom",
|
||||
"width": 1440,
|
||||
"height": 920,
|
||||
"minWidth": 960,
|
||||
"minHeight": 680,
|
||||
"resizable": true,
|
||||
"fullscreen": false,
|
||||
"center": true
|
||||
}
|
||||
],
|
||||
"security": {
|
||||
"csp": "default-src 'self'; img-src 'self' data: blob:; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src 'self' ipc: http://ipc.localhost http://127.0.0.1:* https://api.openai.com; media-src 'self' blob:; object-src 'none'"
|
||||
}
|
||||
},
|
||||
"bundle": {
|
||||
"active": true,
|
||||
"targets": [
|
||||
"msi",
|
||||
"nsis"
|
||||
],
|
||||
"shortDescription": "Ideas into writing, without losing the thread.",
|
||||
"longDescription": "A local-first writing studio for exploring ideas, shaping drafts, and preserving creative process history.",
|
||||
"category": "Productivity",
|
||||
"copyright": "Copyright © 2026 Thinkloom",
|
||||
"icon": [
|
||||
"icons/icon.ico",
|
||||
"icons/icon.png"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user