gitbutler/src-tauri/tauri.conf.json

68 lines
1.4 KiB
JSON
Raw Normal View History

2023-01-31 17:55:57 +03:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../build",
"withGlobalTauri": false
},
"package": {
"productName": "GitButler"
},
2023-01-31 17:55:57 +03:00
"tauri": {
"allowlist": {
"all": false,
2023-02-13 15:38:57 +03:00
"shell": {
"all": false,
"open": true
},
2023-01-31 17:55:57 +03:00
"dialog": {
"all": false,
"open": true
2023-02-01 14:43:29 +03:00
},
"window": {
"all": false,
"startDragging": true
2023-02-02 18:26:38 +03:00
},
"path": {
"all": true
2023-01-31 17:55:57 +03:00
}
},
"bundle": {
"active": true,
2023-02-14 17:36:49 +03:00
"identifier": "com.gitbutler.app.dev",
2023-01-31 17:55:57 +03:00
"category": "DeveloperTool",
2023-02-03 12:36:51 +03:00
"copyright": "Copyright © 2023 GitButler. All rights reserved.",
2023-01-31 17:55:57 +03:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2023-02-15 11:17:58 +03:00
"targets": ["dmg", "updater"]
2023-01-31 17:55:57 +03:00
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "git-butler-tauri",
2023-02-01 14:43:29 +03:00
"width": 800,
"hiddenTitle": true,
2023-02-09 15:26:40 +03:00
"theme": "Dark",
"titleBarStyle": "Overlay",
"minWidth": 600,
"minHeight": 300
2023-01-31 17:55:57 +03:00
}
2023-02-10 17:39:48 +03:00
],
"systemTray": {
"iconPath": "icons/tray.png",
"iconAsTemplate": true
}
2023-01-31 17:55:57 +03:00
}
}