From 0274b0fca6c68d023c23163b3ce435a54e7a0556 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 9 Nov 2024 03:13:54 +0200 Subject: [PATCH] Publish New Versions (#1004) Co-authored-by: amrbashir --- .changes/badge_count.md | 5 ----- .changes/fix-android-leak.md | 5 ----- .changes/outer-position-linux.md | 5 ----- .changes/windows-inner-size-slightly-larger.md | 5 ----- .changes/windows-position-no-primay.md | 5 ----- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 7 files changed, 9 insertions(+), 26 deletions(-) delete mode 100644 .changes/badge_count.md delete mode 100644 .changes/fix-android-leak.md delete mode 100644 .changes/outer-position-linux.md delete mode 100644 .changes/windows-inner-size-slightly-larger.md delete mode 100644 .changes/windows-position-no-primay.md diff --git a/.changes/badge_count.md b/.changes/badge_count.md deleted file mode 100644 index 018e128fc..000000000 --- a/.changes/badge_count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Add `WindowExtUnix::set_badge_count` for Linux, `WindowExtIos::set_badge_count` for iOS, `WindowExtMacos::set_badge_label` for Macos, `MacdowExtWindows::set_overlay_icon` for Windows diff --git a/.changes/fix-android-leak.md b/.changes/fix-android-leak.md deleted file mode 100644 index c320a21fc..000000000 --- a/.changes/fix-android-leak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": patch ---- - -Fix memory leak on Android. \ No newline at end of file diff --git a/.changes/outer-position-linux.md b/.changes/outer-position-linux.md deleted file mode 100644 index e8ea973d4..000000000 --- a/.changes/outer-position-linux.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Linux, `Window::outer_position`, `Window::outer_size` and `WindowEvent::Moved` to include/account for borders and titlebar. diff --git a/.changes/windows-inner-size-slightly-larger.md b/.changes/windows-inner-size-slightly-larger.md deleted file mode 100644 index e052f0dcf..000000000 --- a/.changes/windows-inner-size-slightly-larger.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, fix `Window::inner_size` returns slightly larger than what's visible for undecorated windows but have shadows. \ No newline at end of file diff --git a/.changes/windows-position-no-primay.md b/.changes/windows-position-no-primay.md deleted file mode 100644 index 75d7dbc21..000000000 --- a/.changes/windows-position-no-primay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tao": "patch" ---- - -On Windows, fix `WindowBuilder::with_position` with a position on a non-primary monitor resulting in an incorrectly positioned window. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index fa720306f..4c5d7089a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## \[0.30.6] + +- [`1f72c246`](https://github.com/tauri-apps/tao/commit/1f72c2465edcc9bee9170bcfd74d4e917e48febc) ([#1002](https://github.com/tauri-apps/tao/pull/1002) by [@ahqsoftwares](https://github.com/tauri-apps/tao/../../ahqsoftwares)) Add `WindowExtUnix::set_badge_count` for Linux, `WindowExtIos::set_badge_count` for iOS, `WindowExtMacos::set_badge_label` for Macos, `MacdowExtWindows::set_overlay_icon` for Windows +- [`946f8049`](https://github.com/tauri-apps/tao/commit/946f804995208fd9796d6baee828392c4ce2056b) ([#1005](https://github.com/tauri-apps/tao/pull/1005) by [@lucasfernog](https://github.com/tauri-apps/tao/../../lucasfernog)) Fix memory leak on Android. +- [`aff33fbb`](https://github.com/tauri-apps/tao/commit/aff33fbb2dab66cca2481fb75a3a6d612689269c) ([#1001](https://github.com/tauri-apps/tao/pull/1001) by [@amrbashir](https://github.com/tauri-apps/tao/../../amrbashir)) On Linux, `Window::outer_position`, `Window::outer_size` and `WindowEvent::Moved` to include/account for borders and titlebar. +- [`06d109fe`](https://github.com/tauri-apps/tao/commit/06d109feb3fd0f77004c8c576fc1e54e7e82f867) ([#993](https://github.com/tauri-apps/tao/pull/993) by [@amrbashir](https://github.com/tauri-apps/tao/../../amrbashir)) On Windows, fix `Window::inner_size` returns slightly larger than what's visible for undecorated windows but have shadows. +- [`edfbd364`](https://github.com/tauri-apps/tao/commit/edfbd364a6abf8704de53a31ab10d0ce595cbde7) ([#992](https://github.com/tauri-apps/tao/pull/992) by [@amrbashir](https://github.com/tauri-apps/tao/../../amrbashir)) On Windows, fix `WindowBuilder::with_position` with a position on a non-primary monitor resulting in an incorrectly positioned window. + ## \[0.30.5] - [`532b5ab0`](https://github.com/tauri-apps/tao/commit/532b5ab0bffb1e7b39281951848947feb0716f0a) ([#1000](https://github.com/tauri-apps/tao/pull/1000) by [@amrbashir](https://github.com/tauri-apps/tao/../../amrbashir)) Fix `android_binding` macro incorrect expansion. diff --git a/Cargo.toml b/Cargo.toml index 0b134c123..a8fbdeb9d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tao" -version = "0.30.5" +version = "0.30.6" description = "Cross-platform window manager library." authors = [ "Tauri Programme within The Commons Conservancy",