use tauri_plugin_window_state::{AppHandleExt, StateFlags}; pub fn run() { // 单例检测 @@ -32,6 +33,7 @@ pub fn run() { #[allow(unused_mut)] let mut builder = tauri::Builder::default() .plugin(tauri_plugin_window_state::Builder::new().build()) .plugin(tauri_plugin_updat...
Describe the bug Before the 2.0.0-alpha.9 it was working fine with: import { appWindow, PhysicalPosition, PhysicalSize } from '@tauri-apps/api/window'; const position: PhysicalPosition = await appWindow.innerPosition(); const size: Physi...
Updated the documentation for the plugin window customization. Added a section for manual implementation of data-tauri-drag-region as suggested in [docs] Improve window customization guide #539. Updated code highlight for capabilities config Added a note about data-tauri-drag-region stating that the...