Skip to content

Commit d765320

Browse files
chore: release v0.6.22
1 parent e956efb commit d765320

7 files changed

Lines changed: 36 additions & 22 deletions

File tree

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.6.22](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.21...openlogi-core-v0.6.22) - 2026-07-21
11+
12+
### Added
13+
14+
- *(gui)* add asset source selector
15+
16+
### Fixed
17+
18+
- *(gui)* label the official asset source as OpenLogi
19+
20+
### Other
21+
22+
- *(core)* describe selected asset source
23+
1024
## [0.6.21](https://github.com/AprilNEA/OpenLogi/compare/openlogi-core-v0.6.20...openlogi-core-v0.6.21) - 2026-07-19
1125

1226
### Added

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.21" }
15+
openlogi-cli = { path = "crates/openlogi-cli", version = "0.6.22" }
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.21"
39+
version = "0.6.22"
4040
edition = "2024"
4141
rust-version = "1.96"
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.21" }
48+
hidpp = { package = "openlogi-hidpp", path = "crates/openlogi-hidpp", version = "0.6.22" }
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.21" }
15-
openlogi-hid = { path = "../openlogi-hid", version = "0.6.21" }
16-
openlogi-assets = { path = "../openlogi-assets", version = "0.6.21" }
14+
openlogi-core = { path = "../openlogi-core", version = "0.6.22" }
15+
openlogi-hid = { path = "../openlogi-hid", version = "0.6.22" }
16+
openlogi-assets = { path = "../openlogi-assets", version = "0.6.22" }
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
@@ -12,7 +12,7 @@ categories = ["hardware-support", "asynchronous"]
1212
readme = "README.md"
1313

1414
[dependencies]
15-
openlogi-core = { path = "../openlogi-core", version = "0.6.21" }
15+
openlogi-core = { path = "../openlogi-core", version = "0.6.22" }
1616
hidpp = { workspace = true }
1717
async-hid = { workspace = true }
1818
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.21" }
13-
openlogi-inject = { path = "../openlogi-inject", version = "0.6.21" }
12+
openlogi-core = { path = "../openlogi-core", version = "0.6.22" }
13+
openlogi-inject = { path = "../openlogi-inject", version = "0.6.22" }
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.21" }
14+
openlogi-core = { path = "../openlogi-core", version = "0.6.22" }
1515
tracing = { workspace = true }
1616

1717
[dev-dependencies]

0 commit comments

Comments
 (0)