From 9333b64f8d4acfbf0f7c1af99c4c7f57b63a4cac Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 6 May 2023 20:14:14 +0800 Subject: [PATCH] publish new versions (#725) Co-authored-by: amrbashir --- .changes/auto-hide-taskbar-windows.md | 5 ----- .changes/clear-shortuts-linux.md | 5 ----- .changes/fullscreen-hang.md | 6 ------ CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 17 deletions(-) delete mode 100644 .changes/auto-hide-taskbar-windows.md delete mode 100644 .changes/clear-shortuts-linux.md delete mode 100644 .changes/fullscreen-hang.md diff --git a/.changes/auto-hide-taskbar-windows.md b/.changes/auto-hide-taskbar-windows.md deleted file mode 100644 index 5e570a439..000000000 --- a/.changes/auto-hide-taskbar-windows.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, fix auto-hide taskbar can't be shown when maximizing undecorated window. diff --git a/.changes/clear-shortuts-linux.md b/.changes/clear-shortuts-linux.md deleted file mode 100644 index c0d8199a1..000000000 --- a/.changes/clear-shortuts-linux.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Linux, fix `ShortcutManager::unregister_all` making `ShortcutManager::register` succeed but no events are triggered. diff --git a/.changes/fullscreen-hang.md b/.changes/fullscreen-hang.md deleted file mode 100644 index 42a77a1e1..000000000 --- a/.changes/fullscreen-hang.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tao": patch ---- - -On macOS, fix window frozed when starting with fullscreen. - diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d954afdd..b5fe2c1bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.19.1] + +- On Windows, fix auto-hide taskbar can't be shown when maximizing undecorated window. + - [c5d606df](https://github.com/tauri-apps/tao/commit/c5d606dffeb1733ab06fd8c43eb3b9e7b2f553fe) fix(windows): leave space for auto-hidden taskbar for undecorated windows ([#726](https://github.com/tauri-apps/tao/pull/726)) on 2023-04-19 +- On Linux, fix `ShortcutManager::unregister_all` making `ShortcutManager::register` succeed but no events are triggered. + - [ee5dc41f](https://github.com/tauri-apps/tao/commit/ee5dc41f0071c9177304b3697d5b4c21c5734fd4) fix(linux): clear shortcuts instead of replacing it ([#724](https://github.com/tauri-apps/tao/pull/724)) on 2023-04-18 +- On macOS, fix window frozed when starting with fullscreen. + - [71594667](https://github.com/tauri-apps/tao/commit/71594667432c554f46dad06bfce87ba8edf18605) fix(macOS): windows frozen when starting in fullscreen ([#727](https://github.com/tauri-apps/tao/pull/727)) on 2023-05-04 + ## \[0.19.0] - **Breaking change**: All ow specifying the android activity in `android_binding` macro, instead of hard-coded `TauriActivity`. diff --git a/Cargo.toml b/Cargo.toml index a9723047c..cfde87916 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.19.0" +version = "0.19.1" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",