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

@ -70,4 +70,4 @@ jobs:
releaseDraft: true
prerelease: false
args: ${{ matrix.args }}
includeDebug: true
includeDebug: false

View File

@ -24,6 +24,8 @@ export const Column = memo(function Column({
const [isCreated, setIsCreated] = useState(false);
const repositionWebview = useCallback(async () => {
if (!container?.current) throw new Error("something wrong.");
const newRect = container.current.getBoundingClientRect();
await invoke("reposition_column", {
label: webviewLabel,
@ -33,6 +35,8 @@ export const Column = memo(function Column({
}, []);
const resizeWebview = useCallback(async () => {
if (!container?.current) throw new Error("something wrong.");
const newRect = container.current.getBoundingClientRect();
await invoke("resize_column", {
label: webviewLabel,

View File

@ -13,9 +13,9 @@ import * as ScrollArea from "@radix-ui/react-scroll-area";
import * as Tabs from "@radix-ui/react-tabs";
import { useQuery } from "@tanstack/react-query";
import { createFileRoute } from "@tanstack/react-router";
import { invoke } from "@tauri-apps/api/core";
import { Menu, MenuItem, PredefinedMenuItem } from "@tauri-apps/api/menu";
import { getCurrent } from "@tauri-apps/api/window";
import { exit } from "@tauri-apps/plugin-process";
import { open } from "@tauri-apps/plugin-shell";
import { type ReactNode, useCallback, useEffect, useRef } from "react";
import { Virtualizer } from "virtua";
@ -98,7 +98,7 @@ function Screen() {
PredefinedMenuItem.new({ item: "Separator" }),
MenuItem.new({
text: "Quit",
action: async () => await exit(0),
action: async () => await invoke("force_quit"),
}),
]);

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 });
}

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",