From 7a3923881ebc48a458d900c73d8523bab42faffe Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Apr 2022 21:52:01 +0800 Subject: [PATCH] publish new versions (#357) Co-authored-by: wusyong --- .changes/add-runtime-activation-policy-mac.md | 5 ----- .changes/disable-maximized-resize.md | 5 ----- .changes/refactor-tray-features.md | 5 ----- .changes/windows-fix-menu-item-set-title.md | 5 ----- .changes/windows-set_size-overflow.md | 5 ----- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 4 ++-- 7 files changed, 15 insertions(+), 27 deletions(-) delete mode 100644 .changes/add-runtime-activation-policy-mac.md delete mode 100644 .changes/disable-maximized-resize.md delete mode 100644 .changes/refactor-tray-features.md delete mode 100644 .changes/windows-fix-menu-item-set-title.md delete mode 100644 .changes/windows-set_size-overflow.md diff --git a/.changes/add-runtime-activation-policy-mac.md b/.changes/add-runtime-activation-policy-mac.md deleted file mode 100644 index a89cd8300..000000000 --- a/.changes/add-runtime-activation-policy-mac.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": minor ---- - -Add `EventLoopWindowTargetExtMacOS::set_activation_policy_at_runtime`. diff --git a/.changes/disable-maximized-resize.md b/.changes/disable-maximized-resize.md deleted file mode 100644 index 13d5af09d..000000000 --- a/.changes/disable-maximized-resize.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows and Linux, disable resizing maximized borderless windows. \ No newline at end of file diff --git a/.changes/refactor-tray-features.md b/.changes/refactor-tray-features.md deleted file mode 100644 index faca837b0..000000000 --- a/.changes/refactor-tray-features.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": minor ---- - -**Breaking change:** Renamed the `ayatana` Cargo feature to `ayatana-tray`, now the default feature for tray on Linux, and added the `gtk-tray` feature. diff --git a/.changes/windows-fix-menu-item-set-title.md b/.changes/windows-fix-menu-item-set-title.md deleted file mode 100644 index 4f7dfc05e..000000000 --- a/.changes/windows-fix-menu-item-set-title.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -* On Windows, Fix random characters when changing menu items title through `CustomMenunItem::set_title`. \ No newline at end of file diff --git a/.changes/windows-set_size-overflow.md b/.changes/windows-set_size-overflow.md deleted file mode 100644 index 79bd74c95..000000000 --- a/.changes/windows-set_size-overflow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, Fix `Window::set_inner_size` setting a bigger size than requested. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 07778f8ab..d8471a7eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## \[0.8.0] + +- Add `EventLoopWindowTargetExtMacOS::set_activation_policy_at_runtime`. + - [ef06c508](https://github.com/tauri-apps/tao/commit/ef06c508f1d29e62834eba63b604bf7566b1fef6) Set activation policy at runtime ([#353](https://github.com/tauri-apps/tao/pull/353)) on 2022-03-30 +- On Windows and Linux, disable resizing maximized borderless windows. + - [13c5c996](https://github.com/tauri-apps/tao/commit/13c5c996d15cee9ed829f6e67e786721d8d2eda8) fix(win,linux): disable resizing maximized borderless windows ([#356](https://github.com/tauri-apps/tao/pull/356)) on 2022-03-30 +- **Breaking change:** Renamed the `ayatana` Cargo feature to `ayatana-tray`, now the default feature for tray on Linux, and added the `gtk-tray` feature. + - [40ec796d](https://github.com/tauri-apps/tao/commit/40ec796de4da91640872161ae372124d14777d7f) refactor(tray): split gtk and ayatana appindicator features ([#362](https://github.com/tauri-apps/tao/pull/362)) on 2022-04-05 +- - On Windows, Fix random characters when changing menu items title through `CustomMenunItem::set_title`. + - [e4725bf5](https://github.com/tauri-apps/tao/commit/e4725bf50fb46e830fa5265d765ee596b80e3085) fix(Windows): fix random chars when changing menu item title ([#361](https://github.com/tauri-apps/tao/pull/361)) on 2022-03-31 +- On Windows, Fix `Window::set_inner_size` setting a bigger size than requested. + - [089f3878](https://github.com/tauri-apps/tao/commit/089f3878c5b0ce221d3f405c1215c895ee9fb1ce) fix(Windows): fix `set_inner_size` setting a bigger size, closes [#194](https://github.com/tauri-apps/tao/pull/194) ([#354](https://github.com/tauri-apps/tao/pull/354)) on 2022-04-03 + ## \[0.7.0] - Fire `Event::LoopDestroyed` when the macOS dock `Quit` menu item is clicked. diff --git a/Cargo.toml b/Cargo.toml index bdcb5bc70..bb93b84a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.7.0" +version = "0.8.0" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy", @@ -28,7 +28,7 @@ targets = [ [features] default = [ "tray", "ayatana-tray" ] -tray = [] +tray = [ ] gtk-tray = [ "tray", "libappindicator" ] ayatana-tray = [ "tray", "libayatana-appindicator" ] dox = [ "gtk/dox" ]