Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-09-06 | feat/voyager (#374) | Florian Didron | |
* feat: tentative fix for keyboard crash during esd testing * feat: adds support for the GD32 voyager * feat: adds voyager's dfu suffix * fix: instability issues over i2c * fix: more robust right side scan * fix: tentative delay after init * Revert "fix: tentative delay after init" This reverts commit b0a6461cf1cef60574eac1647fd14e1fe63a020c. * fix: scan left side in between right scan process * fix: resets matrix + layer state when reconnecting the right side * chore: comments and code cleanup * fix: restore previous control flow * fix: decouple led driver reinit from io expander reinit * feat: reinit led drivers independtly * fix: prevents slamming the led driver over i2c * Revert "fix: prevents slamming the led driver over i2c" This reverts commit 48b8c809ea7a99ad2c3e941b83313787985c95e0. * Revert "feat: reinit led drivers independtly" This reverts commit 6405e6b3673478af1d98244c4df6ab73b95b18e1. * fix: reboot on io expander * fix: wait time after reading the io expander * chore: code cleanup and some refactors. * feat: adds led brightness and status led control over hid * fix: remove stray printf * fix: compilation error on ergodox * fix: gd32 eeprom fix * fix: caps lock crash * fix: soft reset to bootloader key. * chore: move the app address define where it should be * fix: cleanup + debounce default * feat: tentatively set gd32 clock to 98Mhz * feat: realign to latest chibios contrib * chore: points to ZSA's chibios contrib fork --------- Co-authored-by: Florian Didron <0x6664@hey.com> | |||
2023-05-25 | Fix French Canadian mapping for / | Florian Didron | |
2023-03-15 | feat: allows to take over the rgb leds and light them individually from raw hid | Florian Didron | |
2023-01-03 | fix: explicitely import string.h in the oryx protocol files (#365) | Florian Didron | |
2022-12-22 | fix: restore the no autoshift tab flag (#364) | Florian Didron | |
2022-12-19 | hf: stenography keymapping | Florian Didron | |
2022-12-17 | hotfix: restore locale key codes | Florian Didron | |
2022-11-24 | Remove Web USB (depreciated) (#361) | Drashna Jaelre | |
2022-11-08 | Merge tag '0.18.16' into firmware22 | Drashna Jael're | |
2022-10-05 | docs: some typos (#18582) | George Rodrigues | |
probably hacktoberism | |||
2022-09-19 | Fix int8_t overflow in RGB heatmap effect (#18410) | Marius Renner | |
2022-09-06 | Remove use of legacy keycode (#18281) | Joel Challis | |
2022-08-27 | Clean-up of `#define _ADJUST 16` instances (#18182) | James Young | |
* enum layer_names: 40percentclub/nori default keymap * enum layer_names: ergotravel default keymap * enum layer_names: handwired/atreus50 default keymap * enum layer_names: handwired/ortho5x13 default keymap * enum layer_names: keebio/levinson default keymap * enum layer_names: keebio/nyquist default keymap * enum layer_names: keebio/rorschach default keymap * enum layer_names: keebio/viterbi default keymap * enum layer_names: keebio/wavelet default keymap * enum layer_names: lets_split default keymap * enum layer_names: maple_computing/launchpad reference keymaps Update `default` and `default_rgb` keymaps. * enum layer_names: maple_computing/minidox default keymap * enum layer_names: miniaxe reference keymaps Update `default` and `underglow` keymaps. * enum layer_names: omkbd/ergodash/mini default keymap * enum layer_names: omkbd/ergodash/rev1 default keymap * enum layer_names: orthodox default keymap * enum layer_names: unikeyboard/divergetm2 default keymap * enum layer_names: woodkeys/scarletbandana default keymap * add _Static_assert to keymap_introspection.c | |||
2022-08-27 | Add missing SS_LOPT and SS_ROPT defines (#18175) | Joel Challis | |
2022-08-22 | More aggressively send shift mod for autoshift and caps word (#357) | Drashna Jaelre | |
2022-08-15 | Fix DV_SCLN and DV_COLN in keymap_spanish_dvorak.h (#18043) | precondition | |
2022-08-15 | [Bug] Add key event check to `is_tap_record` and remove `is_tap_key` (#18063) | Stefan Kerkmann | |
2022-08-14 | Remove duplicate COMBINING HORN in keymap_us_extended.h (#18045) | precondition | |
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 | Replace ; by : in the shifted symbols ASCII art of keymap_norman (#18029) | precondition | |
Thanks! | |||
2022-08-14 | Align TO() max layers with other keycodes (#17989) | Joel Challis | |
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-13 | Fix LV_CCAR and LV_NCED (#18025) | precondition | |
2022-08-13 | Fix Caps Word capitalization when used with Combos + Auto Shift. (#17549) | Pascal Getreuer | |
2022-08-13 | Add led matrix support for CKLED2001 (#17643) | lokher | |
2022-08-12 | KR_DQUO S(KR_COLN) → KR_DQUO S(KR_QUOT) (#18011) | precondition | |
2022-08-12 | define CZ_PERC S(CZ_PLUS) → define CZ_PERC S(CZ_EQL) (#18008) | precondition | |
2022-08-12 | Remove invisible variation selector-15 from keymap_japanese.h (#18007) | precondition | |
2022-08-12 | Use LT_ZCAR in place of LT_PLUS for modded kc definitions (#18000) | precondition | |
2022-08-12 | Fix Bépo's BP_NNBS (narrow non-breaking space) (#17999) | precondition | |
Co-authored-by: Ryan <fauxpark@gmail.com> | |||
2022-08-12 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-12 | Remove legacy keycode use from command (#18002) | Joel Challis | |
2022-08-11 | Refactor Pixel Fractal effect (#17602) | Albert Y | |
* Refactor effect with smaller array * Add RGB_MATRIX_USE_LIMITS call * Remove spaces Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Drashna Jaelre <drashna@live.com> | |||
2022-08-07 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-08-07 | fix comment space code in quantum/matrix_common.c (#17942) | Takeshi ISHII | |
2022-08-07 | Always run pointing device init (#17936) | Drashna Jaelre | |
2022-08-06 | [Core] Process all changed keys in one scan loop, deprecate ↵ | Stefan Kerkmann | |
`QMK_KEYS_PER_SCAN` (#15292) | |||
2022-08-06 | [Core] guard RPC invocation by checking RPC info against crc checksum (#17840) | Stefan Kerkmann | |
2022-08-01 | fix: restore the ability to disable tab from autoshifted keys (#355) | Florian Didron | |
2022-07-31 | Add ST7735 driver to Quantum Painter (#17848) | David Hoelscher | |
2022-07-29 | Implement relative mode for Cirque trackpad (#17760) | Drzony | |
2022-07-30 | Merge remote-tracking branch 'origin/master' into develop | QMK Bot | |
2022-07-30 | Fix check when compiling HID Joystick with digital driver (#17844) | Drashna Jaelre | |
2022-07-28 | Rename postprocess_steno_user → post_process_steno_user (#17823) | precondition | |
2022-07-26 | Constrain Cirque Pinnacle coordinates (#17803) | Daniel Kao | |
Static x & y should be the same type as touchData.xValue & touchData.yValue: uint16_t. Their delta could be larger than int8_t and should be constrained to mouse_xy_report_t. | |||
2022-07-26 | Avoid OOB in dynamic_keymap_reset (#17695) | Joel Challis | |
2022-07-25 | Cirque circular scroll: Support POINTING_DEVICE_COMBINED (#17654) | Daniel Kao | |
2022-07-25 | Fix QK_MAKE's reboot check (#17795) | Drashna Jaelre | |
2022-07-23 | implement `tap_code16_delay` (#17748) | JayceFayne | |