123456789101112131415161718192021222324252627 |
- {
- "tauri": {
- "systemTray": {
- "iconPath": "icons/tray-icon.png"
- },
- "bundle": {
- "targets": ["nsis", "updater"],
- "windows": {
- "certificateThumbprint": null,
- "digestAlgorithm": "sha256",
- "timestampUrl": "",
- "webviewInstallMode": {
- "type": "embedBootstrapper",
- "silent": true
- },
- "nsis": {
- "displayLanguageSelector": true,
- "installerIcon": "icons/icon.ico",
- "languages": ["SimpChinese", "English"],
- "license": "../LICENSE",
- "installMode": "perMachine",
- "template": "./template/installer.nsi"
- }
- }
- }
- }
- }
|