Files
firezone/rust/gui-client/src-tauri/tauri.conf.json
Reactor Scram 176ef052a5 feat(rust/gui-client): add "update ready" notification dot to the tray icon using a runtime compositor (#6432)
Also adds a "Download update" button in the bottom section of the tray
menu when an update is ready.

<img width="258" alt="image"
src="https://github.com/user-attachments/assets/73d31ad2-5eb8-4cfd-9164-39fcad2ba031">

---------

Signed-off-by: Reactor Scram <ReactorScram@users.noreply.github.com>
2024-08-28 14:59:52 +00:00

90 lines
2.1 KiB
JSON

{
"build": {
"beforeDevCommand": "",
"beforeBuildCommand": "",
"devPath": "../src",
"distDir": "../src",
"withGlobalTauri": true
},
"package": {
"productName": "firezone-client-gui"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": false
}
},
"bundle": {
"active": true,
"deb": {
"files": {
"/usr/lib/systemd/system/firezone-client-ipc.service": "./deb_files/firezone-client-ipc.service",
"/usr/lib/sysusers.d/firezone-client-ipc.conf": "./deb_files/sysusers.conf"
}
},
"targets": ["deb", "msi"],
"identifier": "dev.firezone.client",
"icon": [
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/32x32.png",
"icons/icon.ico",
"icons/icon.png"
],
"publisher": "Firezone",
"shortDescription": "Firezone",
"windows": {
"wix": {
"bannerPath": "./win_files/banner.png",
"componentRefs": ["FirezoneClientIpcService"],
"dialogImagePath": "./win_files/install_dialog.png",
"fragmentPaths": ["./win_files/service.wxs"],
"template": "./win_files/main.wxs"
}
}
},
"security": {
"csp": null
},
"systemTray": {
"iconPath": "icons/tray/Busy layer.png",
"iconAsTemplate": true
},
"windows": [
{
"label": "about",
"title": "About Firezone",
"url": "about.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "settings",
"title": "Settings",
"url": "settings.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
},
{
"label": "welcome",
"title": "Welcome",
"url": "welcome.html",
"fullscreen": false,
"resizable": true,
"width": 640,
"height": 480,
"visible": false
}
]
}
}