1 parent f607c1d commit 75b4f73Copy full SHA for 75b4f73
3 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "llm-gate",
3
- "version": "0.1.17",
+ "version": "0.2.1",
4
"private": true,
5
"type": "module",
6
"homepage": "https://github.com/xuanzhi33/LLM-Gate",
src-tauri/src/lib.rs
@@ -33,7 +33,7 @@ pub fn run() {
33
#[cfg(target_os = "macos")]
34
35
let app = window.app_handle();
36
- app.set_dock_visibility(false);
+ let _ = app.set_dock_visibility(false);
37
}
38
39
})
src/utils/tray.ts
@@ -65,6 +65,7 @@ async function setupTray(t: ReturnType<typeof useI18n>['t']) {
65
66
},
67
showMenuOnLeftClick: false,
68
+ iconAsTemplate: true,
69
icon: trayImage,
70
71
0 commit comments