mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 12:01:31 +11:00
Apply Version Updates From Current Changes (#90)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
parent
662e17d0ec
commit
14683ec1ba
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": "minor"
|
||||
---
|
||||
|
||||
Add `Drop` implementation for the inner types to release memory and OS resources.
|
|
@ -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.
|
|
@ -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`
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": "minor"
|
||||
---
|
||||
|
||||
Add `MenuId` struct an changed all `.id()` methods to return `MenuId` instead of a u32.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": "patch"
|
||||
---
|
||||
|
||||
Add `Menu/Submenu::remove_at` to remove an item at specified index.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": "patch"
|
||||
---
|
||||
|
||||
On Windows, fix `.set_text()` sometimes adding gebberish characters after multiple calls.
|
|
@ -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.
|
||||
|
|
|
@ -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" ]
|
||||
|
|
Loading…
Reference in a new issue