Nick Brassel
73ffa4594d
Fix up `qmk mass-compile` makefile indenting. ( #22115 )
2 years ago
Nick Brassel
abd432fd7a
Allow for `qmk compile -kb all`. ( #22022 )
2 years ago
Andrew Kannan
46d679ab11
`qmk format-json`: Add an in-place mode to format json command ( #21610 )
2 years ago
Joel Challis
95681b8ff4
Add *_MATRIX_LED_COUNT generation ( #21110 )
2 years ago
Joel Challis
27ff1d4153
Remove layout aliases from keyboard_aliases.hjson ( #21658 )
2 years ago
Ryan
f407d90598
keycode aliases: work around ChibiOS ch.h include guard ( #21497 )
2 years ago
Ryan
030511ece3
CLI: Improve error messages when layout key matrix row/col is OOB ( #21640 )
2 years ago
Less/Rikki
a0ea7a6b17
feat, docs: WB32 flashing ( #21217 )
2 years ago
Ryan
ef39ecd1b7
Adjust width requirement for big enter ( #21470 )
2 years ago
Pablo Martínez
6bdd8e2782
[Refactor] Python-ify QP's converter code ( #20102 )
2 years ago
Nick Brassel
c814be0296
STM32H723 support ( #21352 )
2 years ago
Nick Brassel
ffdc70bf0a
Consolidate `KEYBOARD_OUTPUT`+`KEYMAP_OUTPUT`=>`INTERMEDIATE_OUTPUT` ( #21272 )
2 years ago
Ryan
a9f677b518
Slightly refine `g_led_config` parsing ( #21170 )
2 years ago
Joel Challis
aa33fb00fd
Revert "Add *_MATRIX_LED_COUNT generation/validation ( #19515 )" ( #21109 )
...
This reverts commit 25c16b3ade
.
2 years ago
Joel Challis
25c16b3ade
Add *_MATRIX_LED_COUNT generation/validation ( #19515 )
...
* Add *_MATRIX_LED_COUNT parsing/validation
* Disable parsing for now
* Disable complexity check
2 years ago
Sergey Vlasov
1411c79aef
`qmk find`: Fix handling of functions in filters ( #21090 )
...
Functions in filters did not work properly except when used in the last
(or only) filter. The problem was caused by the peculiarity of the
`lambda` behavior in Python — any variables from the outer scope are
captured only by reference, therefore any subsequent reassignment of
those variables is propagated to all lambdas created earlier in the same
scope. Together with the laziness of `filter()` (it returns an iterator
which performs filtering on demand) this resulted in all function
filters using the values of the `key` and `value` variables which
correspond to the last filter in the sequence, therefore the result of
filtering was wrong if some filter with a function was not the last one
in the sequence.
Apparently the shortest way to make a Python lambda capture some
variables by value is to add arguments with default values for such
variables (default values are evaluated when the lambda is created, and
any subsequent reassignments in the outer scope no longer changes them).
This makes filters with functions work properly even when such filters
are not at the last position in the sequence.
2 years ago
Nick Brassel
5642bd1807
Fix up `qmk find` when not specifying filters. ( #21059 )
2 years ago
Pablo Martínez
1c1bc565de
[Bugfix + Refactor] `qmk painter-convert-graphics` ( #19994 )
2 years ago
Joel Challis
6e41377824
qmk info - Remove printing of "Keyboard Folder" ( #21033 )
2 years ago
Joel Challis
fb056c5437
Update json2c to use dump_lines ( #21013 )
2 years ago
Nick Brassel
420e35f922
`qmk generate-make-dependencies` improvements ( #21001 )
...
* Recommendations from @sigprof
* Fix CI tests
2 years ago
Ryan
6d90fa2300
`qmk format-json`: Expose full key path and respect `sort_keys` ( #20836 )
2 years ago
Ryan
102c42b14b
`qmk find`: usability improvements ( #20440 )
2 years ago
Peter
7b31c18d46
Fix English word list retrieval in qmk generate-autocorrect-data ( #20915 )
2 years ago
Ryan
dc75c23f5c
CLI: Improve keymap folder resolution ( #20981 )
2 years ago
Nick Brassel
507e32b28c
Generate `make` dependency file during build for info.json's etc. ( #20451 )
2 years ago
Ryan
578102b400
Fix `test_json2c_no_json()` ( #20756 )
2 years ago
Ryan
998a4d744e
Remove `FLIP_HALF` layouts and move to data driven ( #20588 )
2 years ago
Nick Brassel
c9f619124d
Encodermap direction define. ( #20454 )
2 years ago
Dasky
6e0acf0548
Add autocomplete to generate-compilation-database ( #20387 )
2 years ago
Joel Challis
e9b36bebb2
Avoid generating empty ENCODER_RESOLUTION ( #20179 )
2 years ago
Nick Brassel
2e766a9c7a
Add Discord webhook at end of each CI run. ( #20355 )
2 years ago
Nick Brassel
687883cf7d
Resolve keyboard names for `qmk mass-compile`. ( #20335 )
2 years ago
Ryan
81f321d331
`qmk info`: account for ISO enter when calculating layout X offset ( #20325 )
2 years ago
Albert Y
47a51fda5d
Append user variables to the end of make command ( #20177 )
2 years ago
Nick Brassel
c3c401f91d
[QP] Fix up delta frame boundaries ( #20296 )
2 years ago
Joel Challis
f56580404d
Minify content published to API ( #20285 )
2 years ago
Nick Brassel
5bb8f7ae84
Add ability for `qmk mass-compile` to build specified targets ( #20294 )
2 years ago
Joel Challis
f186abdf29
Reduce _validate complexity ( #20274 )
2 years ago
Joel Challis
79b0f9168e
Custom keycodes in JSON ( #19925 )
2 years ago
Joel Challis
e35bb8ebfa
Add force support to 'qmk git-submodule' ( #19705 )
2 years ago
Ryan
d6ce42ae5b
Check for multiple matrix positions assigned to same key ( #20039 )
2 years ago
Joel Challis
fa4dfb542f
Strip API specific output from `qmk info` ( #20234 )
2 years ago
Albert Y
0e1e543836
Increase verbosity of make command ( #20172 )
2 years ago
Nick Brassel
1b3f7fcf7d
Add `qmk find` command, reuse logic for `qmk mass-compile`. ( #20139 )
2 years ago
Nick Brassel
e62fc866db
Let's use workflows to parallelise the builds. ( #20120 )
...
* Let's use workflows to parallelise the builds.
* Nofail if files aren't present.
* Formatting.
2 years ago
Ryan
91e0457b0e
JSON encoder: improve sorting of layout dict keys ( #19974 )
2 years ago
Ryan
76fb534269
`qmk info`: add warning when layout is offset ( #20070 )
2 years ago
Joel Challis
c3c40dfda8
Remove some use of keymap.h ( #19980 )
2 years ago
Ryan
6fabc330e3
Check all keys have matrix positions when parsing C LAYOUT macros ( #19781 )
2 years ago