diff --git a/.changes/gtk-feature.md b/.changes/gtk-feature.md deleted file mode 100644 index 8805b7ce..00000000 --- a/.changes/gtk-feature.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"tray-icon": minor ---- - -Make gtk an optional feature (enabled by default) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd19a71d..47597842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## \[0.24.0] + +- [`19bcab3`](https://www.github.com/tauri-apps/tray-icon/commit/19bcab382753cbbb883b7d6ae96d07111fc73e67) ([#305](https://www.github.com/tauri-apps/tray-icon/pull/305) by [@expenses](https://www.github.com/tauri-apps/tray-icon/../../expenses)) Make gtk an optional feature (enabled by default) + ## \[0.23.1] - [`7e5953c`](https://www.github.com/tauri-apps/tray-icon/commit/7e5953c227065f92dc3113268c86d6d0f05739a4) ([#311](https://www.github.com/tauri-apps/tray-icon/pull/311) by [@Fullzoon](https://www.github.com/tauri-apps/tray-icon/../../Fullzoon)) Fixed a Windows tray menu issue reported in #303 where the context menu could appear behind the taskbar after launching from the Start Menu by aligning the tray menu handling with the expected shell behavior, including showing the right-click menu on button release and posting `WM_NULL` after `TrackPopupMenu`. diff --git a/Cargo.lock b/Cargo.lock index 19808862..d745534d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3531,7 +3531,7 @@ dependencies = [ [[package]] name = "tray-icon" -version = "0.23.1" +version = "0.24.0" dependencies = [ "crossbeam-channel", "dirs", diff --git a/Cargo.toml b/Cargo.toml index 46e31b81..840bae5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tray-icon" -version = "0.23.1" +version = "0.24.0" edition = "2021" description = "Create tray icons for desktop applications" homepage = "https://github.com/tauri-apps/tray-icon"