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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.11](https://github.com/AprilNEA/OpenLogi/compare/openlogi-hid-v0.6.10...openlogi-hid-v0.6.11) - 2026-06-13

### Fixed

- *(hid)* replay a node's last inventory through transient probe failures ([#222](https://github.com/AprilNEA/OpenLogi/pull/222))

## [0.6.10](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.9...openlogi-core-v0.6.10) - 2026-06-13

### Added
Expand Down
22 changes: 11 additions & 11 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.10" }
openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.11" }
anyhow = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }

Expand All @@ -35,7 +35,7 @@ members = [
]

[workspace.package]
version = "0.6.10"
version = "0.6.11"
edition = "2024"
rust-version = "1.88"
license = "MIT OR Apache-2.0"
Expand All @@ -44,7 +44,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.10" }
hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.11" }
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.10" }
openlogi-hid = { path = "../openlogi-hid", version = "0.6.10" }
openlogi-assets = { path = "../openlogi-assets", version = "0.6.10" }
openlogi-core = { path = "../openlogi-core", version = "0.6.11" }
openlogi-hid = { path = "../openlogi-hid", version = "0.6.11" }
openlogi-assets = { path = "../openlogi-assets", version = "0.6.11" }
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.10" }
openlogi-core = { path = "../openlogi-core", version = "0.6.11" }
hidpp = { workspace = true }
async-hid = { workspace = true }
tokio = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/openlogi-hook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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.10" }
openlogi-core = { path = "../openlogi-core", version = "0.6.11" }
thiserror = { workspace = true }
tracing = { workspace = true }

Expand Down
Loading