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

@@ -255,3 +255,9 @@ pub fn open_main_window(app: tauri::AppHandle) {
window.make_transparent().unwrap();
}
}
#[tauri::command]
#[specta::specta]
pub fn force_quit() {
std::process::exit(0);
}

View File

@@ -127,6 +127,7 @@ fn main() {
commands::window::reload_column,
commands::window::open_window,
commands::window::open_main_window,
commands::window::force_quit,
commands::window::set_badge
]);

View File

@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"productName": "Lume",
"version": "4.0.13",
"version": "4.0.14",
"identifier": "nu.lume.Lume",
"build": {
"beforeBuildCommand": "pnpm desktop:build",