fix(gui-client): use "Firezone" as the application name on Linux (#8223)

The current `.desktop` file uses the `firezone-client-gui` name from the
Tauri config. This looks ugly and unprofessional. Instead, we should
just call this "Firezone".


![image](https://github.com/user-attachments/assets/3c4705fb-3611-4da9-9254-eaee06a8d749)

Resolves: #8205
This commit is contained in:
Thomas Eizinger
2025-02-21 16:26:34 +11:00
committed by GitHub
parent deb47d956e
commit 273d723729
2 changed files with 2 additions and 3 deletions

View File

@@ -37,7 +37,7 @@
"mainBinaryName": "firezone-client-gui",
"identifier": "dev.firezone.client",
"plugins": {},
"productName": "firezone-client-gui",
"productName": "Firezone",
"app": {
"withGlobalTauri": true,
"security": {

View File

@@ -2,6 +2,5 @@
"build": {
"beforeBundleCommand": "bash -c '../../scripts/build/sign.sh ../target/release/Firezone.exe ../target/release/firezone-client-ipc.exe'"
},
"mainBinaryName": "Firezone",
"productName": "Firezone"
"mainBinaryName": "Firezone"
}