From 81ebbe25eda8c06170de54ef17dcf2f1f069cb60 Mon Sep 17 00:00:00 2001 From: lucasfernog Date: Sun, 30 Jul 2023 14:05:46 +0000 Subject: [PATCH] publish new versions --- .changes/android-deadlock-fix.md | 5 ----- .changes/ns_view_getter.md | 5 ----- .changes/windows-rtl.md | 5 ----- .changes/windows-window-class-name.md | 5 ----- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 21 deletions(-) delete mode 100644 .changes/android-deadlock-fix.md delete mode 100644 .changes/ns_view_getter.md delete mode 100644 .changes/windows-rtl.md delete mode 100644 .changes/windows-window-class-name.md diff --git a/.changes/android-deadlock-fix.md b/.changes/android-deadlock-fix.md deleted file mode 100644 index 642e460ce..000000000 --- a/.changes/android-deadlock-fix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -On Android, use a lockfree queue (crossbeam channel) to prevent deadlocks inside send_event. diff --git a/.changes/ns_view_getter.md b/.changes/ns_view_getter.md deleted file mode 100644 index 1e5e787da..000000000 --- a/.changes/ns_view_getter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On macOS, fix `WindowExtMacOS::ns_view` returning an invalid pointer if the view was replaced by a call to `setContentView` later on. diff --git a/.changes/windows-rtl.md b/.changes/windows-rtl.md deleted file mode 100644 index 1157c3eb6..000000000 --- a/.changes/windows-rtl.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -Add `WindowExtWindows::set_rtl` and `WindowBuilderExtWindows::with_rtl` to set right-to-left layout on Windows. diff --git a/.changes/windows-window-class-name.md b/.changes/windows-window-class-name.md deleted file mode 100644 index a9715749a..000000000 --- a/.changes/windows-window-class-name.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -Add `WindowBuilderExtWindows::with_window_classname` to set the name of the window class created/used to create windows. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6055cfb..827f1a8e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.21.1] + +- [`9a320882`](https://github.com/tauri-apps/tao/commit/9a320882ed824d18f9e20f8a9af7a97f51805c87)([#761](https://github.com/tauri-apps/tao/pull/761)) On Android, use a lockfree queue (crossbeam channel) to prevent deadlocks inside send_event. +- [`b31cb692`](https://github.com/tauri-apps/tao/commit/b31cb692df2b0a03d2fbdf2fbf7ba82591678e24)([#772](https://github.com/tauri-apps/tao/pull/772)) On macOS, fix `WindowExtMacOS::ns_view` returning an invalid pointer if the view was replaced by a call to `setContentView` later on. +- [`4d0e1862`](https://github.com/tauri-apps/tao/commit/4d0e1862b6a2a7580631d637ef937d217f0797bf)([#762](https://github.com/tauri-apps/tao/pull/762)) Add `WindowExtWindows::set_rtl` and `WindowBuilderExtWindows::with_rtl` to set right-to-left layout on Windows. +- [`75eb0c1e`](https://github.com/tauri-apps/tao/commit/75eb0c1e7e83a766af0e083ce09c761d1974cde4)([#769](https://github.com/tauri-apps/tao/pull/769)) Add `WindowBuilderExtWindows::with_window_classname` to set the name of the window class created/used to create windows. + ## \[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. diff --git a/Cargo.toml b/Cargo.toml index ac78f1b15..0d8a2d88f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.21.0" +version = "0.21.1" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",