Upload fastsearch-tauri/src-tauri/tauri.conf.json
Browse files
fastsearch-tauri/src-tauri/tauri.conf.json
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"build": {
|
| 3 |
+
"beforeBuildCommand": "",
|
| 4 |
+
"beforeDevCommand": "",
|
| 5 |
+
"devPath": "../ui",
|
| 6 |
+
"distDir": "../ui",
|
| 7 |
+
"withGlobalTauri": true
|
| 8 |
+
},
|
| 9 |
+
"tauri": {
|
| 10 |
+
"allowlist": {
|
| 11 |
+
"all": false,
|
| 12 |
+
"shell": {
|
| 13 |
+
"all": false,
|
| 14 |
+
"open": true
|
| 15 |
+
},
|
| 16 |
+
"window": {
|
| 17 |
+
"all": false,
|
| 18 |
+
"create": true,
|
| 19 |
+
"center": true,
|
| 20 |
+
"requestUserAttention": true,
|
| 21 |
+
"setFocus": true,
|
| 22 |
+
"setPosition": true,
|
| 23 |
+
"setSize": true,
|
| 24 |
+
"setAlwaysOnTop": true,
|
| 25 |
+
"show": true,
|
| 26 |
+
"hide": true,
|
| 27 |
+
"close": true,
|
| 28 |
+
"startDragging": true
|
| 29 |
+
}
|
| 30 |
+
},
|
| 31 |
+
"bundle": {
|
| 32 |
+
"active": true,
|
| 33 |
+
"category": "DeveloperTool",
|
| 34 |
+
"copyright": "",
|
| 35 |
+
"deb": {
|
| 36 |
+
"depends": []
|
| 37 |
+
},
|
| 38 |
+
"externalBin": [],
|
| 39 |
+
"icon": [
|
| 40 |
+
"icons/32x32.png",
|
| 41 |
+
"icons/128x128.png",
|
| 42 |
+
"icons/128x128@2x.png",
|
| 43 |
+
"icons/icon.ico"
|
| 44 |
+
],
|
| 45 |
+
"identifier": "com.fastseek.app",
|
| 46 |
+
"longDescription": "",
|
| 47 |
+
"macOS": {
|
| 48 |
+
"entitlements": null,
|
| 49 |
+
"exceptionDomain": "",
|
| 50 |
+
"frameworks": [],
|
| 51 |
+
"providerShortName": null,
|
| 52 |
+
"signingIdentity": null
|
| 53 |
+
},
|
| 54 |
+
"resources": [],
|
| 55 |
+
"shortDescription": "",
|
| 56 |
+
"targets": "all",
|
| 57 |
+
"windows": {
|
| 58 |
+
"certificateThumbprint": null,
|
| 59 |
+
"digestAlgorithm": "sha256",
|
| 60 |
+
"timestampUrl": ""
|
| 61 |
+
}
|
| 62 |
+
},
|
| 63 |
+
"security": {
|
| 64 |
+
"csp": null
|
| 65 |
+
},
|
| 66 |
+
"updater": {
|
| 67 |
+
"active": false
|
| 68 |
+
},
|
| 69 |
+
"systemTray": {
|
| 70 |
+
"iconPath": "icons/icon.png",
|
| 71 |
+
"iconAsTemplate": true
|
| 72 |
+
},
|
| 73 |
+
"windows": [
|
| 74 |
+
{
|
| 75 |
+
"fullscreen": false,
|
| 76 |
+
"height": 520,
|
| 77 |
+
"resizable": false,
|
| 78 |
+
"title": "FastSeek",
|
| 79 |
+
"width": 800,
|
| 80 |
+
"decorations": false,
|
| 81 |
+
"transparent": true,
|
| 82 |
+
"alwaysOnTop": true,
|
| 83 |
+
"skipTaskbar": true,
|
| 84 |
+
"visible": false,
|
| 85 |
+
"center": true
|
| 86 |
+
}
|
| 87 |
+
]
|
| 88 |
+
}
|
| 89 |
+
}
|