From e13deb84600056e006a63f39ec6b9c2736ca9ac1 Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Wed, 31 Oct 2018 19:16:04 +0100 Subject: [PATCH 1/5] Fedora Packages I took the liberty to create a Fedora Copr repository for this project to make this easier to install. I've added the installation instructions to `INSTALL.md` in case you want to add it there. > https://copr.fedorainfracloud.org/coprs/lkiesow/g810-led/ --- INSTALL.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/INSTALL.md b/INSTALL.md index 02c9786..b20d3ea 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -19,6 +19,9 @@ hidapi is recommended but if you encounter a problem on your system, switch to l ArchLinux (aur) :
`yaourt -S g810-led-git` # with yaourt
`pacaur -S g810-led-git` # with pacaur
+Fedora (copr) :
+`sudo dnf copr enable lkiesow/g810-led` # Enable Copr repository
+`sudo dnf install g810-led` ## Installation of dependencies :
From 34496f1d48c7bfe7e110fd15136b60ef96c5eebe Mon Sep 17 00:00:00 2001 From: Lars Kiesow Date: Wed, 31 Oct 2018 19:23:46 +0100 Subject: [PATCH 2/5] Update FX Support Notice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I've tested the FX support on a g512 and all command work just fine with the exception of not being able to set a logo color simply because there is no backlit logo… This patch just updates the help notice which mentions that the FX commands are only tested on the g810, suggesting that they might not work on other keyboards. --- src/helpers/help.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/help.cpp b/src/helpers/help.cpp index eb95f87..05531cd 100644 --- a/src/helpers/help.cpp +++ b/src/helpers/help.cpp @@ -240,7 +240,7 @@ namespace help { cout< Date: Wed, 21 Nov 2018 20:38:07 +0100 Subject: [PATCH 3/5] Add missing case for G513 when sending keys --- src/classes/Keyboard.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/classes/Keyboard.cpp b/src/classes/Keyboard.cpp index 9c54f9d..43e2b3d 100644 --- a/src/classes/Keyboard.cpp +++ b/src/classes/Keyboard.cpp @@ -433,6 +433,7 @@ bool LedKeyboard::setKeys(KeyValueArray keyValues) { break; case LedKeyboard::KeyAddressGroup::keys: switch (currentDevice.model) { + case LedKeyboard::KeyboardModel::g513: case LedKeyboard::KeyboardModel::g610: case LedKeyboard::KeyboardModel::g810: case LedKeyboard::KeyboardModel::g910: From 4a8a8c06f7ef2752d66e8d1f5dc19852f6f5def7 Mon Sep 17 00:00:00 2001 From: Sebastian Schlicht Date: Wed, 28 Nov 2018 14:11:09 +0100 Subject: [PATCH 4/5] Makefile: fix duplicate entry for g413 in uninstall procedure --- makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/makefile b/makefile index 3741c14..840e529 100644 --- a/makefile +++ b/makefile @@ -108,7 +108,6 @@ uninstall: @rm /usr/bin/g213-led @rm /usr/bin/g410-led @rm /usr/bin/g413-led - @rm /usr/bin/g413-led @rm /usr/bin/g512-led @rm /usr/bin/g513-led @rm /usr/bin/g610-led From 3179933a399aad39ee741f772d3b8187546fc089 Mon Sep 17 00:00:00 2001 From: MatMoul Date: Sat, 22 Dec 2018 02:12:31 +0100 Subject: [PATCH 5/5] Version 0.2.9 --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 840e529..b8adaf0 100644 --- a/makefile +++ b/makefile @@ -18,7 +18,7 @@ includedir?=$(PREFIX)/include PROGN=g810-led MAJOR=0 MINOR=2 -MICRO=8 +MICRO=9 CXXFLAGS+=-std=gnu++11 -DVERSION=\"$(MAJOR).$(MINOR).$(MICRO)\" APPSRCS=src/main.cpp src/helpers/*.cpp src/helpers/*.h