Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-02-17 | Use pathlib everywhere we can (#7872) | skullydazed | |
* Use pathlib everywhere we can * Update lib/python/qmk/path.py Co-Authored-By: Erovia <Erovia@users.noreply.github.com> * Update lib/python/qmk/path.py Co-Authored-By: Erovia <Erovia@users.noreply.github.com> * Improvements based on @erovia's feedback * rework qmk compile and qmk flash to use pathlib * style * Remove the subcommand_name argument from find_keyboard_keymap() Co-authored-by: Erovia <Erovia@users.noreply.github.com> | |||
2020-02-08 | Update the flash cli command to use the user config (#8125) | Erovia | |
2019-12-08 | Also fix flash | Zach White | |
2019-11-20 | Add flake8 to our test suite and fix all errors (#7379) | skullydazed | |
* Add flake8 to our test suite and fix all errors * Add some documentation | |||
2019-11-16 | format code according to conventions [skip ci] | QMK Bot | |
2019-11-15 | Add CLI command for flashing a keyboard | jorgemanzo | |
A new CLI subcommand was added, flash, which behaves very similar to the already present compile CLI comamnd, but with the added ability to target a bootloader. The command is used like so: qmk flash [-h] [-b] [-kb KEYBOARD] [-km KEYMAP] [-bl BOOTLOADER] [filename]. A -kb <keyboard> and -km <keymap> is expected, or a configurator export JSON filename. A bootloader can be specified using -bl <target>, and if left unspecified, the target is assumed to be :flash. -bl can be used to list the available bootloaders. If -km <keymap> is provided, but no -kb <keyboard>, then a message is printed suggesting the user to run qmk list_keyboards. |