diff --git a/README.md b/README.md index 05aaddaecc..84fe287950 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,10 @@ See also: * [Manual for the driver daemon](https://github.com/mattanger/ckb-next/blob/master/DAEMON.md) * [ckb testing repository](https://github.com/mattanger/ckb-next/tree/testing) (updated more frequently, but may be unstable) +Current Status +-------------- +Right now ckb-next is under active development. *We will cut a release and ship a macOS binary as soon as some important changes are done*. You can always build the software from source with just one command. See [Linux Installation](#linux-installation) and [OS X/macOS Installation](#os-xmacos-installation). Thank you for the interest in this software and your patience. + Device Support -------------- @@ -61,12 +65,12 @@ Linux Installation * Fedora 24/25, CentOS/RHEL 7 (maintained by [@hevanaa](https://github.com/hevanaa)): * [`johanh/ckb`](https://copr.fedorainfracloud.org/coprs/johanh/ckb/) - based on `master` branch +* Arch Linux (maintained by [@makz27](https://github.com/makz27), [@light2yellow](https://github.com/light2yellow)): + * [`aur/ckb-next-git`](https://aur.archlinux.org/packages/ckb-next-git) - based on `master` branch (more stable) + * [`aur/ckb-next-latest-git`](https://aur.archlinux.org/packages/ckb-next-latest-git) - based on `testing` branch (less stable but fresher) **ckb** packages (deprecated): -* Arch Linux (maintained by [@light2yellow](https://github.com/light2yellow)): - * [`aur/ckb-git`](https://aur.archlinux.org/packages/ckb-git/) - based on `master` branch (more stable) - * [`aur/ckb-git-latest`](https://aur.archlinux.org/packages/ckb-git-latest/) - based on `testing` branch (less stable but fresher) * Gentoo (maintained by [@mrueg](https://github.com/mrueg)): `emerge -av app-misc/ckb` If you are a package maintainer or want to discuss something with package maintainers let us know in the issues, so we can have an accountable and centralized communication about this. *If you would like to maintain a package for your favorite distro/OS, please let us know as well.* @@ -246,6 +250,7 @@ Known issues - The tray icon doesn't appear in some desktop environments. This is a known Qt bug. If you can't see the icon, reopen ckb to bring the window back. - When starting the driver manually, the Terminal window sometimes gets spammed with enter keys. You can stop it by unplugging and replugging the keyboard or by moving the poll rate switch. - When stopping the driver manually, the keyboard sometimes stops working completely. You can reconnect it by moving the poll rate switch. +- On newer versions of macOS (i.e. 10.12 and up) CMD/Shift+select does not work, yet. Stopping the daemon and GUI for `ckb` will fix this issue temporarily. Contributing ------------ diff --git a/src/ckb-daemon/usb.c b/src/ckb-daemon/usb.c index 73c62886b7..065dd14d47 100644 --- a/src/ckb-daemon/usb.c +++ b/src/ckb-daemon/usb.c @@ -26,7 +26,7 @@ const char* vendor_str(short vendor){ const char* product_str(short product){ if(product == P_K95 || product == P_K95_NRGB) return "k95"; - if(product == P_K70 || product == P_K70_NRGB || product == P_K70_LUX || product == P_K70_LUX_NRGB || product == P_K70_RFIRE) + if(product == P_K70 || product == P_K70_NRGB || product == P_K70_LUX || product == P_K70_LUX_NRGB || product == P_K70_RFIRE || product == P_K70_RFIRE_NRGB) return "k70"; if(product == P_K65 || product == P_K65_LUX || product == P_K65_RFIRE) return "k65"; diff --git a/src/ckb-daemon/usb.h b/src/ckb-daemon/usb.h index 288a3c1c53..b35b6456c3 100644 --- a/src/ckb-daemon/usb.h +++ b/src/ckb-daemon/usb.h @@ -26,7 +26,9 @@ #define P_K70_LUX_NRGB_STR "1b36" #define P_K70_RFIRE 0x1b38 #define P_K70_RFIRE_STR "1b38" -#define IS_K70(kb) ((kb)->vendor == V_CORSAIR && ((kb)->product == P_K70 || (kb)->product == P_K70_NRGB || (kb)->product == P_K70_RFIRE || (kb)->product == P_K70_LUX || (kb)->product == P_K70_LUX_NRGB)) +#define P_K70_RFIRE_NRGB 0x1b3a +#define P_K70_RFIRE_NRGB_STR "1b3a" +#define IS_K70(kb) ((kb)->vendor == V_CORSAIR && ((kb)->product == P_K70 || (kb)->product == P_K70_NRGB || (kb)->product == P_K70_RFIRE || (kb)->product == P_K70_RFIRE_NRGB || (kb)->product == P_K70_LUX || (kb)->product == P_K70_LUX_NRGB)) #define P_K95 0x1b11 #define P_K95_STR "1b11" diff --git a/src/ckb-daemon/usb_linux.c b/src/ckb-daemon/usb_linux.c index 30c8341a86..ec25365269 100644 --- a/src/ckb-daemon/usb_linux.c +++ b/src/ckb-daemon/usb_linux.c @@ -360,6 +360,7 @@ static _model models[] = { { P_K70_LUX_STR, P_K70_LUX }, { P_K70_LUX_NRGB_STR, P_K70_LUX_NRGB }, { P_K70_RFIRE_STR, P_K70_RFIRE }, + { P_K70_RFIRE_NRGB_STR, P_K70_RFIRE_NRGB }, { P_K95_STR, P_K95 }, { P_K95_NRGB_STR, P_K95_NRGB }, { P_STRAFE_STR, P_STRAFE }, diff --git a/src/ckb-daemon/usb_mac.c b/src/ckb-daemon/usb_mac.c index 4144cb483f..59016b44e0 100644 --- a/src/ckb-daemon/usb_mac.c +++ b/src/ckb-daemon/usb_mac.c @@ -770,7 +770,7 @@ int usbmain(){ int vendor = V_CORSAIR; int products[] = { // Keyboards - P_K65, P_K65_LUX, P_K65_RFIRE, P_K70, P_K70_NRGB, P_K70_LUX, P_K70_LUX_NRGB, P_K70_RFIRE, P_K95, P_K95_NRGB, P_STRAFE, P_STRAFE_NRGB, + P_K65, P_K65_LUX, P_K65_RFIRE, P_K70, P_K70_NRGB, P_K70_LUX, P_K70_LUX_NRGB, P_K70_RFIRE, P_K70_RFIRE_NRGB, P_K95, P_K95_NRGB, P_STRAFE, P_STRAFE_NRGB, // Mice P_M65, P_M65_PRO, P_SABRE_O, P_SABRE_L, P_SABRE_N, P_SCIMITAR, P_SABRE_O2 };