Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
2 changed files with 6 additions and 1 deletions
Showing only changes of commit 0925abfd1c - Show all commits

View File

@@ -191,6 +191,11 @@ fn main() {
.plugin(
tauri_plugin_window_state::Builder::default()
.with_filename("app-window-state.json")
// Use *only* POSITION and SIZE state flags, because saving VISIBLE causes the `visible: false` to not take effect
.with_state_flags(
tauri_plugin_window_state::StateFlags::POSITION
| tauri_plugin_window_state::StateFlags::SIZE,
)
.build(),
)
.setup(|app| {

View File

@@ -67,7 +67,7 @@
"width": 1280,
"minHeight": 700,
"minWidth": 1100,
"visible": true,
"visible": false,
"zoomHotkeysEnabled": false,
"decorations": false
}