Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-14 | shrink preonic by a bit | ||
2017-11-14 | QMK DFU bootloader generation (#2009) | ||
* adds :bootloader target * update planck and preonic revisions * remove references to .h files for planck * update preonic keymap * only add keyboard.h files that exist * add production target * hook things up with the new lufa variables * update rules for planck/preonic * back backlight key turn of status led when pressed * add manufacturer/product strings to bootloader | |||
2017-09-27 | remove all makefiles from keyboard directories | ||
2017-09-08 | Remove all Makefiles from the keyboards directory. (#1660) | ||
* Remove all Makefiles from the keyboards directory. * update keymaps added in the last 8 days * Ignore keyboard/keymap makefiles * update hand_wire to reflect our new Makefile-less reality * Update the make guide to reflect the new reality * move planck keymap options to rules.mk * update planck keymaps 4real * trigger travis * add back build_keyboard.mk * restore changes to build_keyboard | |||
2017-08-20 | Remove PLAY_NOTE_ARRAY usages to get rid of warning. | ||
2017-08-19 | Merge pull request #1601 from dlaroe/master | ||
My keymaps only | |||
2017-08-18 | Added Preonic Makefile and readme.md | ||
2017-08-18 | Updated keymaps with second LOWER for the right hand | ||
2017-07-24 | First Update | ||
2017-07-23 | adds music mode, music mode songs, music mask | ||
2017-07-23 | remove unneccesary headers | ||
2017-07-23 | clean-up planck and preonic keymaps, move audio stuff around | ||
2017-05-23 | preonic map | ||
2017-05-11 | Fix spelling of "persistent" | ||
Fixes #1201. | |||
2017-04-13 | Fix warnings in CMD-Preonic | ||
The startup_sound is defined using MUSICAL_NOTEs, since non-constant initializer expressions are not allowed in C. | |||
2017-04-02 | Merge remote-tracking branch 'upstream/master' | ||
2017-03-30 | Worked around some new Makefile issues. | ||
2017-03-29 | Merge branch 'master' into to_push | ||
2017-03-28 | Merge pull request #1112 from newsboytko/newsboytko/midi-keycodes | ||
Flesh out MIDI support | |||
2017-03-08 | Update smt keymap READMEs | ||
2017-03-08 | Update smt keymaps for consistency | ||
2017-02-25 | Update existing keymaps | ||
Update existing keymaps to enable MIDI_BASIC functionality. Also added an option MIDI_ENABLE_STRICT to be strict about keycode use (which also reduces memory footprint at runtime) | |||
2017-02-10 | Merge remote-tracking branch 'upstream/master' | ||
2017-02-10 | Added RGB Underglow to my Preonic | ||
2017-01-28 | s/Bkps/Bksp | ||
2017-01-28 | Carry over Planck updates to my Preonic keymap | ||
2017-01-26 | replace jackhumbert with qmk | ||
2017-01-26 | Merge pull request #1033 from smt/smt/preonic | ||
Add smt's keymap for Preonic | |||
2017-01-25 | Remove COLEMAK from preonic_keycodes enum | ||
2017-01-25 | layer defines to enum | ||
2017-01-25 | Update readme for smt Preonic keymap | ||
2017-01-25 | Add smt keymap for Preonic | ||
2017-01-08 | Usaility changes to keymap, tidying up a bit. | ||
2016-12-13 | Changes | ||
2016-12-06 | Merge remote-tracking branch 'upstream/master' | ||
2016-11-26 | separated into api files/folder | ||
2016-11-17 | rgb light through midi | ||
2016-11-16 | Merge remote-tracking branch 'upstream/master' | ||
2016-11-10 | Missed removing a function | ||
2016-11-10 | Removed some common functions from my keymap | ||
2016-11-10 | Missed some stuff. Added a song (stole it from reddit). | ||
2016-11-10 | Adding my (zach) keymaps for planck and preonic | ||
2016-10-23 | 1.2 update | ||
2016-10-22 | Update readme to reflect 1.1 changes. | ||
2016-10-22 | Update keymap to reflect 1.1 changes. | ||
2016-10-22 | Update readme to reflect changes | ||
2016-10-18 | Add files via upload | ||
Minor layout changes | |||
2016-08-17 | tap-dance: Major rework, to make it more reliable | ||
This reworks how the tap-dance feature works: instead of one global state, we have a state for each tap-dance key, so we can cancel them when another tap-dance key is in flight. This fixes #527. Since we have a state for each key, we can avoid situation where a keyup would mess with our global state. This fixes #563. And while here, we also make sure to fire events only once, and this fixes #574. There is one breaking change, though: tap-dance debugging support was removed, because dumping the whole state would increase the firmware size too much. Any keymap that made use of this, will have to be updated (but there's no such keymap in the repo). Also, there's a nice trick used in this rework: we need to iterate through tap_dance_actions in a few places, to check for timeouts, and so on. For this, we'd need to know the size of the array. We can't discover that at compile-time, because tap-dance gets compiled separately. We'd like to avoid having to terminate the list with a sentinel value, because that would require updates to all keymaps that use the feature. So, we keep track of the highest tap-dance code seen so far, and iterate until that index. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org> | |||
2016-08-14 | Fix bug | ||
2016-08-14 | Remove pointless comments | ||