From 1d42788505ded0db7a70c2e031c0fe9f5dfd5247 Mon Sep 17 00:00:00 2001 From: Labyricorn Date: Fri, 17 Jul 2026 00:47:47 -0700 Subject: [PATCH] Fix Windows installer icon configuration --- src-tauri/tauri.conf.json | 77 ++++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 34 deletions(-) diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 355c013..d25b9d3 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -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" + ] + } }