From 9fea6711366b7391ad0c3eaa6d53820207cb5436 Mon Sep 17 00:00:00 2001 From: "aprilnea[bot]" <263112868+aprilnea[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 03:59:17 +0000 Subject: [PATCH] chore: release v0.6.14 --- CHANGELOG.md | 10 ++++++++++ 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, 32 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1477679b..e1528f06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.14](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.13...openlogi-core-v0.6.14) - 2026-06-15 + +### Fixed + +- *(hid)* solid keyboard colour via 0x8070 effect ([#205](https://github.com/AprilNEA/OpenLogi/pull/205)) + +### Other + +- *(core)* extract the OS input-injection layer into openlogi-inject ([#240](https://github.com/AprilNEA/OpenLogi/pull/240)) + ## [0.6.13](https://github.com/AprilNEA/OpenLogi/compare/openlogi-hidpp-v0.6.12...openlogi-hidpp-v0.6.13) - 2026-06-15 ### Other diff --git a/Cargo.lock b/Cargo.lock index 9af6041c..3c266000 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4668,7 +4668,7 @@ dependencies = [ [[package]] name = "openlogi" -version = "0.6.13" +version = "0.6.14" dependencies = [ "anyhow", "openlogi-cli", @@ -4677,7 +4677,7 @@ dependencies = [ [[package]] name = "openlogi-agent" -version = "0.6.13" +version = "0.6.14" dependencies = [ "futures", "interprocess", @@ -4697,7 +4697,7 @@ dependencies = [ [[package]] name = "openlogi-agent-core" -version = "0.6.13" +version = "0.6.14" dependencies = [ "async-hid", "bincode", @@ -4714,7 +4714,7 @@ dependencies = [ [[package]] name = "openlogi-assets" -version = "0.6.13" +version = "0.6.14" dependencies = [ "anyhow", "backon", @@ -4727,7 +4727,7 @@ dependencies = [ [[package]] name = "openlogi-cli" -version = "0.6.13" +version = "0.6.14" dependencies = [ "anyhow", "clap", @@ -4741,7 +4741,7 @@ dependencies = [ [[package]] name = "openlogi-core" -version = "0.6.13" +version = "0.6.14" dependencies = [ "fs4", "serde", @@ -4754,7 +4754,7 @@ dependencies = [ [[package]] name = "openlogi-gui" -version = "0.6.13" +version = "0.6.14" dependencies = [ "anyhow", "disclaim", @@ -4787,7 +4787,7 @@ dependencies = [ [[package]] name = "openlogi-hid" -version = "0.6.13" +version = "0.6.14" dependencies = [ "async-hid", "futures-concurrency", @@ -4804,7 +4804,7 @@ dependencies = [ [[package]] name = "openlogi-hidpp" -version = "0.6.13" +version = "0.6.14" dependencies = [ "async-channel 2.5.0", "async-trait", @@ -4821,7 +4821,7 @@ dependencies = [ [[package]] name = "openlogi-hook" -version = "0.6.13" +version = "0.6.14" dependencies = [ "core-foundation 0.10.0", "core-graphics 0.25.0", @@ -4841,7 +4841,7 @@ dependencies = [ [[package]] name = "openlogi-inject" -version = "0.6.13" +version = "0.6.14" dependencies = [ "core-foundation 0.10.0", "core-graphics 0.25.0", @@ -8930,7 +8930,7 @@ checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9" [[package]] name = "xtask" -version = "0.6.13" +version = "0.6.14" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index bb4249f5..007aee67 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.13" } +openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.14" } anyhow = { workspace = true } tokio = { workspace = true, features = ["rt", "macros"] } @@ -36,7 +36,7 @@ members = [ ] [workspace.package] -version = "0.6.13" +version = "0.6.14" 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.13" } +hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.14" } 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 081892dc..d40165c7 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.13" } -openlogi-hid = { path = "../openlogi-hid", version = "0.6.13" } -openlogi-assets = { path = "../openlogi-assets", version = "0.6.13" } +openlogi-core = { path = "../openlogi-core", version = "0.6.14" } +openlogi-hid = { path = "../openlogi-hid", version = "0.6.14" } +openlogi-assets = { path = "../openlogi-assets", version = "0.6.14" } 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 346b6957..afb786bf 100644 --- a/crates/openlogi-hid/Cargo.toml +++ b/crates/openlogi-hid/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["logitech", "hidpp", "hid", "mouse", "async"] categories = ["hardware-support", "asynchronous"] [dependencies] -openlogi-core = { path = "../openlogi-core", version = "0.6.13" } +openlogi-core = { path = "../openlogi-core", version = "0.6.14" } 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 b1ec4862..a82c8314 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.13" } -openlogi-inject = { path = "../openlogi-inject", version = "0.6.13" } +openlogi-core = { path = "../openlogi-core", version = "0.6.14" } +openlogi-inject = { path = "../openlogi-inject", version = "0.6.14" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/crates/openlogi-inject/Cargo.toml b/crates/openlogi-inject/Cargo.toml index c046e89d..4068bf0d 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.13" } +openlogi-core = { path = "../openlogi-core", version = "0.6.14" } tracing = { workspace = true } [dev-dependencies]