Skip to content

Tags: andreacastellanos/qmk_firmware

Tags

0.7.38

Toggle 0.7.38's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
[CLI] `qmk docs` graceful shutdown on Ctrl+C (qmk#6989)

0.7.37

Toggle 0.7.37's commit message
ARM split - detect USB to select master/slave (qmk#6424)

* Initial split refactor to allow usb master detection

* Add split USB detect docs

* Add SPLIT_USB_DETECT demo mode limitation

* fix rebase issues

* clang-format

0.7.36

Toggle 0.7.36's commit message
[Docs] Fix missing link in readme (qmk#6958)

0.7.35

Toggle 0.7.35's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
[Docs] CLI command to serve docs locally (qmk#6956)

* CLI command to serve docs locally

* Document it

* Default port

* Use `with` and subclass `SimpleHTTPRequestHandler` to set working dir

* Apply suggestions from code review

Co-Authored-By: skullydazed <[email protected]>

* Update docs/cli.md

0.7.34

Toggle 0.7.34's commit message
[CLI] Add `qmk list_keyboards` (qmk#6927)

`list_keyboards` replicates the `make list-keyboards` by globbing for all paths
that include `rules.mk` and then removing the paths that include `keymaps`.

This basis of this cli command could be reused in the future as a util, but is
not done so here since this would be the only place that would use it currently

Resolves qmk#6911

0.7.33

Toggle 0.7.33's commit message
Use `keymap` instead of `username` variable for `qmk new_keymap` (qmk…

…#6885)

Username is not defined and this causes `qmk new_keymap` to error.  This
appears to have originated from a partial update in
https://github.com/qmk/qmk_firmware/pull/6708/files#diff-d5208bcbc79aa428556a743b6ff41086.  This change completes the migration from `username` to `keymap`

0.7.32

Toggle 0.7.32's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
removed deprecated option for Travis (qmk#6896)

0.7.31

Toggle 0.7.31's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
ARM - Initial backlight support (qmk#6487)

* Move AVR backlight to own file, add borrowed ARM implementation

* Tiny fix for backlight custom logic

* Remove duplicate board from rebase

* Fix f303 onekey example

* clang-format

* clang-format

* Remove backlight keymap debug

* Initial pass of ARM backlight docs

* Initial pass of ARM backlight docs - resolve todos

* fix rules validation logic

* Add f072 warning

* Add f072 warning

* tidy up breathing in backlight keymap

* tidy up breathing in backlight keymap

* add missing break to backlight keymap

0.7.30

Toggle 0.7.30's commit message
Fix qmk doctor 'bytes-like object is required' on linux

This fixes the following issue related to encoding on linux systems. Add
`universal_newlines=True` to subprocess.

<class 'TypeError'>
☒ a bytes-like object is required, not 'str'
Traceback (most recent call last):
  File "/usr/local/lib/python3.7/site-packages/milc.py", line 564, in __call__
    return self.__call__()
  File "/usr/local/lib/python3.7/site-packages/milc.py", line 569, in __call__
    return self._entrypoint(self)
  File "$HOME/qmk_firmware/lib/python/qmk/cli/doctor.py", line 56, in doctor
    for line in mm_check.stdout.split('\n'):
TypeError: a bytes-like object is required, not 'str'

0.7.29

Toggle 0.7.29's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
Port drivers.txt changes from the Toolbox (qmk#6786)