From 440b3ebf81e28d7005f917ba5a26ea5c0bf4132f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 6 Mar 2023 15:37:57 +0200 Subject: [PATCH] Apply Version Updates From Current Changes (#56) Co-authored-by: amrbashir --- .changes/icon-menu-item-dispatch.md | 5 ----- .changes/windows-predefined-close.md | 5 ----- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 .changes/icon-menu-item-dispatch.md delete mode 100644 .changes/windows-predefined-close.md diff --git a/.changes/icon-menu-item-dispatch.md b/.changes/icon-menu-item-dispatch.md deleted file mode 100644 index abed92d..0000000 --- a/.changes/icon-menu-item-dispatch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "patch" ---- - -On Windows, fix `MenuEvent` not triggered for `IconMenuItem`. diff --git a/.changes/windows-predefined-close.md b/.changes/windows-predefined-close.md deleted file mode 100644 index 487e47d..0000000 --- a/.changes/windows-predefined-close.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "patch" ---- - -On Windows, The `Close` predefined menu item will send `WM_CLOSE` to the window instead of calling `DestroyWindow` to let the developer catch this event and decide whether to close the window or not. diff --git a/CHANGELOG.md b/CHANGELOG.md index afc1f5d..2066a06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## \[0.4.4] + +- On Windows, fix `MenuEvent` not triggered for `IconMenuItem`. + - [88d3520](https://www.github.com/tauri-apps/muda/commit/88d352033ba571126a11bc681ee3b346b7579916) fix(Windows): dispatch menu event for icon menu item ([#53](https://www.github.com/tauri-apps/muda/pull/53)) on 2023-03-06 +- On Windows, The `Close` predefined menu item will send `WM_CLOSE` to the window instead of calling `DestroyWindow` to let the developer catch this event and decide whether to close the window or not. + - [f322ad4](https://www.github.com/tauri-apps/muda/commit/f322ad454dcd206e2802bb7c65f0a55616a8d002) fix(Windows): send `WM_CLOSE` instead of `DestroyWindow` ([#55](https://www.github.com/tauri-apps/muda/pull/55)) on 2023-03-06 + ## \[0.4.3] - Implement `PredefinedMenuItemm::maximize` and `PredefinedMenuItemm::hide` on Windows. diff --git a/Cargo.toml b/Cargo.toml index e07e5a3..872e1f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muda" -version = "0.4.3" +version = "0.4.4" description = "Menu Utilities for Desktop Applications" edition = "2021" keywords = [ "windowing", "menu" ]