From b8005fe84e2287b2c120f152910810177d065014 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 19 Jun 2023 22:40:46 +0300 Subject: [PATCH] Apply Version Updates From Current Changes (#68) Co-authored-by: amrbashir --- .changes/common-controls-v6.md | 5 ----- .changes/linux-libxdo-feature-flag.md | 5 ----- .changes/macos-about-metadata.md | 5 ----- CHANGELOG.md | 6 ++++++ Cargo.toml | 14 +++++++------- 5 files changed, 13 insertions(+), 22 deletions(-) delete mode 100644 .changes/common-controls-v6.md delete mode 100644 .changes/linux-libxdo-feature-flag.md delete mode 100644 .changes/macos-about-metadata.md diff --git a/.changes/common-controls-v6.md b/.changes/common-controls-v6.md deleted file mode 100644 index ec16c3d..0000000 --- a/.changes/common-controls-v6.md +++ /dev/null @@ -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. diff --git a/.changes/linux-libxdo-feature-flag.md b/.changes/linux-libxdo-feature-flag.md deleted file mode 100644 index 0b06b30..0000000 --- a/.changes/linux-libxdo-feature-flag.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": "minor" ---- - -Add `libxdo` feature flag, enabled by default, to control whether to link `libxdo` on Linux or not. diff --git a/.changes/macos-about-metadata.md b/.changes/macos-about-metadata.md deleted file mode 100644 index 4b3dc82..0000000 --- a/.changes/macos-about-metadata.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"muda": minor ---- - -Add support for `AboutMetadata` on macOS diff --git a/CHANGELOG.md b/CHANGELOG.md index d795288..742b7cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index 64e7c15..ee0f8ea 100644 --- a/Cargo.toml +++ b/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]