-
-
Notifications
You must be signed in to change notification settings - Fork 40.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2021 February 27 Breaking Changes Update (#12040)
- Loading branch information
Showing
1,833 changed files
with
28,424 additions
and
181,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
push: | ||
branches: | ||
- master | ||
- develop | ||
|
||
jobs: | ||
format: | ||
|
@@ -14,6 +15,8 @@ jobs: | |
if: github.repository == 'qmk/qmk_firmware' | ||
|
||
steps: | ||
- uses: rlespinasse/[email protected] | ||
|
||
- uses: actions/checkout@v2 | ||
with: | ||
token: ${{ secrets.API_TOKEN_GITHUB }} | ||
|
@@ -37,6 +40,7 @@ jobs: | |
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
delete-branch: true | ||
branch: bugfix/format_${{ env.GITHUB_REF_SLUG }} | ||
author: QMK Bot <[email protected]> | ||
committer: QMK Bot <[email protected]> | ||
commit-message: Format code according to conventions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# This file maps keys between `config.h` and `info.json`. It is used by QMK | ||
# to correctly and consistently map back and forth between the two systems. | ||
{ | ||
# Format: | ||
# <config.h key>: {"info_key": <info.json key>, ["value_type": <value_type>], ["to_json": <true/false>], ["to_c": <true/false>]} | ||
# value_type: one of "array", "array.int", "int", "hex", "list", "mapping" | ||
# to_json: Default `true`. Set to `false` to exclude this mapping from info.json | ||
# to_c: Default `true`. Set to `false` to exclude this mapping from config.h | ||
# warn_duplicate: Default `true`. Set to `false` to turn off warning when a value exists in both places | ||
"DEBOUNCE": {"info_key": "debounce", "value_type": "int"} | ||
"DEVICE_VER": {"info_key": "usb.device_ver", "value_type": "hex"}, | ||
"DESCRIPTION": {"info_key": "keyboard_folder", "to_json": false}, | ||
"DIODE_DIRECTION": {"info_key": "diode_direction"}, | ||
"LAYOUTS": {"info_key": "layout_aliases", "value_type": "mapping"}, | ||
"LED_CAPS_LOCK_PIN": {"info_key": "indicators.caps_lock"}, | ||
"LED_NUM_LOCK_PIN": {"info_key": "indicators.num_lock"}, | ||
"LED_SCROLL_LOCK_PIN": {"info_key": "indicators.scroll_lock"}, | ||
"MANUFACTURER": {"info_key": "manufacturer"}, | ||
"RGB_DI_PIN": {"info_key": "rgblight.pin"}, | ||
"RGBLED_NUM": {"info_key": "rgblight.led_count", "value_type": "int"}, | ||
"RGBLED_SPLIT": {"info_key": "rgblight.split_count", "value_type": "array.int"}, | ||
"RGBLIGHT_ANIMATIONS": {"info_key": "rgblight.animations.all", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_ALTERNATING": {"info_key": "rgblight.animations.alternating", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_BREATHING": {"info_key": "rgblight.animations.breathing", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_CHRISTMAS": {"info_key": "rgblight.animations.christmas", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_KNIGHT": {"info_key": "rgblight.animations.knight", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_RAINBOW_MOOD": {"info_key": "rgblight.animations.rainbow_mood", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_RAINBOW_SWIRL": {"info_key": "rgblight.animations.rainbow_swirl", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_RGB_TEST": {"info_key": "rgblight.animations.rgb_test", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_SNAKE": {"info_key": "rgblight.animations.snake", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_STATIC_GRADIENT": {"info_key": "rgblight.animations.static_gradient", "value_type": "bool"}, | ||
"RGBLIGHT_EFFECT_TWINKLE": {"info_key": "rgblight.animations.twinkle"}, | ||
"RGBLIGHT_LIMIT_VAL": {"info_key": "rgblight.max_brightness", "value_type": "int"}, | ||
"RGBLIGHT_HUE_STEP": {"info_key": "rgblight.hue_steps", "value_type": "int"}, | ||
"RGBLIGHT_SAT_STEP": {"info_key": "rgblight.saturation_steps", "value_type": "int"}, | ||
"RGBLIGHT_VAL_STEP": {"info_key": "rgblight.brightness_steps", "value_type": "int"}, | ||
"RGBLIGHT_SLEEP": {"info_key": "rgblight.sleep", "value_type": "bool"}, | ||
"RGBLIGHT_SPLIT": {"info_key": "rgblight.split", "value_type": "bool"}, | ||
"PRODUCT": {"info_key": "keyboard_folder", "to_json": false}, | ||
"PRODUCT_ID": {"info_key": "usb.pid", "value_type": "hex"}, | ||
"VENDOR_ID": {"info_key": "usb.vid", "value_type": "hex"} | ||
} |
Oops, something went wrong.