diff --git a/.changes/android-loop-destroyed.md b/.changes/android-loop-destroyed.md deleted file mode 100644 index ed6ac21e..00000000 --- a/.changes/android-loop-destroyed.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -tao: patch ---- - -Emit `Event::LoopDestroyed` on activity destroy on Android. diff --git a/.changes/maximize-undecorated-window.md b/.changes/maximize-undecorated-window.md deleted file mode 100644 index 6ba3d77f..00000000 --- a/.changes/maximize-undecorated-window.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -tao: patch ---- - -Fix maximized windows have empty edges when using auto hide task bar on Windows diff --git a/CHANGELOG.md b/CHANGELOG.md index 220d5819..23ef9370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## \[0.34.5] + +- [`92e22209`](https://github.com/tauri-apps/tao/commit/92e22209fb58248449175b5b86697243d6a93db2) ([#1152](https://github.com/tauri-apps/tao/pull/1152) by [@lucasfernog](https://github.com/tauri-apps/tao/../../lucasfernog)) Emit `Event::LoopDestroyed` on activity destroy on Android. +- [`da1514be`](https://github.com/tauri-apps/tao/commit/da1514be09993ea4aace8c64cfdf0af14f22b818) ([#1150](https://github.com/tauri-apps/tao/pull/1150) by [@Legend-Master](https://github.com/tauri-apps/tao/../../Legend-Master)) Fix maximized windows have empty edges when using auto hide task bar on Windows + ## \[0.34.4] - [`25f2c58a`](https://github.com/tauri-apps/tao/commit/25f2c58aca96215113d1a4feae5c854e3349cf06) ([#1148](https://github.com/tauri-apps/tao/pull/1148) by [@lucasfernog](https://github.com/tauri-apps/tao/../../lucasfernog)) Trigger `WindowEvent::Destroyed` when the Android activity is destroyed. In this case, the app should either exit by setting the control flow to `ControlFlow::ExitWithCode` or NOT call the create() external function when the activity is recreated and `onCreate` is called, handling how to recreate the app window via a separate hook that can leverage the existing tao event loop. diff --git a/Cargo.lock b/Cargo.lock index a85cac25..be7aa179 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "tao" -version = "0.34.4" +version = "0.34.5" dependencies = [ "bitflags 2.8.0", "block2 0.6.0", diff --git a/Cargo.toml b/Cargo.toml index 1c1608f0..1174e762 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.34.4" +version = "0.34.5" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",