summaryrefslogtreecommitdiff
path: root/readme.md
AgeCommit message (Collapse)Author
2016-09-03Moved breathing backlighting section in readme.mdIBNobody
2016-09-03Updated doc to contain breathing information.IBNobody
2016-09-03Updated readme to have better backlight breathing info.IBNobody
2016-08-27Merge pull request #695 from fredizzimo/dfu-util_instructionsJack Humbert
Add dfu-util to the instructions
2016-08-27Add dfu-util to the instructionsFred Sundvik
2016-08-27Add unit test documentationFred Sundvik
2016-08-26Merge remote-tracking branch 'upstream/master' into makefile_overhaulFred Sundvik
2016-08-25Fix minor typo in the readmeFred Sundvik
2016-08-25Merge branch 'master' into makefile_overhaulFred Sundvik
2016-08-24Merge pull request #646 from nclundsten/masterJack Humbert
fix ergodox ez link
2016-08-23Merge branch 'master' into makefile_overhaulFred Sundvik
2016-08-20Add warning about line endingsFred Sundvik
2016-08-20Add instructions for Windows 10 subsystem for LinuxFred Sundvik
Also simplify the linux instructions
2016-08-20Update readme with new instructions for makeFred Sundvik
2016-08-19Improve the dynamic macro documentationWojciech Siewierski
2016-08-17Merge pull request #648 from Vifon/dynamic_macrosJack Humbert
Implement the dynamic macros that are recorded in runtime
2016-08-18Add the dynamic macros documentation to the readmeWojciech Siewierski
2016-08-17trailing slashNigel Lundsten
2016-08-17fix ergodox link (again?) Nigel Lundsten
/ergodox/ez is a broken link, seems like the ez stuff is at /ergodox
2016-08-17tap-dance: Major rework, to make it more reliableGergely Nagy
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-12fix link to ErgoDox EZAaron Patterson
This just fixes the readme link to the ErgoDox EZ directory
2016-07-31Fix the readme for the removed quick targetFred Sundvik
2016-07-30Update some obsolete referencesGergely Nagy
Some links were still pointing to `/keyboards/ergodox_ez`, while the directory is `/keyboards/erdogox` now. Not all references have been updated, and some of the text here and there may need updating to mention the ErgoDox Infinity too, but that's out of the scope for this quick fix. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-29Fix the quick aliases documentation sectionFred Sundvik
Also move all keyboard customization documentation under the "Going Beyond the keycodes" heading.
2016-07-29Fixed a typoMatthias
Fixed a typo in line 738 'void martix_init' to 'void matrix_init'
2016-07-26Added Tap Dance ExampleMichael Klos
Added (simple) Tap Dance example implementation steps.
2016-07-24Merge pull request #554 from robertdale/music-recording-documentationJack Humbert
Added music recording/playing doc
2016-07-24Merge pull request #549 from locksmithdon/patch-1Jack Humbert
Added LEADER_EXTERNS() call to readme.
2016-07-24added music recording/playing docRobert Dale
2016-07-24Added LEADER_EXTERNS() call.Don Smith
This seems to be needed in most cases.
2016-07-22readme.md: Update the tap dance docsGergely Nagy
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-22readme.md: algernon is strictly lowercaseGergely Nagy
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-21Merge pull request #536 from pvinis/debug-docJack Humbert
add some debugging doc, after i found out how to print debug messages
2016-07-21Merge pull request #530 from sethbc/masterJack Humbert
Misc. fixes from sethbc
2016-07-21Merge pull request #525 from edasque/masterJack Humbert
Added Docker as a simple way to build firmwares
2016-07-19add link to hid_listenPavlos Vinieratos
2016-07-19add some debugging doc, after i found out how to print debug messagesPavlos Vinieratos
2016-07-19add a bit of documentationPavlos Vinieratos
2016-07-17don't believe the hex files are posted to qmk.fmSeth Chandler
2016-07-17update audio linksSeth Chandler
2016-07-17update tmk linkSeth Chandler
2016-07-17update link to Vagrant docfileSeth Chandler
2016-07-16update readme imagesSeth Chandler
2016-07-15Further simplyfying the docker usageErik Dasque
We'll be able to change the image user name if we set up the initial repo to trigger Docker images rebuilds on hub.docker.com
2016-07-15Adding Docker build system & documentationErik Dasque
2016-07-11Merge pull request #477 from Smilliam/masterJack Humbert
Canceling Space Cadet state with opposite shift key
2016-07-10Made rollover behavior for space cadet optionalSmilliam
2016-07-10Merge pull request #505 from fredizzimo/documentation_fixJack Humbert
Remove out of place documentation, caused by ChibiOS merge
2016-07-10Remove out of place documentation, caused by ChibiOS mergeFred Sundvik
2016-07-08Documents tap danceErez Zukerman