summaryrefslogtreecommitdiffstats
path: root/readme.md
AgeCommit message (Collapse)AuthorFilesLines
2016-12-06Update readme.mdJack Humbert1-1560/+2
2016-12-03cleans-up formatting of readmeJack Humbert1-1/+4
2016-12-03Updated ps2 mouse documentation in readmeOfer Plesser1-1/+111
2016-12-02Merge pull request #881 from NoahAndrews/patch-1Jack Humbert1-9/+9
Recommend WSL on Windows 10 [Discussion]
2016-12-01Improve docs on memory usagecbbrowne1-0/+7
2016-12-01More notes on .hex size protectioncbbrowne1-3/+16
2016-11-29Merge branch 'master' of github.com:jackhumbert/qmk_firmware into wu5y7Jack Humbert1-1/+156
2016-11-26Update Unicode documentationPriyadi Iman Nurcahyo1-1/+27
2016-11-26A few addition to PS2 documentation.Priyadi Iman Nurcahyo1-35/+125
2016-11-25Added documentation for PS/2 mouse in readmeofples1-0/+39
2016-11-22merging lets_splitJack Humbert1-0/+1
2016-11-17rgb light through midiJack Humbert1-2/+2
2016-11-14Recommend WSL on Windows 10Noah Andrews1-9/+9
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.
2016-11-09Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-0/+23
2016-11-06Add documentation for the variable tracingFred Sundvik1-0/+23
2016-11-01Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-1/+1
2016-10-29Add link to article about Unicode Hex Input in readmeSergey Lebedev1-1/+1
For me it wasn't clear what is `Unicode Hex Input`, that article clarifies it (at least for me).
2016-10-28Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-2/+8
2016-10-24Fixed some large keyboard bugsIBNobody1-0/+1
Fixed some bugs relating to keyboards with more than 16 columns. Also added the ability to mask off keyboard matrix bits.
2016-10-23UNICODE_MAP: remove 5 char limit; ignore leading zeroes; handle OS limitationsPriyadi Iman Nurcahyo1-2/+8
2016-10-16Merge pull request #815 from priyadi/unicode_mapJack Humbert1-0/+6
Allow unicode up to 0xFFFFF using separate mapping table
2016-10-13[Jack & Erez] Simplifies and documents TOJack & Erez1-0/+2
2016-10-10Merge pull request #808 from npoirey/masterJack Humbert1-0/+3
Altgr quick combination and updated readme
2016-10-09Unicode map framework. Allow unicode up to 0xFFFFF using separatePriyadi Iman Nurcahyo1-0/+6
mapping table
2016-10-09Reduce the default dynamic macro bufferWojciech Siewierski1-2/+2
There have been reports of it leaving not enough free memory preventing the keyboard from working properly.
2016-10-07Updated Readme to help windows users use docker for buildnpoirey1-0/+3
2016-09-21formattingPavlos Vinieratos1-1/+1
2016-09-16Added notes on vagrant file fixes, UPRINTIBNobody1-6/+20
2016-09-08fixed typo in Linux install instructionsPeter Ondrejka1-1/+1
2016-09-04Moved breathing backlighting section in readme.mdIBNobody1-60/+60
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