summaryrefslogtreecommitdiffstats
path: root/readme.md
AgeCommit message (Collapse)AuthorFilesLines
2016-09-04Updated doc to contain breathing information.IBNobody1-29/+144
2016-09-04Updated readme to have better backlight breathing info.IBNobody1-160/+104
2016-08-27Merge pull request #695 from fredizzimo/dfu-util_instructionsJack Humbert1-5/+10
Add dfu-util to the instructions
2016-08-27Add dfu-util to the instructionsFred Sundvik1-5/+10
2016-08-27Add unit test documentationFred Sundvik1-0/+51
2016-08-26Merge remote-tracking branch 'upstream/master' into makefile_overhaulFred Sundvik1-2/+2
2016-08-25Fix minor typo in the readmeFred Sundvik1-2/+2
2016-08-25Merge branch 'master' into makefile_overhaulFred Sundvik1-1/+1
2016-08-24Merge pull request #646 from nclundsten/masterJack Humbert1-1/+1
fix ergodox ez link
2016-08-23Merge branch 'master' into makefile_overhaulFred Sundvik1-2/+49
2016-08-20Add warning about line endingsFred Sundvik1-0/+2
2016-08-20Add instructions for Windows 10 subsystem for LinuxFred Sundvik1-2/+47
Also simplify the linux instructions
2016-08-20Update readme with new instructions for makeFred Sundvik1-21/+81
2016-08-19Improve the dynamic macro documentationWojciech Siewierski1-2/+6
2016-08-18Merge pull request #648 from Vifon/dynamic_macrosJack Humbert1-0/+43
Implement the dynamic macros that are recorded in runtime
2016-08-18Add the dynamic macros documentation to the readmeWojciech Siewierski1-0/+43
2016-08-17trailing slashNigel Lundsten1-1/+1
2016-08-17fix ergodox link (again?) Nigel Lundsten1-1/+1
/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 Nagy1-2/+2
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-13fix link to ErgoDox EZAaron Patterson1-2/+2
This just fixes the readme link to the ErgoDox EZ directory
2016-07-31Fix the readme for the removed quick targetFred Sundvik1-4/+3
2016-07-30Update some obsolete referencesGergely Nagy1-2/+2
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 Sundvik1-13/+15
Also move all keyboard customization documentation under the "Going Beyond the keycodes" heading.
2016-07-29Fixed a typoMatthias1-1/+1
Fixed a typo in line 738 'void martix_init' to 'void matrix_init'
2016-07-27Added Tap Dance ExampleMichael Klos1-1/+26
Added (simple) Tap Dance example implementation steps.
2016-07-25Merge pull request #554 from robertdale/music-recording-documentationJack Humbert1-0/+11
Added music recording/playing doc
2016-07-25Merge pull request #549 from locksmithdon/patch-1Jack Humbert1-0/+2
Added LEADER_EXTERNS() call to readme.
2016-07-24added music recording/playing docRobert Dale1-0/+11
2016-07-24Added LEADER_EXTERNS() call.Don Smith1-0/+2
This seems to be needed in most cases.
2016-07-22readme.md: Update the tap dance docsGergely Nagy1-12/+15
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-22readme.md: algernon is strictly lowercaseGergely Nagy1-1/+1
Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-22Merge pull request #536 from pvinis/debug-docJack Humbert1-1/+1
add some debugging doc, after i found out how to print debug messages
2016-07-22Merge pull request #530 from sethbc/masterJack Humbert1-6/+6
Misc. fixes from sethbc
2016-07-22Merge pull request #525 from edasque/masterJack Humbert1-0/+15
Added Docker as a simple way to build firmwares
2016-07-19add link to hid_listenPavlos Vinieratos1-1/+1
2016-07-19add some debugging doc, after i found out how to print debug messagesPavlos Vinieratos1-1/+1
2016-07-19add a bit of documentationPavlos Vinieratos1-3/+45
2016-07-17don't believe the hex files are posted to qmk.fmSeth Chandler1-1/+1
2016-07-17update audio linksSeth Chandler1-1/+1
2016-07-17update tmk linkSeth Chandler1-1/+1
2016-07-17update link to Vagrant docfileSeth Chandler1-1/+1
2016-07-17update readme imagesSeth Chandler1-2/+2
2016-07-15Further simplyfying the docker usageErik Dasque1-7/+3
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 Dasque1-0/+19
2016-07-11Merge pull request #477 from Smilliam/masterJack Humbert1-0/+6
Canceling Space Cadet state with opposite shift key
2016-07-11Made rollover behavior for space cadet optionalSmilliam1-0/+6
2016-07-10Merge pull request #505 from fredizzimo/documentation_fixJack Humbert1-3/+0
Remove out of place documentation, caused by ChibiOS merge
2016-07-10Remove out of place documentation, caused by ChibiOS mergeFred Sundvik1-3/+0
2016-07-09Documents tap danceErez Zukerman1-0/+75
2016-07-07updates rgblight implementation, makes non-timer stuff compatible with audioJack Humbert1-11/+6