Skip to content

Commit 4984383

Browse files
chore: release v0.6.14 (#261)
Co-authored-by: aprilnea[bot] <263112868+aprilnea[bot]@users.noreply.github.com>
1 parent 8c5ac3a commit 4984383

7 files changed

Lines changed: 32 additions & 22 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.14](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.13...openlogi-core-v0.6.14) - 2026-06-15
11+
12+
### Fixed
13+
14+
- *(hid)* solid keyboard colour via 0x8070 effect ([#205](https://github.com/AprilNEA/OpenLogi/pull/205))
15+
16+
### Other
17+
18+
- *(core)* extract the OS input-injection layer into openlogi-inject ([#240](https://github.com/AprilNEA/OpenLogi/pull/240))
19+
1020
## [0.6.13](https://github.com/AprilNEA/OpenLogi/compare/openlogi-hidpp-v0.6.12...openlogi-hidpp-v0.6.13) - 2026-06-15
1121

1222
### Other

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ categories = ["command-line-utilities", "hardware-support"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.13" }
15+
openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.14" }
1616
anyhow = { workspace = true }
1717
tokio = { workspace = true, features = ["rt", "macros"] }
1818

@@ -36,7 +36,7 @@ members = [
3636
]
3737

3838
[workspace.package]
39-
version = "0.6.13"
39+
version = "0.6.14"
4040
edition = "2024"
4141
rust-version = "1.88"
4242
license = "MIT OR Apache-2.0"
@@ -45,7 +45,7 @@ authors = ["AprilNEA <dev@aprilnea.me>"]
4545
description = "Lightweight, local-first alternative to Logitech Options+ for HID++ devices"
4646

4747
[workspace.dependencies]
48-
hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.13" }
48+
hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.14" }
4949
async-hid = "0.5.2"
5050
# Cross-platform local IPC for the agent <-> GUI tarpc transport: a Unix-domain
5151
# socket on Unix, a named pipe on Windows. The `tokio` feature gives the async

crates/openlogi-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ keywords = ["logitech", "hidpp", "hid", "mouse", "cli"]
1111
categories = ["command-line-utilities", "hardware-support"]
1212

1313
[dependencies]
14-
openlogi-core = { path = "../openlogi-core", version = "0.6.13" }
15-
openlogi-hid = { path = "../openlogi-hid", version = "0.6.13" }
16-
openlogi-assets = { path = "../openlogi-assets", version = "0.6.13" }
14+
openlogi-core = { path = "../openlogi-core", version = "0.6.14" }
15+
openlogi-hid = { path = "../openlogi-hid", version = "0.6.14" }
16+
openlogi-assets = { path = "../openlogi-assets", version = "0.6.14" }
1717
clap = { workspace = true }
1818
anyhow = { workspace = true }
1919
tokio = { workspace = true, features = ["rt", "macros", "sync", "time"] }

crates/openlogi-hid/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["logitech", "hidpp", "hid", "mouse", "async"]
1111
categories = ["hardware-support", "asynchronous"]
1212

1313
[dependencies]
14-
openlogi-core = { path = "../openlogi-core", version = "0.6.13" }
14+
openlogi-core = { path = "../openlogi-core", version = "0.6.14" }
1515
hidpp = { workspace = true }
1616
async-hid = { workspace = true }
1717
tokio = { workspace = true }

crates/openlogi-hook/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ authors.workspace = true
99
description = "OS-level mouse-event hook for OpenLogi. macOS via CGEventTap; Linux via evdev+uinput; Windows via WH_MOUSE_LL."
1010

1111
[dependencies]
12-
openlogi-core = { path = "../openlogi-core", version = "0.6.13" }
13-
openlogi-inject = { path = "../openlogi-inject", version = "0.6.13" }
12+
openlogi-core = { path = "../openlogi-core", version = "0.6.14" }
13+
openlogi-inject = { path = "../openlogi-inject", version = "0.6.14" }
1414
thiserror = { workspace = true }
1515
tracing = { workspace = true }
1616

crates/openlogi-inject/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["logitech", "input", "uinput", "sendinput", "mouse"]
1111
categories = ["hardware-support", "os"]
1212

1313
[dependencies]
14-
openlogi-core = { path = "../openlogi-core", version = "0.6.13" }
14+
openlogi-core = { path = "../openlogi-core", version = "0.6.14" }
1515
tracing = { workspace = true }
1616

1717
[dev-dependencies]

0 commit comments

Comments
 (0)