From 6dd6bfe718b043e54bfd582cbc5be77bca8ba0a2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 May 2024 16:50:31 +0300 Subject: [PATCH] Apply Version Updates From Current Changes (#148) Co-authored-by: amrbashir --- .changes/blurry-after-dpi-change-windows.md | 5 ----- .changes/fix-mac-mouse-position.md | 5 ----- .changes/fix-macos-tray-item-y-pos.md | 5 ----- .changes/tray-icon-rect.md | 5 ----- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 21 deletions(-) delete mode 100644 .changes/blurry-after-dpi-change-windows.md delete mode 100644 .changes/fix-mac-mouse-position.md delete mode 100644 .changes/fix-macos-tray-item-y-pos.md delete mode 100644 .changes/tray-icon-rect.md diff --git a/.changes/blurry-after-dpi-change-windows.md b/.changes/blurry-after-dpi-change-windows.md deleted file mode 100644 index b1b34a2..0000000 --- a/.changes/blurry-after-dpi-change-windows.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tray-icon": patch ---- - -Fix tray icon gets blurry after changing dpi on Windows diff --git a/.changes/fix-mac-mouse-position.md b/.changes/fix-mac-mouse-position.md deleted file mode 100644 index 9d92585..0000000 --- a/.changes/fix-mac-mouse-position.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tray-icon": "patch" ---- - -On macOS, fix tray event position not scaled properly. diff --git a/.changes/fix-macos-tray-item-y-pos.md b/.changes/fix-macos-tray-item-y-pos.md deleted file mode 100644 index fc48a98..0000000 --- a/.changes/fix-macos-tray-item-y-pos.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tray-icon": patch ---- - -On macOS, fix the `y` position of the tray icon to be top-left not bottom-left of the icon. diff --git a/.changes/tray-icon-rect.md b/.changes/tray-icon-rect.md deleted file mode 100644 index 0551885..0000000 --- a/.changes/tray-icon-rect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tray-icon": "patch" ---- - -Add `TrayIcon::rect` method to retrieve the tray icon rectangle on Windows and macOS. diff --git a/CHANGELOG.md b/CHANGELOG.md index 5293731..17328bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.13.5] + +- [`a1cd50e`](https://www.github.com/tauri-apps/tray-icon/commit/a1cd50e53021474ad87cdf2e269acfb56d36cc14)([#145](https://www.github.com/tauri-apps/tray-icon/pull/145)) Fix tray icon gets blurry after changing dpi on Windows +- [`ad317c7`](https://www.github.com/tauri-apps/tray-icon/commit/ad317c7dab271145c641f0c4c22e283bb2aa0c91)([#150](https://www.github.com/tauri-apps/tray-icon/pull/150)) On macOS, fix tray event position not scaled properly. +- [`6d099ee`](https://www.github.com/tauri-apps/tray-icon/commit/6d099ee2a4c455561f4c6f86ea995df267469eca)([#149](https://www.github.com/tauri-apps/tray-icon/pull/149)) On macOS, fix the `y` position of the tray icon to be top-left not bottom-left of the icon. +- [`599bb8f`](https://www.github.com/tauri-apps/tray-icon/commit/599bb8f55546d674892a80051766d36656975e86)([#147](https://www.github.com/tauri-apps/tray-icon/pull/147)) Add `TrayIcon::rect` method to retrieve the tray icon rectangle on Windows and macOS. + ## \[0.13.4] - [`6b09b8e`](https://www.github.com/tauri-apps/tray-icon/commit/6b09b8e920e79d7768c3a55324431cbd0acadb27)([#136](https://www.github.com/tauri-apps/tray-icon/pull/136)) Add `Icon::from_resource_name` to support icon resource without a ordinal id on Windows diff --git a/Cargo.toml b/Cargo.toml index a5a8105..c29acba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tray-icon" -version = "0.13.4" +version = "0.13.5" edition = "2021" description = "Create tray icons for desktop applications" homepage = "https://github.com/tauri-apps/tray-icon"