summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update readme.mdJack Humbert2017-05-201-23/+12
|
* Workaround for the macOS caps lock delay (#1308)jerryen2017-05-192-10/+4
| | | | | | | | | | * Add 80ms delay for KC_CAPS when used as a tap key Workaround for the macOS caps lock delay * Revert "Increase TAPPING_TERM for the Clueboard" This reverts commit a74e69e9fa889113ee31fbc8dc7e6848fdb07576.
* m10a lowercaseJack Humbert2017-05-187-2/+2
|
* Merge pull request #1303 from cwesterlund/dvorak_dev_sweErez Zukerman2017-05-182-0/+359
|\ | | | | Created a dvorak keymap for Swedish developers using Visual Studio
| * Created a dvorak keymap for Swedish developers using Visual StudioChristian Westerlund2017-05-162-0/+359
| |
* | ESC/GRAVE/TILDE better handling (#1307)tengg2017-05-171-14/+7
| | | | | | | | | | | | * revise HHKB bootloader_size to 4096 such that sw reset works * cleanup esr/grave/tilde handling function
* | update travis scriptJack Humbert2017-05-172-7/+7
| |
* | Increase TAPPING_TERM for the ClueboardskullY2017-05-161-0/+10
| |
* | Make KC_GRV accessibleskullY2017-05-162-2/+2
|/
* Merge pull request #1298 from barrar/masterJack Humbert2017-05-152-16/+43
|\ | | | | Anti-ghost improvement for older keyboards with empty spots in matrix
| * added comments and made function name clearerJeremiah2017-05-141-13/+18
| |
| * whoopsJeremiah2017-05-141-2/+2
| |
| * faster, less bits :)Jeremiah2017-05-141-9/+2
| |
| * faster and less bits... againJeremiah2017-05-131-6/+5
| |
| * faster and less bitsJeremiah2017-05-131-18/+15
| |
| * should be using matrix_row_tJeremiah2017-05-131-3/+3
| |
| * a bit smallerJeremiah2017-05-131-6/+6
| |
| * a bit smallerJeremiah2017-05-131-18/+35
| |
| * improvementsJeremiah2017-05-132-24/+16
| |
| * anti-ghost improvement for older keyboards with empty spots in matrixJeremiah2017-05-132-7/+31
| |
| * Merge pull request #1 from qmk/masterbarrar2017-05-1378-230/+932
| |\ | | | | | | pull
* | | Updates readme.mdJack Humbert2017-05-131-5/+8
| |/ |/| | | Auto commit by GitBook Editor
* | Merge pull request #1297 from khogeland/satan-colemakJack Humbert2017-05-123-0/+120
|\ \ | | | | | | Colemak layout for GH60 Satan
| * | Colemak layout GH60 SatanKevin Hogeland2017-05-123-0/+120
| | |
* | | Merge pull request #1291 from adzenith/persistentJack Humbert2017-05-1258-198/+198
|\ \ \ | |/ / |/| | Fix spelling of "persistent"
| * | Fix spelling of "persistent"Nikolaus Wittenstein2017-05-1158-198/+198
|/ / | | | | | | Fixes #1201.
* | Merge pull request #1283 from TerryMathews/masterJack Humbert2017-05-1111-0/+544
|\ \ | | | | | | Establish support for Bathroom Epiphanies Tiger Lily controller
| * | Fix compile errorTerryMathews2017-05-071-0/+2
| | |
| * | Establish support for Bathroom Epiphanies Tiger Lily controllerTerryMathews2017-05-0711-0/+542
| | | | | | | | | | | | | | | | | | Replacement controller for Filco Majestouch 2 104 key keyboard. BE advises code will also work with the Black Petal controller - I don't have one to test with. Tests working perfectly on my Filco.
| * | Merge pull request #1 from qmk/masterTerryMathews2017-04-08547-5080/+28776
| |\ \ | | | | | | | | Catchup
* | \ \ Merge pull request #1288 from Nephiel/led-set-on-layer-changeJack Humbert2017-05-111-0/+15
|\ \ \ \ | | | | | | | | | | Call led_set for layer action events to update LEDs on layer changes
| * | | | Call led_set for layer action events to update LEDs on layer changesNephiel2017-05-101-0/+15
| | |_|/ | |/| |
* | | | Merge pull request #1290 from shieldsd/masterJack Humbert2017-05-115-32/+55
|\ \ \ \ | |/ / / |/| | | Add new features to dshields keymap.
| * | | Add new features to dshields keymap.Daniel Shields2017-05-115-32/+55
|/ / / | | | | | | | | | | | | - one shot layers, dynamic macros and tap dance keys - add a basic readme.md and layout image.
* | | Add smt keymap for Clueboard (HHKB-style layout) (#1286)Stephen Tudor2017-05-083-0/+211
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add keymap for smt Clueboard (HHKB layout) * Add readme for smt Clueboard (HHKB) keymap * Flesh out the keymap a bit more to support Colemak & Dvorak * Update README with layout image
* | | Merge pull request #1279 from awpr/masterErez Zukerman2017-05-072-26/+38
|\ \ \ | | | | | | | | Change to per-key eager debouncing for ErgoDox EZ.
| * | | Change to per-key eager debouncing for ErgoDox EZ.Andrew Pritchard2017-04-262-26/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Empirically, waiting for N consecutive identical scans as a debouncing strategy doesn't work very well for the ErgoDox EZ where scans are very slow compared to most keyboards. Instead, debounce the signals by eagerly reporting a change as soon as one scan observes it, but then ignoring further changes from that key for the next N scans. This is implemented by keeping an extra matrix of uint8 countdowns, such that only keys whose countdown is currently zero are eligible to change. When we do observe a change, we bump that key's countdown to DEBOUNCE. During each scan, every nonzero countdown is decremented. With this approach to debouncing, much higher debounce constants are tolerable, because latency does not increase with the constant, and debounce countdowns on one key do not interfere with events on other keys. The only negative effect of increasing the constant is that the minimum duration of a keypress increases. Perhaps I'm just extremely unlucky w.r.t. key switch quality, but I saw occasional bounces even with DEBOUNCE=10; with 15, I've seen none so far. That's around 47ms, which seems like an absolutely insane amount of time for a key to be bouncy, but at least it works.
* | | | Merge pull request #1275 from Vifon/dynamic_macro/trailing_keypressesJack Humbert2017-05-071-5/+52
|\ \ \ \ | | | | | | | | | | dynamic macros: Trim the trailing modifiers; further cleanup
| * | | | dynamic_macro.h: Do not use backlight_toggle if backlight is disabledWojciech Siewierski2017-05-051-0/+2
| | | | | | | | | | | | | | | | | | | | Fixes #1199.
| * | | | dynamic_macro.h: Add debug logsWojciech Siewierski2017-05-041-0/+30
| | | | |
| * | | | dynamic_macro.h: Make the documentation more clearWojciech Siewierski2017-05-041-2/+5
| | | | |
| * | | | dynamic_macro.h: Do not save the keys being held when stopping the recordingWojciech Siewierski2017-05-041-3/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More specifically, we save them and then place the `macro_end` pointer before them so they are essentially ignored and the other macro may freely overwrite them.
* | | | | Merge pull request #1278 from shieldsd/masterJack Humbert2017-05-073-0/+132
|\ \ \ \ \ | | | | | | | | | | | | Add new keymap for dshields.
| * | | | | Add new keymap for dshields.Daniel Shields2017-05-053-0/+132
| | | | | |
* | | | | | Merge pull request #1280 from tobsn/patch-1Jack Humbert2017-05-071-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | lowercase .jpg
| * | | | | | lowercase .jpg I thinkTobias O2017-05-051-1/+1
| |/ / / / / | | | | | | | | | | | | i guess that fixes the image link - currently its broken
* | | | | | Merge pull request #1282 from coderkun/coderkun_neo2Jack Humbert2017-05-072-38/+137
|\ \ \ \ \ \ | | | | | | | | | | | | | | Merge changes for coderkun’s Neo2 layout
| * | | | | | Update README for keymap “coderkun_neo2”coderkun2017-05-061-9/+2
| | | | | | |
| * | | | | | Merge tag '0.5.43' into coderkun_neo2coderkun2017-05-06266-2009/+8608
| |\ \ \ \ \ \
| * | | | | | | Fix F-keys on right hand to start on first keycoderkun2017-05-061-1/+1
| | | | | | | |