Apply Version Updates From Current Changes (#68)

Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2023-06-19 22:40:46 +03:00 committed by GitHub
parent 2e01d8a04c
commit b8005fe84e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 22 deletions

View file

@ -1,5 +0,0 @@
---
"muda": "minor"
---
Add `common-controls-v6` feature flag, disabled by default, which could be used to enable usage of `TaskDialogIndirect` API from `ComCtl32.dll` v6 on Windows for The predefined `About` menu item.

View file

@ -1,5 +0,0 @@
---
"muda": "minor"
---
Add `libxdo` feature flag, enabled by default, to control whether to link `libxdo` on Linux or not.

View file

@ -1,5 +0,0 @@
---
"muda": minor
---
Add support for `AboutMetadata` on macOS

View file

@ -1,5 +1,11 @@
# Changelog
## \[0.6.0]
- [`ac14222`](https://www.github.com/tauri-apps/muda/commit/ac142229340c8ded63316fbc1cd1c11bf27e0890)([#69](https://www.github.com/tauri-apps/muda/pull/69)) Add `common-controls-v6` feature flag, disabled by default, which could be used to enable usage of `TaskDialogIndirect` API from `ComCtl32.dll` v6 on Windows for The predefined `About` menu item.
- [`7af4477`](https://www.github.com/tauri-apps/muda/commit/7af44778962de62bf6d8b05aab08bb2e689295fe)([#67](https://www.github.com/tauri-apps/muda/pull/67)) Add `libxdo` feature flag, enabled by default, to control whether to link `libxdo` on Linux or not.
- [`fabbbac`](https://www.github.com/tauri-apps/muda/commit/fabbbacb4b8d77c84cd318a21df1951063e7ea14)([#66](https://www.github.com/tauri-apps/muda/pull/66)) Add support for `AboutMetadata` on macOS
## \[0.5.0]
- Add `(MenuItem|CheckMenuItem|IconMenuItem)::set_accelerator` to change or disable the accelerator after creation.

View file

@ -1,19 +1,19 @@
[package]
name = "muda"
version = "0.5.0"
version = "0.6.0"
description = "Menu Utilities for Desktop Applications"
edition = "2021"
keywords = ["windowing", "menu"]
keywords = [ "windowing", "menu" ]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/amrbashir/muda"
documentation = "https://docs.rs/muda"
categories = ["gui"]
categories = [ "gui" ]
[features]
default = ["libxdo"]
libxdo = ["dep:libxdo"]
common-controls-v6 = ["windows-sys/Win32_UI_Controls"]
default = [ "libxdo" ]
libxdo = [ "dep:libxdo" ]
common-controls-v6 = [ "windows-sys/Win32_UI_Controls" ]
[dependencies]
crossbeam-channel = "0.5"
@ -30,7 +30,7 @@ features = [
"Win32_UI_Shell",
"Win32_Globalization",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_System_SystemServices",
"Win32_System_SystemServices"
]
[target."cfg(target_os = \"linux\")".dependencies]