1234567891011121314151617181920212223242526272829 |
- {
- "$schema": "../node_modules/@tauri-apps/cli/schema.json",
- "tauri": {
- "systemTray": {
- "iconPath": "icons/tray-icon.ico"
- },
- "bundle": {
- "identifier": "io.github.clash-verge-rev.clash-verge-rev",
- "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"
- }
- }
- }
- }
- }
|