summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2022-03-30yapf: disable arithmetic predecence indication (#16749)Ryan
2022-03-27CLI: Lint non-data driven macros in info.json (#16739)Erovia
* CLI: Lint non-data driven macros in info.json Macros in info.json should either have the "matrix" key with the matrix data or should should be also present in <keyboard>.h * Add verification of matrix data * Use generic '<keyboard>.h' in output * Add keyboard name to output * Make C layout macro finding more robust The old code missed C macros if they had whitespace between '#' and 'define' or had whitespace before '#'.
2022-03-26Fix bug when 'info.json' lookup escapes keyboard dir (#16734)Erovia
2022-03-24CLI: Add 'via2json' subcommand (#16468)Erovia
2022-03-19qmk.path.FileType: fix argument handling (#16693)Ryan
* qmk.path.FileType: pass in mode as first argument * Better solution * Grammar...
2022-03-18Relocate CLI git interactions (#16682)Joel Challis
2022-03-18[CLI] Add common util for dumping generated content (#16674)Joel Challis
2022-03-10CLI: Fix 'cd' subcommand on Windows (#16610)Erovia
The 'cd' subcommand was failing as the current shell's Windows path was mangled while milc processed it. Using 'subprocess' directly avoids this issue and an extra layer of subshell.
2022-03-08`qmk info`: Nicer rendering of big-ass enter (#16541)Ryan
* `qmk info`: Nicer rendering of big-ass enter * Formatting...
2022-03-05`qmk info`: nicer rendering of ISO enter (#16466)Ryan
2022-02-28CLI: Validate JSON keymap input (#16261)Erovia
* Fix schema validator It should use the passed schema. * Add required attributes to keymap schema * Rework subcommands to validate the JSON keymaps The 'compile', 'flash' and 'json2c' subcommands were reworked to add JSON keymap validation so error is reported for non-JSON and non-compliant-JSON inputs. * Fix required fields in keymap schema * Add tests * Fix compiling keymaps directly from keymap directory * Schema should not require version for now.
2022-02-27Fix issues with data driven split keyboards (#16457)Joel Challis
2022-02-27Revert CLI default for manufacturer (#16467)Joel Challis
2022-02-23Changelog 2022q1 (#16380)Joel Challis
* Initial changelog pass * update generate-develop-pr-list content * Fix bad word-ness * Fix generate-develop-pr-list ignores * Update docs/ChangeLog/20220226.md Co-authored-by: Sergey Vlasov <sigprof@gmail.com> Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
2022-02-22Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-02-22Format code according to conventions (#16435)QMK Bot
2022-02-22Merge remote-tracking branch 'upstream/master' into developfauxpark
2022-02-21Internal docs generation updates (#16411)Ryan
2022-02-15Various fixes for new-keyboard (#16358)Joel Challis
2022-02-14CLI: Minor additions #12795 (#16276)Erovia
2022-02-10Migrate more makefile utilities to builddefs sub-directory (#16002)Joel Challis
2022-02-09Initial pass at data driven new-keyboard subcommand (#12795)Joel Challis
* Initial pass at a data driven keyboard subcommand * format * lint * Handle bootloader now its mandatory
2022-02-05Skip categorisation of PR if it's only for code formatting. (#16215)Nick Brassel
2022-02-04Ensure `version.h` is recreated each build. (#16188)Nick Brassel
2022-02-02Fix issues with Python Tests (#16162)Drashna Jaelre
* Reformat python due to yapf changes * Fix pytest keymap list test * revert formatting * Use contra, because, well https://www.reddit.com/r/MechanicalKeyboards/comments/8riofq/did_i_kill_my_contra/
2022-02-02Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-02-01`qmk doctor`: display qmk_firmware version tag (#16155)Ryan
2022-02-02Fixup multibuild filegen (#16166)Nick Brassel
* Add env variable support to multibuild. * Generate version.h in build-specific location.
2022-01-24Add L432, L442. (#16016)Nick Brassel
2022-01-20Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-21Add missing STM32F405 definition in qmk.constants (#15937)Gigahawk
2022-01-17CLI: Parse USB device version BCD (#14580)Ryan
* CLI: Parse USB device version BCD * Apply suggestions
2022-01-06Fixes for bootloader refactor build failures (#15638)Ryan
2022-01-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-03Refix "No C files in filelist: None" (#15728)Joel Challis
2022-01-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2022-01-03Fix "No C files in filelist: None" (#15560)Joel Challis
* Fix "No C files in filelist: None" * Align other commands * force absolute paths
2021-12-29Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-12-30Fix compilation-database command under MSYS (#15652)Joel Challis
* Fix compilation-database command under MSYS * Add comment
2021-12-22Use the PR title rather than parsing the commit message. (#15537)Nick Brassel
2021-12-09Add test filter to 'qmk pytest' (#15432)Joel Challis
* Add test filter to 'qmk pytest' * Bodge for some test filters not resolving qmk * Update docs
2021-11-29Fix 'format-c --core-only' matching keyboard level folders (#15337)Joel Challis
2021-11-28Changelog 2021q4 (#15325)Nick Brassel
* Changelog. * Remove the asymmetric encoder PR from listing due to revert. * More docs * More docs * More docs * Links to changelog, updated schedule, slotted in 2 weeks of testing at the end so that there's no ambiguity with PR merge dates. * Clarify keyboard moves. * Fix dates * Sidebar * Fixup dates. * Fixup dates. * Wording.
2021-11-27Westberrytech pr (#14422)Joy Lee
* Added support for WB32 MCU * Modified eeprom_wb32.c * Remove the eeprom_wb32-related code
2021-11-23Merge remote-tracking branch 'origin/master' into developQMK Bot
2021-11-23qmk format-python - filter for Python files (#15271)Joel Challis
* qmk format-python filter all files * filter changed files too
2021-11-22Macros in JSON keymaps (#14374)Zach White
* macros in json keymaps * add advanced macro support to json * add a note about escaping macro strings * add simple examples * format json * add support for language specific keymap extras * switch to dictionaries instead of inline text for macros * use SS_TAP on the innermost tap keycode * add the new macro format to the schema * document the macro limit * add the json keyword for syntax highlighting * fix format that vscode screwed up * Update feature_macros.md * add tests for macros * change ding to beep * add json support for SENDSTRING_BELL * update doc based on feedback from sigprof * document host_layout * remove unused var * improve carriage return handling * support tab characters as well * Update docs/feature_macros.md Co-authored-by: Nick Brassel <nick@tzarc.org> * escape backslash characters * format * flake8 * Update quantum/quantum_keycodes.h Co-authored-by: Nick Brassel <nick@tzarc.org>
2021-11-19Merge remote-tracking branch 'origin/master' into developDrashna Jael're
2021-11-18[CLI] `list-keymaps`/`list-layouts`: Check keyboard passed in (#15204)Ryan
* [CLI] `list-keymaps`/`list-layouts`: Check keyboard passed in * Update lib/python/qmk/cli/list/keymaps.py Co-authored-by: Joel Challis <git@zvecr.com> * Update lib/python/qmk/cli/list/layouts.py Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Joel Challis <git@zvecr.com>
2021-11-18[cli] Export list of `develop` PRs to be merged into `master` (#13944)Nick Brassel
* Add developer-only command for exporting the list of PRs associated with a merge to `develop`. * qmk pytest * Imports. * Remove dependencies from requirements file, manually handle. * Reduce complexity, qmk generate-api taking too long so relying on CI