Jack Humbert
35edb382ee
[skip build] testing travis script
8 years ago
Jack Humbert
5c8cdfd2b5
[skip build] testing travis script
8 years ago
Jack Humbert
246d2583ff
Merge pull request #1030 from SjB/refactor_register_code16
...
speeding up (un)register_code16
8 years ago
Jack Humbert
ee386a29d1
[skip build] testing travis script
8 years ago
Jack Humbert
cf8dac3538
[skip build] testing travis script
8 years ago
Jack Humbert
98adda34c9
[skip build] testing travis script
8 years ago
Jack Humbert
470c8436c2
[skip build] testing travis script
8 years ago
Jack Humbert
3a76f24cbd
[skip build] testing travis script
8 years ago
Jack Humbert
835cacb031
fixes qmk.fm linking, tests out auto version incrementing
8 years ago
Erez Zukerman
f0633f2540
Merge pull request #1063 from osamuaoki/master
...
Typo fixes
8 years ago
Erez Zukerman
404f79ef14
Merge pull request #1058 from edasque/master
...
Reverted Dockerfile to put the CMD back
8 years ago
Osamu Aoki
f787f4291a
Typo fixes
8 years ago
Erez Zukerman
45e5b32781
Merge pull request #1049 from SjB/tap_dance_save_oneshot_mods
...
race condition between oneshot_mods and tap_dance
8 years ago
Erez Zukerman
a5d10e8c2e
Merge pull request #1054 from deadcyclo/master
...
Adds support for ergodox shine and unicode and emoji support to the deadcyclo layout
8 years ago
Brendan Johan Lee
02a95ee08c
Merge remote-tracking branch 'upstream/master'
8 years ago
Erik Dasque
407f949e4b
Reverted Dockerfile to put the CMD back
8 years ago
Erez Zukerman
748316fc43
Merge pull request #1039 from zabereer/albert_ergodox_keymap
...
albert ergodox keymap
8 years ago
Erez Zukerman
0081101c30
Merge pull request #1055 from matzebond/master
...
update my neo2 keymap
8 years ago
Matthias Schmitt
4c3630dc17
update my neo2 keymap
8 years ago
Brendan Johan Lee
f70758622b
[deadcyclo layout] Refactoring. Use custom functions and macros
8 years ago
Brendan Johan Lee
f400ac1d7d
[deadcyclo layout] fixed failing tests
8 years ago
Brendan Johan Lee
d43f4a5f57
Merge remote-tracking branch 'upstream/master'
8 years ago
SjB
5a860b71a1
race condition between oneshot_mods and tap_dance
...
since the keycode for a tap dance process gets process only after the
TAPPING_TERM timeout, you really only have ONESHOT_TIMEOUT -
TAPPING_TERM time to tap or double tap on the key. This fix save the
oneshot_mods into the action.state structure and applies the mods with
the keycode when it's registered. It also unregisters the mod when the
the tap dance process gets reset.
8 years ago
SjB
f644b9a07a
registering a weak_mods when using register_code16
...
Scenario:
Locking the KC_LSHIFT, and then using a tap dance key that registers a
S(KC_9) will unregister the KC_LSHIFT.
The tap dance or any keycode that is registered should not have the
side effect of cancelling a locked moditifier. We should be using a
similar logic as the TMK codes in tmk_core/comman/action.c:158.
8 years ago
skullydazed
ec05f65421
Merge pull request #1043 from potz/patch-1
...
Clarify license on abnt2 keymap (#1038 )
8 years ago
Potiguar Faga
2fe18a50ec
Clarify license on abnt2 keymap ( #1038 )
8 years ago
Jack Humbert
a28f689387
Merge pull request #869 from dylanjgscott/master
...
Use `type cmp` to test for cmp in Makefile
8 years ago
Brendan Johan Lee
d7aa4724fb
Merge remote-tracking branch 'upstream/master'
8 years ago
Brendan Johan Lee
13fa63b192
[deadcyclo layout] Added more unicode keys and ibus unicode compose trigger keys
8 years ago
Jack Humbert
712f3de16f
Merge pull request #1035 from qmk/qmk_org_changes
...
Updated urls due to transfer to qmk org
8 years ago
Albert Pretorius
fffe76a7b7
albert ergodox keymap
8 years ago
Brendan Johan Lee
8a645aa9ad
Merge remote-tracking branch 'upstream/master'
8 years ago
Jack Humbert
c9ca368008
replace jackhumbert with qmk
8 years ago
Jack Humbert
aac7c0aa4d
Merge pull request #1029 from SjB/qmk_infinity60
...
fix: infinity60 keyboard was not using quantum features.
8 years ago
Jack Humbert
0212a30aa6
Merge pull request #1033 from smt/smt/preonic
...
Add smt's keymap for Preonic
8 years ago
Jack Humbert
1b20243092
Add gitter image, start update to qmk org
8 years ago
Stephen Tudor
6546dddddb
Remove COLEMAK from preonic_keycodes enum
8 years ago
Jack Humbert
7e3962f36a
Merge branch 'master' of github.com:jackhumbert/qmk_firmware
8 years ago
Jack Humbert
938422ce99
layer defines to enum
8 years ago
Brendan Johan Lee
8af48194f2
[deadcyclo layout] Added lotsof new emojis and some new unicode keys
8 years ago
Stephen Tudor
51fe4f0d34
Update readme for smt Preonic keymap
8 years ago
Stephen Tudor
b3cf96ec2e
Add smt keymap for Preonic
8 years ago
Brendan Johan Lee
d0db044164
Merge remote-tracking branch 'upstream/master'
8 years ago
Brendan Johan Lee
37ed3d13a4
[deadcyclo layout] Added unicode layer
8 years ago
Brendan Johan Lee
3c32e38036
[deadcyclo layout] Added support for ergodox ez shine
8 years ago
Jack Humbert
71137deba2
Merge pull request #1014 from SjB/lcd_mods_status
...
added mods status bit to visualizer.
8 years ago
SjB
9111cc00f5
updated all the other keymaps to support the new changes.
...
qmk firmware requires the matrix_init_user and matrix_scan_user
function to be implementated. Added these function to all the existing
keymaps.
8 years ago
SjB
2b3859937b
speeding up (un)register_code16
...
In register_code16 and unregister_code16 we call register_code and
unregister_code twice, once for the mods and once for the keycode.
The (un)register_code have many check to see that keycode we have sent
however because we know that we are sending it a mods key, why not
just skip all of it and call (un)register_mods instead. This will skip
alot of checks and should speedup the loop a little.
8 years ago
SjB
a777495683
fix: infinity60 keyboard was not using quantum features.
...
the quantum matrix codes where not being initialized or/and called
so no feature of the quantum firmware could be used. These codes have
been added and now we can enjoy the quantum firmware goodness.
8 years ago
Dylan Scott
245f77b863
Compare Makefile with itself instead of using `--help`
8 years ago