summaryrefslogtreecommitdiff
path: root/readme.md
Commit message (Collapse)AuthorAge
* Merge pull request #881 from NoahAndrews/patch-1Jack Humbert2016-12-02
|\ | | | | Recommend WSL on Windows 10 [Discussion]
| * Recommend WSL on Windows 10Noah Andrews2016-11-14
| | | | | | | | | | At this point, I consider the batch scripts @IBNobody and I worked on to mostly be a failure. They've proven to be unreliable, too dependent on the environment they're being run in, and I've seen far too many examples of people having frustrating issues with them that I haven't been able to help them with. They can also produce misleading and confusing error messages. I've been pointing people to use the WSL for a while now. Eventually, I think we should make a proper replacement for the batch scripts, possibly with an environment in msys2. For now, the WSL method in Windows 10 is far more reliable, and is easy to set up. I also cleaned up some things in the WSL instructions themselves.
* | Improve docs on memory usagecbbrowne2016-12-01
| |
* | More notes on .hex size protectioncbbrowne2016-12-01
| |
* | Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert2016-11-28
|\ \
| * | Update Unicode documentationPriyadi Iman Nurcahyo2016-11-27
| | |
| * | A few addition to PS2 documentation.Priyadi Iman Nurcahyo2016-11-26
| | |
| * | Added documentation for PS/2 mouse in readmeofples2016-11-25
| | |
* | | merging lets_splitJack Humbert2016-11-21
|\| |
| * | Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-11-08
| |\|
| * | Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-11-01
| |\ \
| * \ \ Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody2016-10-28
| |\ \ \
| * | | | Fixed some large keyboard bugsIBNobody2016-10-23
| | | | | | | | | | | | | | | | | | | | | | | | | Fixed some bugs relating to keyboards with more than 16 columns. Also added the ability to mask off keyboard matrix bits.
* | | | | rgb light through midiJack Humbert2016-11-17
| |_|_|/ |/| | |
* | | | Add documentation for the variable tracingFred Sundvik2016-11-06
| |_|/ |/| |
* | | Add link to article about Unicode Hex Input in readmeSergey Lebedev2016-10-29
| |/ |/| | | | | | | 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-23
|/
* Merge pull request #815 from priyadi/unicode_mapJack Humbert2016-10-16
|\ | | | | Allow unicode up to 0xFFFFF using separate mapping table
| * Unicode map framework. Allow unicode up to 0xFFFFF using separatePriyadi Iman Nurcahyo2016-10-10
| | | | | | | | mapping table
* | [Jack & Erez] Simplifies and documents TOJack & Erez2016-10-12
| |
* | Merge pull request #808 from npoirey/masterJack Humbert2016-10-10
|\ \ | | | | | | Altgr quick combination and updated readme
| * | Updated Readme to help windows users use docker for buildnpoirey2016-10-07
| |/
* / Reduce the default dynamic macro bufferWojciech Siewierski2016-10-09
|/ | | | | There have been reports of it leaving not enough free memory preventing the keyboard from working properly.
* formattingPavlos Vinieratos2016-09-21
|
* Added notes on vagrant file fixes, UPRINTIBNobody2016-09-15
|
* fixed typo in Linux install instructionsPeter Ondrejka2016-09-08
|
* Moved breathing backlighting section in readme.mdIBNobody2016-09-03
|
* Updated doc to contain breathing information.IBNobody2016-09-03
|
* Updated readme to have better backlight breathing info.IBNobody2016-09-03
|
* Merge pull request #695 from fredizzimo/dfu-util_instructionsJack Humbert2016-08-27
|\ | | | | Add dfu-util to the instructions
| * Add dfu-util to the instructionsFred Sundvik2016-08-27
| |
* | Add unit test documentationFred Sundvik2016-08-27
|/
* Merge remote-tracking branch 'upstream/master' into makefile_overhaulFred Sundvik2016-08-26
|\
| * Fix minor typo in the readmeFred Sundvik2016-08-25
| |
* | Merge branch 'master' into makefile_overhaulFred Sundvik2016-08-25
|\|
| * Merge pull request #646 from nclundsten/masterJack Humbert2016-08-24
| |\ | | | | | | fix ergodox ez link
| | * trailing slashNigel Lundsten2016-08-17
| | |
| | * fix ergodox link (again?) Nigel Lundsten2016-08-17
| | | | | | | | | /ergodox/ez is a broken link, seems like the ez stuff is at /ergodox
* | | Merge branch 'master' into makefile_overhaulFred Sundvik2016-08-23
|\| |
| * | Add warning about line endingsFred Sundvik2016-08-20
| | |
| * | Add instructions for Windows 10 subsystem for LinuxFred Sundvik2016-08-20
| | | | | | | | | | | | Also simplify the linux instructions
* | | Update readme with new instructions for makeFred Sundvik2016-08-20
|/ /
* | Improve the dynamic macro documentationWojciech Siewierski2016-08-19
| |
* | Merge pull request #648 from Vifon/dynamic_macrosJack Humbert2016-08-17
|\ \ | | | | | | Implement the dynamic macros that are recorded in runtime
| * | Add the dynamic macros documentation to the readmeWojciech Siewierski2016-08-18
| |/
* / tap-dance: Major rework, to make it more reliableGergely Nagy2016-08-17
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-12
| | | | This just fixes the readme link to the ErgoDox EZ directory
* Fix the readme for the removed quick targetFred Sundvik2016-07-31
|
* Update some obsolete referencesGergely Nagy2016-07-30
| | | | | | | | | | | 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-29
| | | | | Also move all keyboard customization documentation under the "Going Beyond the keycodes" heading.