1
0

Remove deprecated RGB_ and Mouse keycodes (#25444)

* Remove deprecated `RGB_` and Mouse keycodes

* Update old mouse keycodes, 0-9/A-M

* Update old mouse keycodes, N-Z & layouts

* Missed some stuff
This commit is contained in:
Ryan
2025-07-12 03:05:41 +10:00
committed by GitHub
parent 71b88b333d
commit 6b38dc17cd
325 changed files with 911 additions and 964 deletions

View File

@@ -22,7 +22,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[_L0] = { ENCODER_CCW_CW(KC_VOLD, KC_VOLU) },
[_L1] = { ENCODER_CCW_CW(KC_MS_WH_DOWN, KC_MS_WH_UP) }
[_L1] = { ENCODER_CCW_CW(MS_WHLD, MS_WHLU) }
};
#endif

View File

@@ -13,8 +13,8 @@
],
[
{
"ccw": "KC_MS_WH_DOWN",
"cw": "KC_MS_WH_UP"
"ccw": "MS_WHLD",
"cw": "MS_WHLU"
}
]
],

View File

@@ -15,7 +15,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
[0] = {
ENCODER_CCW_CW(KC_VOLD, KC_VOLU),
ENCODER_CCW_CW(KC_WH_U, KC_WH_D)
ENCODER_CCW_CW(MS_WHLU, MS_WHLD)
}
};