diff --git a/.changes/drop.md b/.changes/drop.md deleted file mode 100644 index 77b9d61..0000000 --- a/.changes/drop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "minor" ---- - -Add `Drop` implementation for the inner types to release memory and OS resources. diff --git a/.changes/gtk-add-menu-position.md b/.changes/gtk-add-menu-position.md deleted file mode 100644 index 3201749..0000000 --- a/.changes/gtk-add-menu-position.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": minor ---- - -**Breaking Change:** On Linux, `Menu::inti_for_gtk_window` has been changed to require the second paramter to extend `gtk::Box`. This ensures that the menu bar is added at the beginning of the box instead of at the bottom. diff --git a/.changes/macos-window-menu.md b/.changes/macos-window-menu.md deleted file mode 100644 index 4c463ad..0000000 --- a/.changes/macos-window-menu.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "minor" ---- - -On macOS, changed `Submenu::set_windows_menu_for_nsapp` and `Submenu::set_help_menu_for_nsapp` to `Submenu::set_as_windows_menu_for_nsapp` and `Submenu::set_as_help_menu_for_nsapp` diff --git a/.changes/menu-id.md b/.changes/menu-id.md deleted file mode 100644 index e17a877..0000000 --- a/.changes/menu-id.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "minor" ---- - -Add `MenuId` struct an changed all `.id()` methods to return `MenuId` instead of a u32. diff --git a/.changes/remove_at.md b/.changes/remove_at.md deleted file mode 100644 index d4484ba..0000000 --- a/.changes/remove_at.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "patch" ---- - -Add `Menu/Submenu::remove_at` to remove an item at specified index. diff --git a/.changes/set-text-windows.md b/.changes/set-text-windows.md deleted file mode 100644 index e46b7c9..0000000 --- a/.changes/set-text-windows.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "patch" ---- - -On Windows, fix `.set_text()` sometimes adding gebberish characters after multiple calls. diff --git a/CHANGELOG.md b/CHANGELOG.md index 03e0911..337f647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## \[0.8.0] + +- [`662e17d`](https://www.github.com/tauri-apps/muda/commit/662e17d0ec75a746a330390ad3818e35bd2be234)([#92](https://www.github.com/tauri-apps/muda/pull/92)) Add `Drop` implementation for the inner types to release memory and OS resources. +- [`7ca4b11`](https://www.github.com/tauri-apps/muda/commit/7ca4b115646a0ec1c19547267959625b6842b288)([#89](https://www.github.com/tauri-apps/muda/pull/89)) **Breaking Change:** On Linux, `Menu::inti_for_gtk_window` has been changed to require the second paramter to extend `gtk::Box`. This ensures that the menu bar is added at the beginning of the box instead of at the bottom. +- [`bb92b56`](https://www.github.com/tauri-apps/muda/commit/bb92b5667eb43d39a162b86f0b779d06e36eca52) On macOS, changed `Submenu::set_windows_menu_for_nsapp` and `Submenu::set_help_menu_for_nsapp` to `Submenu::set_as_windows_menu_for_nsapp` and `Submenu::set_as_help_menu_for_nsapp` +- [`874f345`](https://www.github.com/tauri-apps/muda/commit/874f345f3c719d70065fceeabebed6224d857813) Add `MenuId` struct an changed all `.id()` methods to return `MenuId` instead of a u32. +- [`043026c`](https://www.github.com/tauri-apps/muda/commit/043026c30d46f81a0fc2975d7e6bea10421ceb47)([#93](https://www.github.com/tauri-apps/muda/pull/93)) Add `Menu/Submenu::remove_at` to remove an item at specified index. +- [`662e17d`](https://www.github.com/tauri-apps/muda/commit/662e17d0ec75a746a330390ad3818e35bd2be234)([#92](https://www.github.com/tauri-apps/muda/pull/92)) On Windows, fix `.set_text()` sometimes adding gebberish characters after multiple calls. + ## \[0.7.3] - [`22956ec`](https://www.github.com/tauri-apps/muda/commit/22956ec724673d21e1d6a675c536eff060737e02)([#87](https://www.github.com/tauri-apps/muda/pull/87)) Fix `remove_for_nsapp` not working. diff --git a/Cargo.toml b/Cargo.toml index c394de0..844cf7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "muda" -version = "0.7.3" +version = "0.8.0" description = "Menu Utilities for Desktop Applications" edition = "2021" keywords = [ "windowing", "menu" ]