summaryrefslogtreecommitdiffstats
path: root/tmk_core
AgeCommit message (Collapse)AuthorFilesLines
2016-04-17Adding Musical NotesIBNobody7-4/+66
2016-04-17MAGIC functionality, AG swap in default layoutJack Humbert5-4/+52
2016-04-16audio on by defaultJack Humbert1-1/+1
2016-04-16audio enable stored in eepromJack Humbert2-0/+14
2016-04-15Prepping for merge with new_defaultsIBNobody2-15/+16
2016-04-15the spacessssJack Humbert2-15/+15
2016-04-15bootmagic somehow not getting enabled, so adding eeconfig to backlight src ↵Jack Humbert1-0/+1
include cond
2016-04-15fixed mergingIBNobody2-15/+15
2016-04-15changing up the makefile a bitJack Humbert2-15/+15
2016-04-15CheckinIBNobody1-0/+1
2016-04-14Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-4/+4
2016-04-14Compiler Warnings / Atomic TLCIBNobody2-2/+3
Corrected compiler warnings for a number of issues. Gave Atomic some TLC.
2016-04-13Optimize source_layers_cache for the cache memoryWojciech Siewierski1-4/+4
Swapping the array indices should increase the locality of the memory access.
2016-04-06Merge pull request #182 from Vifon/modifier-release-fixErez Zukerman4-7/+103
Fix the layer-dependent modifiers handling
2016-04-06Fix issue #221: LGUI(KC_LSFT) does not workDidier Loiseau1-2/+12
on mod keys, register LGUI, LSFT etc. as normal mods instead of weak mods: - they won't be cleared when pressing another key (#188) - they won't be cleared by layer switching - LSFT(KC_LGUI) will now have the same behavior as LGUI(KC_LSFT)
2016-04-05Refactor the source layer cache encodingWojciech Siewierski3-41/+71
2016-04-03Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware into ↵Wojciech Siewierski11-113/+414
modifier-release-fix
2016-04-02Cleanup after mergeWojciech Siewierski1-7/+13
- remove a superfluous parenthesis - wrap lines longer than 80 characters - add const specifiers where appropriate - remove unnecessary casts
2016-04-02Update action.celtang1-1/+1
2016-04-02Update action.celtang1-1/+1
2016-04-02Update action.celtang1-1/+1
2016-04-02Update action.celtang1-1/+1
2016-04-02Update action.celtang1-1/+1
2016-04-02Update action.celtang1-1/+2
2016-04-02Update action.cEric-L-T1-1/+1
2016-04-02Update action.cEric-L-T1-8/+8
2016-04-02Update action.cEric-L-T1-6/+6
2016-04-01Update action.cEric-L-T1-1/+1
2016-04-01Update action.hEric-L-T1-1/+0
2016-04-01Update action.cEric-L-T1-4/+15
2016-03-29Merge pull request #219 from IBNobody/masterJack Humbert2-2/+5
Master
2016-03-29Minor Tweaks and DocumentationIBNobody1-1/+1
Fixed compiler warning by including bootloader.h in keymap_common.c. Changed FORCE_NKRO to only be applied if NKRO_ENABLE is defined. Added extra documentation to the template config.h
2016-03-28Added command to turn LED indicators off while sleepingIBNobody1-1/+4
2016-03-28Merge pull request #214 from cdlm/action-hookJack Humbert2-0/+8
Add per-event user hook function
2016-03-28Rename function to be keyboard-specificDamien Pollet2-4/+4
2016-03-28Add per-event user hook function to QMKDamien Pollet2-0/+8
2016-03-28Magic Key Overrides / Keyboard Lock / Forced NKROIBNobody3-107/+373
Added Magic Key Overrides / Magic Key Cleanup / Added Keyboard Lock option to template / Added forced NKRO option to template (disabled by default)
2016-03-27Cut the memory consumption of PREVENT_STUCK_MODIFIERS in halfWojciech Siewierski4-11/+16
2016-03-27Merge pull request #188 from DidierLoiseau/issue-156Erez Zukerman4-2/+23
Fix #156: clear weak mods on every key press
2016-03-23Fixed LED Function CallsIBNobody1-2/+3
Fixed LED indicator function calls to match how the matrix init function calls are formatted.
2016-03-23Merge remote-tracking branch 'refs/remotes/jackhumbert/master'IBNobody1-2/+2
# Conflicts: # quantum/template/template.c # quantum/template/template.h
2016-03-16Adding LED function pointersIBNobody1-0/+2
2016-03-15Expose the pressed_actions_cache global variableWojciech Siewierski2-4/+4
2016-03-15Always provide an implementation of process_action_nocacheWojciech Siewierski2-1/+6
2016-03-13process_action may be called either with key cache or without itWojciech Siewierski2-0/+19
If one wants to temporarily disable the key cache (for example because it interferes with a macro), `disable_action_cache` must be set to `true`. `process_action_nocache` is a simple wrapper doing just that for a single call.
2016-03-10Addressed void* return warning in all keymapsyoyoerx1-2/+2
2016-03-08Fix #156: clear weak mods on every key pressDidier Loiseau4-2/+23
- new macro_mods bit field for mods applied by macros - weak_mods now only used for ACT_{L,R}MODS (i.e. LSFT, RSFT, LCTL etc.) - clear the _weak_ mods on every key *pressed* such that LSFT etc. can no more interfere with the next key
2016-03-08Document the issue of stuck modifiersWojciech Siewierski1-1/+1
2016-03-05Fix the layer-dependent modifiers handlingWojciech Siewierski1-1/+21
Closes #181.
2016-02-08Added note about using avr_setup.shdragon7881-1/+1
On most Linux distributions the avr_setup.sh script can be sourced ```. avr_setup.sh``` or under Bash ```source avr_setup.sh```. This will try and detect the appropriate package manager and install the required packages.