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" ]