Reverted debouncing logic and transparent window mode that were causing issues. Kept the zoom step reduction from 0.2 to 0.1 for finer control.
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "CodeNomad",
|
|
"version": "0.13.3",
|
|
"identifier": "ai.neuralnomads.codenomad.client",
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev:bootstrap",
|
|
"beforeBuildCommand": "npm run bundle:server",
|
|
"frontendDist": "resources/ui-loading"
|
|
},
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "CodeNomad",
|
|
"url": "loading.html",
|
|
"width": 1400,
|
|
"height": 900,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"center": true,
|
|
"resizable": true,
|
|
"fullscreen": false,
|
|
"decorations": true,
|
|
"theme": "Dark",
|
|
"backgroundColor": "#1a1a1a",
|
|
"zoomHotkeysEnabled": true
|
|
}
|
|
],
|
|
"security": {
|
|
"assetProtocol": {
|
|
"scope": [
|
|
"**"
|
|
]
|
|
},
|
|
"capabilities": [
|
|
"main-window-native-dialogs"
|
|
]
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"resources": [
|
|
"resources/server",
|
|
"resources/ui-loading"
|
|
],
|
|
"icon": [
|
|
"icon.icns",
|
|
"icon.ico",
|
|
"icon.png"
|
|
],
|
|
"targets": [
|
|
"app",
|
|
"appimage",
|
|
"deb",
|
|
"rpm",
|
|
"nsis"
|
|
]
|
|
}
|
|
}
|