aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
Commit message (Collapse)AuthorAgeFilesLines
* Add link to article about Unicode Hex Input in readmeSergey Lebedev2016-10-291-1/+1
| | | | | For me it wasn't clear what is `Unicode Hex Input`, that article clarifies it (at least for me).
* UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitationsPriyadi Iman Nurcahyo2016-10-231-2/+8
|
* Merge pull request #815 from priyadi/unicode_mapJack Humbert2016-10-161-0/+6
|\ | | | | Allow unicode up to 0xFFFFF using separate mapping table
| * Unicode map framework. Allow unicode up to 0xFFFFF using separatePriyadi Iman Nurcahyo2016-10-101-0/+6
| | | | | | | | mapping table
* | [Jack & Erez] Simplifies and documents TOJack & Erez2016-10-121-0/+2
| |
* | Merge pull request #808 from npoirey/masterJack Humbert2016-10-101-0/+3
|\ \ | | | | | | Altgr quick combination and updated readme
| * | Updated Readme to help windows users use docker for buildnpoirey2016-10-071-0/+3
| |/
* / Reduce the default dynamic macro bufferWojciech Siewierski2016-10-091-2/+2
|/ | | | | There have been reports of it leaving not enough free memory preventing the keyboard from working properly.
* formattingPavlos Vinieratos2016-09-211-1/+1
|
* Added notes on vagrant file fixes, UPRINTIBNobody2016-09-151-6/+20
|
* fixed typo in Linux install instructionsPeter Ondrejka2016-09-081-1/+1
|
* Moved breathing backlighting section in readme.mdIBNobody2016-09-031-60/+60
|
* Updated doc to contain breathing information.IBNobody2016-09-031-29/+144
|
* Updated readme to have better backlight breathing info.IBNobody2016-09-031-160/+104
|
* Merge pull request #695 from fredizzimo/dfu-util_instructionsJack Humbert2016-08-271-5/+10
|\ | | | | Add dfu-util to the instructions
| * Add dfu-util to the instructionsFred Sundvik2016-08-271-5/+10
| |
* | Add unit test documentationFred Sundvik2016-08-271-0/+51
|/
* Merge remote-tracking branch 'upstream/master' into makefile_overhaulFred Sundvik2016-08-261-2/+2
|\
| * Fix minor typo in the readmeFred Sundvik2016-08-251-2/+2
| |
* | Merge branch 'master' into makefile_overhaulFred Sundvik2016-08-251-1/+1
|\|
| * Merge pull request #646 from nclundsten/masterJack Humbert2016-08-241-1/+1
| |\ | | | | | | fix ergodox ez link
| | * trailing slashNigel Lundsten2016-08-171-1/+1
| | |
| | * fix ergodox link (again?) Nigel Lundsten2016-08-171-1/+1
| | | | | | | | | /ergodox/ez is a broken link, seems like the ez stuff is at /ergodox
* | | Merge branch 'master' into makefile_overhaulFred Sundvik2016-08-231-2/+49
|\| |
| * | Add warning about line endingsFred Sundvik2016-08-201-0/+2
| | |
| * | Add instructions for Windows 10 subsystem for LinuxFred Sundvik2016-08-201-2/+47
| | | | | | | | | | | | Also simplify the linux instructions
* | | Update readme with new instructions for makeFred Sundvik2016-08-201-21/+81
|/ /
* | Improve the dynamic macro documentationWojciech Siewierski2016-08-191-2/+6
| |
* | Merge pull request #648 from Vifon/dynamic_macrosJack Humbert2016-08-171-0/+43
|\ \ | | | | | | Implement the dynamic macros that are recorded in runtime
| * | Add the dynamic macros documentation to the readmeWojciech Siewierski2016-08-181-0/+43
| |/
* / tap-dance: Major rework, to make it more reliableGergely Nagy2016-08-171-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>
* fix link to ErgoDox EZAaron Patterson2016-08-121-2/+2
| | | | This just fixes the readme link to the ErgoDox EZ directory
* Fix the readme for the removed quick targetFred Sundvik2016-07-311-4/+3
|
* Update some obsolete referencesGergely Nagy2016-07-301-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>
* Fix the quick aliases documentation sectionFred Sundvik2016-07-291-13/+15
| | | | | Also move all keyboard customization documentation under the "Going Beyond the keycodes" heading.
* Fixed a typoMatthias2016-07-291-1/+1
| | | Fixed a typo in line 738 'void martix_init' to 'void matrix_init'
* Added Tap Dance ExampleMichael Klos2016-07-261-1/+26
| | | | Added (simple) Tap Dance example implementation steps.
* Merge pull request #554 from robertdale/music-recording-documentationJack Humbert2016-07-241-0/+11
|\ | | | | Added music recording/playing doc
| * added music recording/playing docRobert Dale2016-07-241-0/+11
| |
* | Merge pull request #549 from locksmithdon/patch-1Jack Humbert2016-07-241-0/+2
|\ \ | | | | | | Added LEADER_EXTERNS() call to readme.
| * | Added LEADER_EXTERNS() call.Don Smith2016-07-241-0/+2
| |/ | | | | This seems to be needed in most cases.
* | readme.md: Update the tap dance docsGergely Nagy2016-07-221-12/+15
| | | | | | | | Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* | readme.md: algernon is strictly lowercaseGergely Nagy2016-07-221-1/+1
|/ | | | Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
* Merge pull request #536 from pvinis/debug-docJack Humbert2016-07-211-1/+1
|\ | | | | add some debugging doc, after i found out how to print debug messages
| * add link to hid_listenPavlos Vinieratos2016-07-191-1/+1
| |
| * add some debugging doc, after i found out how to print debug messagesPavlos Vinieratos2016-07-191-1/+1
| |
* | Merge pull request #530 from sethbc/masterJack Humbert2016-07-211-6/+6
|\ \ | | | | | | Misc. fixes from sethbc
| * | don't believe the hex files are posted to qmk.fmSeth Chandler2016-07-171-1/+1
| | |
| * | update audio linksSeth Chandler2016-07-171-1/+1
| | |
| * | update tmk linkSeth Chandler2016-07-171-1/+1
| | |