Change calc keycode to correct byte

This commit is contained in:
Luke
2020-07-09 20:31:00 +12:00
parent 4f4e0b8f3f
commit 9fea5a4126
5 changed files with 10 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -710,7 +710,7 @@ dependencies = [
[[package]] [[package]]
name = "rog-daemon" name = "rog-daemon"
version = "0.15.0" version = "0.15.1"
dependencies = [ dependencies = [
"dbus", "dbus",
"dbus-tokio", "dbus-tokio",

6
debian/changelog vendored
View File

@@ -1,3 +1,9 @@
rog-core (0.15.1) focal; urgency=medium
- Use correct keycode for calc
-- Luke Jones <luke@ljones.dev> Thu, 09 Jul 2020 20:31:04 +1200
rog-core (0.15.0) focal; urgency=medium rog-core (0.15.0) focal; urgency=medium
- Support "Calc" fn key on G712 - Support "Calc" fn key on G712

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "rog-daemon" name = "rog-daemon"
version = "0.15.0" version = "0.15.1"
license = "MPL-2.0" license = "MPL-2.0"
readme = "README.md" readme = "README.md"
authors = ["Luke <luke@ljones.dev>"] authors = ["Luke <luke@ljones.dev>"]

View File

@@ -258,7 +258,7 @@ pub enum FnKeys {
LedBrightDown = 0xC5, LedBrightDown = 0xC5,
AuraPrevious = 0xB2, AuraPrevious = 0xB2,
AuraNext = 0xB3, AuraNext = 0xB3,
Calc = 0x90, Calc = 0x92,
None, None,
} }

View File

@@ -9,7 +9,7 @@ use rog_client::{
}; };
use std::io::Write; use std::io::Write;
static VERSION: &str = "0.15.0"; static VERSION: &str = "0.15.1";
#[derive(Options)] #[derive(Options)]
struct CLIStart { struct CLIStart {