aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Merge pull request #77 from keyboardio/eeprom-keymap-deprecation-fixJesse Vincent2019-02-03
|\ | | | | Update the EEPROMKeymap.setup() call to remove an obsolete argument
| * Update the EEPROMKeymap.setup() call to remove an obsolete argumentGergely Nagy2019-02-03
|/ | | | | | | | EEPROM-Keymap was recently changed to work differently, and thus the mode argument became obsolete. This removes it from the call, and updates the comment above it to match current reality. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #76 from keyboardio/suspend-ledoff-fixJesse Vincent2019-01-20
|\ | | | | Fix turning LEDs off on suspend
| * Fix turning LEDs off on suspendGergely Nagy2019-01-20
|/ | | | | | | | | | | When suspending, we want to set all LEDs off & sync first, and only then pause LED operations. When the code was originally written, `LEDControl.syncLeds()` synced LEDs even when `LEDControl.paused` was set - it no longer does so, so we need to pause after we synced. This addresses keyboardio/Kaleidoscope#516, at least partially. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #75 from keyboardio/no-deprecated-apisJesse Vincent2019-01-19
|\ | | | | Stop using deprecated (and now removed) APIs
| * Stop using deprecated (and now removed) APIsGergely Nagy2019-01-20
|/ | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #74 from jimt/patch-1Jesse Vincent2018-12-24
|\ | | | | Correct location of Makefile for library updates
| * Correct location of Makefile for library updatesJim Tittsler2018-12-25
|/ | | The `Makefile` is one directory higher than was indicated in the README.
* Merge pull request #72 from tych0/doc-fixupsJesse Vincent2018-12-09
|\ | | | | Doc fixups
| * add a blurb about binding the PROG key to thingsTycho Andersen2018-12-09
| | | | | | | | Signed-off-by: Tycho Andersen <tycho@tycho.ws>
| * wrap the *super* long linesTycho Andersen2018-12-09
|/ | | | | | | | I hate to be that guy, but I was reading these on github's page when deciding whether or not to order a keyboard.io, and the extra long lines here are not automatically wrapped when browsing the repo on github. Signed-off-by: Tycho Andersen <tycho@tycho.ws>
* Merge pull request #71 from keyboardio/doc/link-updatesJesse Vincent2018-12-05
|\ | | | | Update the URL of LED-Stalker, to point to the new docs
| * Update the URL of LED-Stalker, to point to the new docsGergely Nagy2018-12-05
|/ | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #68 from hustvedt/fix-anyGergely Nagy2018-10-30
|\ | | | | Fix anyKeyMacro for new hid API
| * Fix anyKeyMacro for new hid APIAnders Hustvedt2018-10-29
|/ | | | Signed-off-by: Anders Hustvedt <anders@computerfire.net>
* Merge pull request #67 from keyboardio/h/warning-fixesJesse Vincent2018-10-21
|\ | | | | Two small warning fixes
| * src/Model01-Firmware.h: Add a #pragma once to make cpplint happyGergely Nagy2018-10-22
| | | | | | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
| * Drop the LED-Off.h include, the header is deprecatedGergely Nagy2018-10-22
|/ | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Travis cleanupGergely Nagy2018-10-10
| | | | | | Remove the IRC notifications from Travis (we're not using IRC anymore). Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #65 from keyboardio/f/focusJesse Vincent2018-10-08
|\ | | | | Support an EEPROM-based keymap overlay & Focus
| * Support an EEPROM-based keymap overlay & FocusGergely Nagy2018-10-09
|/ | | | | | | | | | | This adds the necessary code to support having five additional layers in EEPROM. Also adds support for Focus, so these layers can be changed, and the default layer set, too. We also enable the EEPROM commands, which can be helpful in debugging and backing up one's EEPROM contents. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #63 from wesQ3/whitespace-fixJesse Vincent2018-09-21
|\ | | | | Fix trailing whitespace and stray tab
| * Fix trailing whitespace and stray tabWes Malone2018-09-21
|/ | | | Signed-off-by: Wes Malone <wes@mitsi.com>
* shellcheck should only be run in the Kaleidoscope repoJesse Vincent2018-09-04
|
* Update travis.yml to point to new bundle repoJesse Vincent2018-09-04
|
* Update README pointers to new keyboardio Kaleidoscope bundle.Jesse Vincent2018-09-04
|
* Merge pull request #59 from keyboardio/more-featureful-defaultsJesse Vincent2018-07-19
|\ | | | | More featureful defaults
| * astyleJesse Vincent2018-07-19
| |
| * Make it easier to switch to COLEMAK/DVORAK/CUSTOM layoutsJesse Vincent2018-07-19
| |
| * Add a Caps lock key on Fn-Let by default.Jesse Vincent2018-07-19
|/ | | | | Enough customers want a caps lock that we ought to give them -something- in the default firmware
* Merge pull request #57 from TreTuna/patch-1Gergely Nagy2018-07-11
|\ | | | | Fix typo in comments - chrods > chords
| * Fix typo in commentsTré Ammatuna2018-07-10
|/
* Merge pull request #55 from keyboardio/f/usb-quirksJesse Vincent2018-07-02
|\ | | | | Add a way to toggle between Boot and NKRO mode manually
| * Don't use an enum for MagicCombo.Gergely Nagy2018-07-02
| | | | | | | | | | | | | | | | | | | | Since we use a dedicated function for the single magic combo we have, using an enum in this case is just more confusing than if we didn't. For this reason, drop the use of enum, and just specify the array directly. Thanks @obra for the suggestion! Signed-off-by: Gergely Nagy <algernon@keyboard.io>
| * Documentation fixupsGergely Nagy2018-07-01
| | | | | | | | | | | | | | Fixed up some of the USBQuirks and MagicCombo-related documentation, based on feedback from @obra. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
| * Updated to use the new MagicCombo APIsGergely Nagy2018-06-09
| | | | | | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
| * Add a way to toggle between Boot and NKRO mode manuallyGergely Nagy2018-06-08
|/ | | | | | | | Make use of the MagicCombo and USB-Quirks plugins in order to allow one to toggle between Boot and NKRO mode of the keyboard, simply by pressing Left Fn + Shift + Esc. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Drop the use of HostPowerManagement.enableWakeup()Gergely Nagy2018-06-04
| | | | | | | | It is not necessary anymore, as BootKeyboard supports wakeup itself now. As such, also updated the comments regarding the plugin in KALEIDOSCOPE_INIT_PLUGINS. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #52 from keyboardio/f/plugin-v2Gergely Nagy2018-05-15
|\ | | | | Updated to use the new plugin APIs
| * Updated to use the new plugin APIsGergely Nagy2018-05-08
|/ | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* Merge pull request #45 from ryansb/fix-installed-envGergely Nagy2018-04-29
|\ | | | | Match wildcard usage between manual- and arduino-installed environments
| * Match wildcard usage between manual- and arduino-installed environmentsRyan S. Brown2018-03-05
| | | | | | | | | | | | | | Finding the base-dir of installed environments use a wildcard causing [dir]/packages/keyboardio/hardware/avr/toolchain to be the interpreted as the installed env, breaking use of that variable later when it informs paths for the boards.txt and other files.
* | Merge pull request #39 from gedankenexperimenter/f/keymapsGergely Nagy2018-04-05
|\ \ | | | | | | Updated definition of keymaps[] to use KEYMAPS() macro
| * | Updated definition of keymaps[] to use KEYMAPS() macroMichael Richters2017-11-30
| | | | | | | | | | | | | | | This change will enable the `layer_count` variable for preventing reading past the end of the `keymaps[]` array.
* | | Merge pull request #49 from algernon/h/numlock/quote-transparentGergely Nagy2018-03-12
|\ \ \ | | | | | | | | Make the Quote transparent on the NUMPAD layer.
| * | | Make the Quote transparent on the NUMPAD layer.Gergely Nagy2018-03-10
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because the key two rows below `NumLock` is `Key_Quote` on the base layer too, and is not a numpad-specific key either, make it transparent, so it does not get highlighted erroneously. Thanks to @ImmaculatePotato and Eddie Jinks for reporting the issue, and proposing the fix. Fixes #48. Signed-off-by: Gergely Nagy <algernon@keyboard.io>
* | | Merge pull request #47 from danbernier/alpha-square-colorJesse Vincent2018-03-08
|\ \ \ | |_|/ |/| | Use CRGB type for AlphaSquare color, so ints are in common order
| * | Use CRGB type for AlphaSquare color, so ints are in common orderDan Bernier2018-03-08
|/ /
* | Merge pull request #41 from algernon/f/host-powermanagementJesse Vincent2017-12-16
|\ \ | | | | | | Add support for host power management (suspend & wakeup)
| * | Add support for host power management (suspend & wakeup)Gergely Nagy2017-12-16
|/ / | | | | | | Signed-off-by: Gergely Nagy <algernon@keyboard.io>