Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-15 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-15 | Migrate more F4x1 board files (#18054) | Joel Challis | |
2022-08-15 | Fix DV_SCLN and DV_COLN in keymap_spanish_dvorak.h (#18043) | precondition | |
2022-08-15 | Fix GD32VF103 WS2812 PWM driver (#18067) | Stefan Kerkmann | |
...by adding the missing STM32 DMA defines. | |||
2022-08-15 | [Bug] Add key event check to `is_tap_record` and remove `is_tap_key` (#18063) | Stefan Kerkmann | |
2022-08-15 | Fixup gmmk/pro/rev2 USB Data (#18056) | jack | |
2022-08-15 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-15 | ADB to USB converter: split into rev1 and rev2 (#18052) | Ryan | |
2022-08-15 | Merge remote-tracking branch 'upstream/master' into develop | fauxpark | |
2022-08-14 | Remove duplicate COMBINING HORN in keymap_us_extended.h (#18045) | precondition | |
2022-08-14 | Fix missing development_board schema entry (#18050) | Joel Challis | |
2022-08-15 | Move keyboard USB IDs and strings to data driven, pass 2: D-E (#17956) | Ryan | |
2022-08-15 | Move keyboard USB IDs and strings to data driven, pass 2: F-I (#17958) | Ryan | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-14 | Allow disabling RGB_MATRIX_ANIMATIONS system76 keyboards (#17478) | PeterFalken | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-15 | Migrate more F4x1 board files (#18046) | Joel Challis | |
2022-08-14 | Partially revert some WB32 specific changes (#18038) | Joel Challis | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-14 | Feat/port ft mars 65 (#17994) | Alberto | |
* by wonderbeel | |||
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-14 | Improve Drop Alt compatibility with VIA (#18041) | Cyn | |
by slycedix | |||
2022-08-14 | Fix Caps Word to treat mod-taps more consistently. (#17463) | Pascal Getreuer | |
* Fix Caps Word to treat mod-taps more consistently. Previously, holding any mod-tap key while Caps Word is active stops Caps Word, and this happens regardless of `caps_word_press_user()`. Yet for regular mod keys, AltGr (KC_RALT) is ignored, Shift keys are passed to `caps_word_press_user()` to determine whether to continue, and similarly, a key `RSFT(KC_RALT)` representing Right Shift + Alt is passed to `caps_word_press_user()` to determine whether to continue. This commit makes held mod-tap keys consistent with regular mod keys: * Holding a `RALT_T` mod-tap is ignored. * When holding a shift mod-tap key, `KC_LSFT` or `KC_RSFT` is passed to `caps_word_press_user()` to determine whether to continue. * When holding a Right Shift + Alt (`RSA_T`) mod-tap, `RSFT(KC_RALT)` is passed to `caps_word_press_user()`. Particularly, with this fix a user may choose to continue Caps Word when a shift mod-tap key is held by adding `KC_LSFT` and `KC_RSFT` cases in `caps_word_press_user()`. For instance as ``` bool caps_word_press_user(uint16_t keycode) { switch (keycode) { // Keycodes that continue Caps Word, with shift applied. case KC_A ... KC_Z: case KC_MINS: add_weak_mods(MOD_BIT(KC_LSFT)); // Apply shift to the next key. return true; // Keycodes that continue Caps Word, without shifting. case KC_1 ... KC_0: case KC_BSPC: case KC_DEL: case KC_UNDS: case KC_LSFT: // <<< Added here. case KC_RSFT: return true; default: return false; // Deactivate Caps Word. } } ``` * Fix Caps Word to treat mod-taps more consistently. Previously, holding any mod-tap key while Caps Word is active stops Caps Word, and this happens regardless of `caps_word_press_user()`. Yet for regular mod keys, AltGr (KC_RALT) is ignored, Shift keys are passed to `caps_word_press_user()` to determine whether to continue, and similarly, a key `RSFT(KC_RALT)` representing Right Shift + Alt is passed to `caps_word_press_user()` to determine whether to continue. This commit makes held mod-tap keys consistent with regular mod keys: * Holding a `RALT_T` mod-tap is ignored. * When holding a shift mod-tap key, `KC_LSFT` or `KC_RSFT` is passed to `caps_word_press_user()` to determine whether to continue. * When holding a Right Shift + Alt (`RSA_T`) mod-tap, `RSFT(KC_RALT)` is passed to `caps_word_press_user()`. Particularly, with this fix a user may choose to continue Caps Word when a shift mod-tap key is held by adding `KC_LSFT` and `KC_RSFT` cases in `caps_word_press_user()`. For instance as ``` bool caps_word_press_user(uint16_t keycode) { switch (keycode) { // Keycodes that continue Caps Word, with shift applied. case KC_A ... KC_Z: case KC_MINS: add_weak_mods(MOD_BIT(KC_LSFT)); // Apply shift to the next key. return true; // Keycodes that continue Caps Word, without shifting. case KC_1 ... KC_0: case KC_BSPC: case KC_DEL: case KC_UNDS: case KC_LSFT: // <<< Added here. case KC_RSFT: return true; default: return false; // Deactivate Caps Word. } } ``` * Update quantum/process_keycode/process_caps_word.c Co-authored-by: Joel Challis <git@zvecr.com> | |||
2022-08-14 | Added emacs as an "operating system" for input mode. (#16949) | Chewxy | |
2022-08-14 | Fix Emulated EEPROM issue with F466 (#18039) | Drashna Jaelre | |
2022-08-14 | Replace ; by : in the shifted symbols ASCII art of keymap_norman (#18029) | precondition | |
Thanks! | |||
2022-08-14 | [Keyboard] Fix compilation issues for Boardsource Microdox (#18037) | Drashna Jaelre | |
2022-08-14 | [Controller] Added board config for custom controller STeMCell (#16287) | Mega Mind | |
Co-authored-by: Mariappan Ramasamy <947300+Mariappan@users.noreply.github.com> Co-authored-by: Mariappan Ramasamy <maari@basis-ai.com> Co-authored-by: Sadek Baroudi <sadekbaroudi@gmail.com> | |||
2022-08-14 | Align TO() max layers with other keycodes (#17989) | Joel Challis | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | Drashna Jael're | |
2022-08-14 | [Keyboard] Add Valor FRL TKL rev2.0 and 2.1 (#17992) | Xelus22 | |
* add valor frl tkl rev2 by xelus22 | |||
2022-08-14 | Added support for gmmk pro rev2 keyboard. (#17655) | Joy Lee | |
Co-authored-by: Joy <chang.li@westberrytech.com> | |||
2022-08-14 | Move keyboard USB IDs and strings to data driven, pass 2: B-C (#17945) | Ryan | |
2022-08-13 | Fix buffer size for WS2812 PWM driver (#17046) | yiancar | |
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: yiancar <yiancar@gmail.com> | |||
2022-08-13 | Added ws2812_pwm support for WB32 MCU. (#17142) | Joy Lee | |
Co-authored-by: Joy <chang.li@westberrytech.com> | |||
2022-08-13 | Added ws2812_spi support for WB32 MCU (#17143) | Joy Lee | |
Co-authored-by: Joy <chang.li@westberrytech.com> | |||
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | [Keyboard] add bajjak keyboard (#12377) | Gary Kong | |
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com> Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com> Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com> | |||
2022-08-14 | Add Gentleman 65 SE Solderd PCB support (#16992) | JJ48 | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | Add texts for Discord Events to be created post-merge. (#17944) | Nick Brassel | |
2022-08-13 | Use ANSI ASCII art and fix comments for LT_COLN and LT_UNDS in ↵ | precondition | |
keymap_lithuanian_qwerty.h (#18028) | |||
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | Move keyboard USB IDs and strings to data driven, pass 2: 0-9, A (#17941) | Ryan | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | [Keyboard] Added different wiring of dactyl (#17997) | Marko Skakun | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | [Keyboard] jacky_studio/piggy60 (#18012) | Less/Rikki | |
2022-08-14 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-13 | [Docs] Suggest imgur images are edited to set size (#18031) | Tom Barnes | |