From 407a9feaedd3d888a21cf4c0743ed79cc46009af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Mar 2023 13:52:37 +0800 Subject: [PATCH] publish new versions (#706) Co-authored-by: wusyong --- .changes/cached_ns_view.md | 5 ----- .changes/cursor-position-scale.md | 5 ----- .changes/cursor.md | 6 ------ .changes/linux-arrow-cursor.md | 5 ----- .changes/linux-primary-monitor.md | 5 ----- .changes/remove-colorsync-link.md | 5 ----- CHANGELOG.md | 15 +++++++++++++++ Cargo.toml | 2 +- 8 files changed, 16 insertions(+), 32 deletions(-) delete mode 100644 .changes/cached_ns_view.md delete mode 100644 .changes/cursor-position-scale.md delete mode 100644 .changes/cursor.md delete mode 100644 .changes/linux-arrow-cursor.md delete mode 100644 .changes/linux-primary-monitor.md delete mode 100644 .changes/remove-colorsync-link.md diff --git a/.changes/cached_ns_view.md b/.changes/cached_ns_view.md deleted file mode 100644 index 2af5842e1..000000000 --- a/.changes/cached_ns_view.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -fix not get actual ns_view when it's replace by setContentView \ No newline at end of file diff --git a/.changes/cursor-position-scale.md b/.changes/cursor-position-scale.md deleted file mode 100644 index 7fc06bbfa..000000000 --- a/.changes/cursor-position-scale.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -Fix `Window::cursor_position` and `EventLoopWindowTarget::cursor_position` scale on Linux and macOS. diff --git a/.changes/cursor.md b/.changes/cursor.md deleted file mode 100644 index 7d2d78c1a..000000000 --- a/.changes/cursor.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"tao": patch ---- - -On macOS, Fix `cursor_position` return incorrect position. - diff --git a/.changes/linux-arrow-cursor.md b/.changes/linux-arrow-cursor.md deleted file mode 100644 index e6014d63c..000000000 --- a/.changes/linux-arrow-cursor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -Fix arrow cursor icon on Linux diff --git a/.changes/linux-primary-monitor.md b/.changes/linux-primary-monitor.md deleted file mode 100644 index 8f50d9028..000000000 --- a/.changes/linux-primary-monitor.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Attempt to get primary monitor on linux will now return None rather than panicking if monitor not found. diff --git a/.changes/remove-colorsync-link.md b/.changes/remove-colorsync-link.md deleted file mode 100644 index be369fe3a..000000000 --- a/.changes/remove-colorsync-link.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On macOS, Remove linking to `ColorSync` diff --git a/CHANGELOG.md b/CHANGELOG.md index f069fcefd..5acce953f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## \[0.18.2] + +- fix not get actual ns_view when it's replace by setContentView + - [76ae625b](https://github.com/tauri-apps/tao/commit/76ae625bae429148f295fc3eaf3e90984cf0c7ad) fix: not get actual ns_view when it's replace by setContentView ([#710](https://github.com/tauri-apps/tao/pull/710)) on 2023-03-07 +- Fix `Window::cursor_position` and `EventLoopWindowTarget::cursor_position` scale on Linux and macOS. + - [dc913cd5](https://github.com/tauri-apps/tao/commit/dc913cd5fe72f098a3545288eeed9b68f5e320ef) fix: scale cursor_position ([#712](https://github.com/tauri-apps/tao/pull/712)) on 2023-03-08 +- On macOS, Fix `cursor_position` return incorrect position. + - [ea2e60d9](https://github.com/tauri-apps/tao/commit/ea2e60d9df719a3abc335dc22078f72bbff1d3ef) fix(macOS): `cursor_position` returns incorrect position ([#711](https://github.com/tauri-apps/tao/pull/711)) on 2023-03-07 +- Fix arrow cursor icon on Linux + - [e9eba855](https://github.com/tauri-apps/tao/commit/e9eba8555b2bff1080d75d3386ce990c04576cde) chore: rename change file on 2023-02-22 +- Attempt to get primary monitor on linux will now return None rather than panicking if monitor not found. + - [28b53f80](https://github.com/tauri-apps/tao/commit/28b53f80c49bbf2ae8902b98a2e28f6451a5a8f1) fix: don't panic if primary monitor not discoverable. ([#705](https://github.com/tauri-apps/tao/pull/705)) on 2023-02-22 +- On macOS, Remove linking to `ColorSync` + - [a1e96d1b](https://github.com/tauri-apps/tao/commit/a1e96d1b1284a76576da0de7cba4730df9776bb5) feat: remove linking to `ColorSync` ([#713](https://github.com/tauri-apps/tao/pull/713)) on 2023-03-15 + ## \[0.18.1] - Retain NSMenu reference instead of autoreleasing it. diff --git a/Cargo.toml b/Cargo.toml index 728045756..f790d30f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.18.1" +version = "0.18.2" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",