From 3b35157ff6d39d1b8ebb0bf386caa55bf6470086 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 14 Jul 2023 07:27:43 -0300 Subject: [PATCH] Publish New Versions (#744) Co-authored-by: lucasfernog --- .changes/drag-window-cursor-position.md | 5 ----- .changes/implementTaskbarProgress.md | 5 ----- .changes/ios-universal-links.md | 5 ----- .changes/macos-fix-set-tray-menu.md | 5 ----- .changes/macos-native-image-menu.md | 5 ----- .changes/support-open-file.md | 5 ----- .changes/windows-fix-leak-on-update-tray.md | 5 ----- .changes/windows-maximized-resizable.md | 5 ----- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 6 +++--- 10 files changed, 14 insertions(+), 43 deletions(-) delete mode 100644 .changes/drag-window-cursor-position.md delete mode 100644 .changes/implementTaskbarProgress.md delete mode 100644 .changes/ios-universal-links.md delete mode 100644 .changes/macos-fix-set-tray-menu.md delete mode 100644 .changes/macos-native-image-menu.md delete mode 100644 .changes/support-open-file.md delete mode 100644 .changes/windows-fix-leak-on-update-tray.md delete mode 100644 .changes/windows-maximized-resizable.md diff --git a/.changes/drag-window-cursor-position.md b/.changes/drag-window-cursor-position.md deleted file mode 100644 index c18e5f02f..000000000 --- a/.changes/drag-window-cursor-position.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -On macOS, fix the unexpected shifting of the window when dragging after closing the share dialog. diff --git a/.changes/implementTaskbarProgress.md b/.changes/implementTaskbarProgress.md deleted file mode 100644 index 71abde014..000000000 --- a/.changes/implementTaskbarProgress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": minor ---- - -Added APIs for setting progress bars for the application icon on Linux (Unity only) and macOS, along with progress indicator for specific window on Windows. diff --git a/.changes/ios-universal-links.md b/.changes/ios-universal-links.md deleted file mode 100644 index 7e09197c4..000000000 --- a/.changes/ios-universal-links.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": minor ---- - -Handle universal links on iOS and send `Event::Opened { event: OpenEvent::Url(url) }`. diff --git a/.changes/macos-fix-set-tray-menu.md b/.changes/macos-fix-set-tray-menu.md deleted file mode 100644 index d910c5e98..000000000 --- a/.changes/macos-fix-set-tray-menu.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -On macOS, fix `SystemTrayEvent` not emitted after calling `set_menu`. diff --git a/.changes/macos-native-image-menu.md b/.changes/macos-native-image-menu.md deleted file mode 100644 index 366b88357..000000000 --- a/.changes/macos-native-image-menu.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On macOS, force `NativeImage` height to be `18` to have consistent size for all icons and match custom icons. diff --git a/.changes/support-open-file.md b/.changes/support-open-file.md deleted file mode 100644 index 6f7d44b82..000000000 --- a/.changes/support-open-file.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": minor ---- - -Implement `Event::Opened` on macOS for file association and deeplink support. diff --git a/.changes/windows-fix-leak-on-update-tray.md b/.changes/windows-fix-leak-on-update-tray.md deleted file mode 100644 index 7c1aacae9..000000000 --- a/.changes/windows-fix-leak-on-update-tray.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, fix leak of `tao::system_tray::Icon` when calling `tao::system_tray::SystemTray::set_icon` and leak of `String` when calling `tao::system_tray::SystemTray::set_tooltip`. diff --git a/.changes/windows-maximized-resizable.md b/.changes/windows-maximized-resizable.md deleted file mode 100644 index 437e97e56..000000000 --- a/.changes/windows-maximized-resizable.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, fix disabling `resizable` also disabling maximize button and messing up `Window::set_maximized`. diff --git a/CHANGELOG.md b/CHANGELOG.md index 45e98c7cc..0b6055cfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## \[0.21.0] + +- [`81329013`](https://github.com/tauri-apps/tao/commit/813290130ea255b2cb45a66234a422519d13f667)([#743](https://github.com/tauri-apps/tao/pull/743)) On macOS, fix the unexpected shifting of the window when dragging after closing the share dialog. +- [`baa02977`](https://github.com/tauri-apps/tao/commit/baa02977483c9da21451d65bde0a64230778a034)([#418](https://github.com/tauri-apps/tao/pull/418)) Added APIs for setting progress bars for the application icon on Linux (Unity only) and macOS, along with progress indicator for specific window on Windows. +- [`8f361f0c`](https://github.com/tauri-apps/tao/commit/8f361f0c19014e6ef647fe7fa8adc47718796984)([#752](https://github.com/tauri-apps/tao/pull/752)) Handle universal links on iOS and send `Event::Opened { urls }`. +- [`bb3c53d1`](https://github.com/tauri-apps/tao/commit/bb3c53d1d84ebc26b0d66230877ecc7b6a71db27)([#764](https://github.com/tauri-apps/tao/pull/764)) On macOS, fix `SystemTrayEvent` not emitted after calling `set_menu`. +- [`5af3da4a`](https://github.com/tauri-apps/tao/commit/5af3da4a2cfa0e648dfa87c067deb6745b73bcc8)([#746](https://github.com/tauri-apps/tao/pull/746)) On macOS, force `NativeImage` height to be `18` to have consistent size for all icons and match custom icons. +- [`093d8fbc`](https://github.com/tauri-apps/tao/commit/093d8fbc20954d51c96c94618479ff465ca55888)([#422](https://github.com/tauri-apps/tao/pull/422)) Implement `Event::Opened` on macOS for file association and deeplink support. +- [`e9875fe5`](https://github.com/tauri-apps/tao/commit/e9875fe54e1e8ae1db6e28eedeed2e3e51f8226b)([#755](https://github.com/tauri-apps/tao/pull/755)) On Windows, fix leak of `tao::system_tray::Icon` when calling `tao::system_tray::SystemTray::set_icon` and leak of `String` when calling `tao::system_tray::SystemTray::set_tooltip`. +- [`50e69d71`](https://github.com/tauri-apps/tao/commit/50e69d718e9c71d044ebc3535ca58a992db18547)([#749](https://github.com/tauri-apps/tao/pull/749)) On Windows, fix disabling `resizable` also disabling maximize button and messing up `Window::set_maximized`. + ## \[0.20.0] - [`c6082173`](https://github.com/tauri-apps/tao/commit/c6082173a943e23653783fd0872f64c66bf96de9)([#731](https://github.com/tauri-apps/tao/pull/731)) Fix build error on target i686-pc-windows-msvc diff --git a/Cargo.toml b/Cargo.toml index 3267f441c..ac78f1b15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.20.0" +version = "0.21.0" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy", @@ -30,8 +30,8 @@ targets = [ members = [ "tao-macros" ] [features] -default = [] -dox = [ "gtk/dox"] +default = [ ] +dox = [ "gtk/dox" ] tray = [ "libappindicator", "dirs-next" ] [build-dependencies]