| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-10-03 | Fix Tapping: release key immediately but modifier #65 | ||
| - See https://github.com/tmk/tmk_keyboard/issues/60 - **Except for modifiers** a key pressed before the tapping starts should be released immediately - 'Mod-Tap key'(like shift-;) didn't work from this fix: 4d0b3aa Fix Tapping: release of a key pressed before tap This key sequence should register ':', not ';'. With the fix Shift is released before settlement of tapping, this registers ';'. Shift ~~___~~~~~~~ ;(Tap) ~~~____~~~~ | |||
| 2013-09-21 | Fix USB initilaize on LUFA | ||
| - Add print messages of USB intialize procesure. - call out sei() in earlier stage. LUFA API doc of USB_Init() says: interrupts must be enabled within 500ms ... to ensure that the host does not time out whilst enumerating the device - remove matrix_init() from suspend_wakeup_init(). It is not needed in fact and if matrix_init() takes long time to initialize it prevents host emnumerating the device. | |||
| 2013-09-21 | Fix to bootmagic key configurable | ||
| 2013-09-19 | Merge branch 'tapping_fix60' | ||
| 2013-09-19 | Fix version info command | ||
| 2013-09-18 | Fix bootloader jump use word address | ||
| - Call of function pointer is compiled into 'icall' instruction. It should use word address but it has used byte address :( It seems jump has worked luckily by chance until now. why it worked? | |||
| 2013-09-18 | Fix Tapping: release of a key pressed before tap | ||
| - immediately process release event of a key pressed before tapping | |||
| 2013-09-11 | Fix action macros | ||
| 2013-09-11 | Add version string | ||
| 2013-07-29 | Fix tapping count over flow(issue #52) | ||
| 2013-07-28 | Add NKRO support for LUFA | ||
| 2013-07-24 | Add bootmagic salt key to avoid accidental configuration | ||
| 2013-07-23 | Add mechanical locking switch support for NumLock and ScrollLock | ||
| 2013-07-23 | Add support for macro media/system keys | ||
| 2013-07-21 | Cancel tapping when interrupted by other key | ||
| 2013-07-20 | Change name ACT_LAYER_TAP1 to ACT_LAYER_TAP_EXT | ||
| 2013-06-23 | Add BACKLIGHT_ENABLE conditional | ||
| 2013-06-22 | Fix typo | ||
| 2013-06-22 | Add support for backlight | ||
| 2013-06-22 | Add default layer config to bootmagic | ||
| 2013-05-27 | Fixes to sleep LED. | ||
| Add help text. Add missing SLEEP_LED_ENABLE checks. | |||
| 2013-05-21 | Fix deprecated 'prog_*' typedef - Issue #34 | ||
| - Remove prog_char from xpritnf - Remove prog_macro_t from acton_macro avr-libc-1.8 removed 'prog_*' typedef because the usage of the __progmem__ attribute on a type is not supported in GCC. http://www.nongnu.org/avr-libc/changes-1.8.html | |||
| 2013-05-15 | Fix command.c and README | ||
| 2013-05-14 | Use dprint and dprintf for debug | ||
| 2013-05-14 | Add xprintf(xitoa) from elm-chan.org | ||
| 2013-04-13 | Remove common/controller_teensy.h | ||
| 2013-04-12 | Add media eject key support from tufty | ||
| 2013-04-07 | Fix bootmagic and eeconfig for virtual DIP SW | ||
| 2013-04-05 | Fix keymap for new actions | ||
| 2013-04-05 | Fix keymap of hhkb for new actions | ||
| 2013-04-05 | Fix keymap of gh60 | ||
| 2013-04-04 | Fix ACT_MODS action and switch_default_layer command | ||
| 2013-04-04 | Add file action_code.h | ||
| 2013-04-03 | Fix ACTION_LAYER macros | ||
| 2013-04-02 | Rename file layer_switch to action_layer | ||
| 2013-04-02 | Refine ACT_LAYER and ACT_LAYER_TAP | ||
| - Remove ACT_LAYER_BITOP | |||
| 2013-03-31 | Remove ACT_KEYMAP and ACT_OVERLAY | ||
| - Remove ACT_OVERLAY - Rename ACT_KEYMAP to ACT_LAYER - Add ACT_LAYER_BITOP | |||
| 2013-03-29 | Add action_tapping.[ch] for refactoring | ||
| 2013-03-27 | Add sleep LED test command | ||
| 2013-03-27 | Add supsend and wakeup to pjrc stack | ||
| 2013-03-25 | Add common/suspend.c | ||
| 2013-03-21 | Clean action.c | ||
| 2013-03-21 | Add NO_ACTION_ONESHOT config option | ||
| 2013-03-20 | Add NO_ACTION_KEYMAP config option | ||
| 2013-03-20 | Add NO_ACTION_FUNCTION config option | ||
| 2013-03-20 | Add NO_ACTION_TAPPING and NO_ACTION_MACRO config options | ||
| 2013-03-20 | Add NO_ACTION_OVERLAY config option | ||
| 2013-03-19 | Add COMMAND_ENABLE build option | ||
| 2013-03-19 | Add NO_PRINT and NO_DEBUG config options. | ||
| - NO_PRINT: disable print.h API(also disable debug.h) - NO_DEBUG: disable debug.h API | |||
| 2013-03-16 | Change sleep led step table to get smooth | ||