From fe5d744edbf23ef537c59869354b234a8cb78f61 Mon Sep 17 00:00:00 2001 From: "aprilnea[bot]" <263112868+aprilnea[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 08:14:52 +0000 Subject: [PATCH] chore: release v0.6.18 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 6 +++--- crates/openlogi-cli/Cargo.toml | 6 +++--- crates/openlogi-hid/Cargo.toml | 2 +- crates/openlogi-hook/Cargo.toml | 4 ++-- crates/openlogi-inject/Cargo.toml | 2 +- 7 files changed, 33 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79c95983..80c18e9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.18](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.17...openlogi-core-v0.6.18) - 2026-06-29 + +### Added + +- *(gui)* consolidate Settings and add theme switching +- *(hidpp)* add typed reprog controls support + +### Other + +- Clarify MX Master 4 gesture control semantics ([#325](https://github.com/AprilNEA/OpenLogi/pull/325)) + ## [0.6.17](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.16...openlogi-core-v0.6.17) - 2026-06-24 ### Added diff --git a/Cargo.lock b/Cargo.lock index 4320381e..34574838 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4826,7 +4826,7 @@ dependencies = [ [[package]] name = "openlogi" -version = "0.6.17" +version = "0.6.18" dependencies = [ "anyhow", "openlogi-cli", @@ -4835,7 +4835,7 @@ dependencies = [ [[package]] name = "openlogi-agent" -version = "0.6.17" +version = "0.6.18" dependencies = [ "futures", "interprocess", @@ -4858,7 +4858,7 @@ dependencies = [ [[package]] name = "openlogi-agent-core" -version = "0.6.17" +version = "0.6.18" dependencies = [ "async-hid", "bincode", @@ -4875,7 +4875,7 @@ dependencies = [ [[package]] name = "openlogi-assets" -version = "0.6.17" +version = "0.6.18" dependencies = [ "anyhow", "atomic-write-file", @@ -4889,7 +4889,7 @@ dependencies = [ [[package]] name = "openlogi-cli" -version = "0.6.17" +version = "0.6.18" dependencies = [ "anyhow", "clap", @@ -4903,7 +4903,7 @@ dependencies = [ [[package]] name = "openlogi-core" -version = "0.6.17" +version = "0.6.18" dependencies = [ "etcetera", "fs4", @@ -4917,7 +4917,7 @@ dependencies = [ [[package]] name = "openlogi-gui" -version = "0.6.17" +version = "0.6.18" dependencies = [ "anyhow", "backon", @@ -4955,7 +4955,7 @@ dependencies = [ [[package]] name = "openlogi-hid" -version = "0.6.17" +version = "0.6.18" dependencies = [ "async-hid", "futures-concurrency", @@ -4972,7 +4972,7 @@ dependencies = [ [[package]] name = "openlogi-hidpp" -version = "0.6.17" +version = "0.6.18" dependencies = [ "async-channel 2.5.0", "async-trait", @@ -4990,7 +4990,7 @@ dependencies = [ [[package]] name = "openlogi-hook" -version = "0.6.17" +version = "0.6.18" dependencies = [ "core-foundation 0.10.0", "core-graphics 0.25.0", @@ -5011,7 +5011,7 @@ dependencies = [ [[package]] name = "openlogi-inject" -version = "0.6.17" +version = "0.6.18" dependencies = [ "core-foundation 0.10.0", "core-graphics 0.25.0", @@ -9235,7 +9235,7 @@ checksum = "32ac00cd3f8ec9c1d33fb3e7958a82df6989c42d747bd326c822b1d625283547" [[package]] name = "xtask" -version = "0.6.17" +version = "0.6.18" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index e26b83cb..1983cb2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ categories = ["command-line-utilities", "hardware-support"] readme = "README.md" [dependencies] -openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.17" } +openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.18" } anyhow = { workspace = true } tokio = { workspace = true, features = ["rt", "macros"] } @@ -36,7 +36,7 @@ members = [ ] [workspace.package] -version = "0.6.17" +version = "0.6.18" edition = "2024" rust-version = "1.88" license = "MIT OR Apache-2.0" @@ -45,7 +45,7 @@ authors = ["AprilNEA "] description = "Lightweight, local-first alternative to Logitech Options+ for HID++ devices" [workspace.dependencies] -hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.17" } +hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.18" } async-hid = "0.5.2" # Cross-platform local IPC for the agent <-> GUI tarpc transport: a Unix-domain # socket on Unix, a named pipe on Windows. The `tokio` feature gives the async diff --git a/crates/openlogi-cli/Cargo.toml b/crates/openlogi-cli/Cargo.toml index 523c4c2f..5bdf342b 100644 --- a/crates/openlogi-cli/Cargo.toml +++ b/crates/openlogi-cli/Cargo.toml @@ -11,9 +11,9 @@ keywords = ["logitech", "hidpp", "hid", "mouse", "cli"] categories = ["command-line-utilities", "hardware-support"] [dependencies] -openlogi-core = { path = "../openlogi-core", version = "0.6.17" } -openlogi-hid = { path = "../openlogi-hid", version = "0.6.17" } -openlogi-assets = { path = "../openlogi-assets", version = "0.6.17" } +openlogi-core = { path = "../openlogi-core", version = "0.6.18" } +openlogi-hid = { path = "../openlogi-hid", version = "0.6.18" } +openlogi-assets = { path = "../openlogi-assets", version = "0.6.18" } clap = { workspace = true } anyhow = { workspace = true } tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] } diff --git a/crates/openlogi-hid/Cargo.toml b/crates/openlogi-hid/Cargo.toml index 84938a4d..604aa092 100644 --- a/crates/openlogi-hid/Cargo.toml +++ b/crates/openlogi-hid/Cargo.toml @@ -12,7 +12,7 @@ categories = ["hardware-support", "asynchronous"] readme = "README.md" [dependencies] -openlogi-core = { path = "../openlogi-core", version = "0.6.17" } +openlogi-core = { path = "../openlogi-core", version = "0.6.18" } hidpp = { workspace = true } async-hid = { workspace = true } tokio = { workspace = true } diff --git a/crates/openlogi-hook/Cargo.toml b/crates/openlogi-hook/Cargo.toml index a0598c7d..d76b5c3b 100644 --- a/crates/openlogi-hook/Cargo.toml +++ b/crates/openlogi-hook/Cargo.toml @@ -9,8 +9,8 @@ authors.workspace = true description = "OS-level mouse-event hook for OpenLogi. macOS via CGEventTap; Linux via evdev+uinput; Windows via WH_MOUSE_LL." [dependencies] -openlogi-core = { path = "../openlogi-core", version = "0.6.17" } -openlogi-inject = { path = "../openlogi-inject", version = "0.6.17" } +openlogi-core = { path = "../openlogi-core", version = "0.6.18" } +openlogi-inject = { path = "../openlogi-inject", version = "0.6.18" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/crates/openlogi-inject/Cargo.toml b/crates/openlogi-inject/Cargo.toml index 4f501e2c..a014d80e 100644 --- a/crates/openlogi-inject/Cargo.toml +++ b/crates/openlogi-inject/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["logitech", "input", "uinput", "sendinput", "mouse"] categories = ["hardware-support", "os"] [dependencies] -openlogi-core = { path = "../openlogi-core", version = "0.6.17" } +openlogi-core = { path = "../openlogi-core", version = "0.6.18" } tracing = { workspace = true } [dev-dependencies]