Skip to content
Open
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.15](https://github.com/AprilNEA/OpenLogi/compare/v0.6.14...v0.6.15) - 2026-06-16

### Fixed

- *(release)* re-register PSGallery before Windows Artifact Signing ([#264](https://github.com/AprilNEA/OpenLogi/pull/264))

## [0.6.14](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.13...openlogi-core-v0.6.14) - 2026-06-15

### Fixed
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.14" }
openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.15" }
anyhow = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }

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

[workspace.package]
version = "0.6.14"
version = "0.6.15"
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.14" }
hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.15" }
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.14" }
openlogi-hid = { path = "../openlogi-hid", version = "0.6.14" }
openlogi-assets = { path = "../openlogi-assets", version = "0.6.14" }
openlogi-core = { path = "../openlogi-core", version = "0.6.15" }
openlogi-hid = { path = "../openlogi-hid", version = "0.6.15" }
openlogi-assets = { path = "../openlogi-assets", version = "0.6.15" }
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.14" }
openlogi-core = { path = "../openlogi-core", version = "0.6.15" }
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.14" }
openlogi-inject = { path = "../openlogi-inject", version = "0.6.14" }
openlogi-core = { path = "../openlogi-core", version = "0.6.15" }
openlogi-inject = { path = "../openlogi-inject", version = "0.6.15" }
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.14" }
openlogi-core = { path = "../openlogi-core", version = "0.6.15" }
tracing = { workspace = true }

[dev-dependencies]
Expand Down