Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 The comparison URL for the 0.6.13 entry links to openlogi-hidpp tags rather than the root openlogi package tags. Readers clicking this link will see only the hidpp crate diff, not the full workspace release diff. This appears to be a release-plz generation artifact where the wrong tag prefix was used for the root package entry.

Suggested change
## [0.6.13](https://github.com/AprilNEA/OpenLogi/compare/openlogi-hidpp-v0.6.12...openlogi-hidpp-v0.6.13) - 2026-06-15
## [0.6.13](https://github.com/AprilNEA/OpenLogi/compare/openlogi-v0.6.12...openlogi-v0.6.13) - 2026-06-15

Fix in Codex Fix in Claude Code


### Other
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

Expand All @@ -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"
Expand All @@ -45,7 +45,7 @@ authors = ["AprilNEA <dev@aprilnea.me>"]
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
Expand Down
6 changes: 3 additions & 3 deletions crates/openlogi-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/openlogi-hid/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions crates/openlogi-hook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
2 changes: 1 addition & 1 deletion crates/openlogi-inject/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down