mirror of
https://github.com/italicsjenga/muda.git
synced 2024-12-23 12:01:31 +11:00
Apply Version Updates From Current Changes (#68)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
This commit is contained in:
parent
2e01d8a04c
commit
b8005fe84e
|
@ -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.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": "minor"
|
||||
---
|
||||
|
||||
Add `libxdo` feature flag, enabled by default, to control whether to link `libxdo` on Linux or not.
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"muda": minor
|
||||
---
|
||||
|
||||
Add support for `AboutMetadata` on macOS
|
|
@ -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.
|
||||
|
|
14
Cargo.toml
14
Cargo.toml
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue