chore: bump version

This commit is contained in:
reya
2024-07-02 14:36:16 +07:00
parent 04706a6d7c
commit c52b20ca80
7 changed files with 18 additions and 4 deletions

View File

@@ -447,6 +447,9 @@ try {
async openMainWindow() : Promise<void> {
await TAURI_INVOKE("open_main_window");
},
async forceQuit() : Promise<void> {
await TAURI_INVOKE("force_quit");
},
async setBadge(count: number) : Promise<void> {
await TAURI_INVOKE("set_badge", { count });
}