Skip to content

Tags: benlyall/qmk_firmware

Tags

0.7.154

Toggle 0.7.154's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Convert f072 backlight build error to message (qmk#8177)

0.7.153

Toggle 0.7.153's commit message
fix list_keymaps for python 3.5

0.7.152

Toggle 0.7.152's commit message
format code according to conventions [skip ci]

0.7.151

Toggle 0.7.151's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Align split_common/matrix.c with matrix.c (qmk#8153)

0.7.150

Toggle 0.7.150's commit message
format code according to conventions [skip ci]

0.7.149

Toggle 0.7.149's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix out of bound OLED font access (qmk#8145)

* Fix out of bound OLED font access

The default font is 1344 bytes, or a total of 224 glyphs (each 6-bytes wide).
OLED_FONT_END defaults to 224, which if used will then index off the end of
the font array. So either the documentation or code is wrong.

Instead of figuring out the rewording of the documentation, just change
the OLED_FONT_END default value to 223, to match the documentation and code.

* Add static assert to check array size

Build bomb if the font array size doesn't match to the defines.

0.7.148

Toggle 0.7.148's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
use replace() over rename() to have cross-platform overwriting (qmk#8148

)

0.7.147

Toggle 0.7.147's commit message
Compile error if ONESHOT_TIMEOUT defined but oneshot disabled (qmk#8100)

* Compile error if ONESHOT_TIMEOUT defined but oneshot disabled

When ONESHOT_TIMEOUT and NO_ACTION_ONESHOT are both defined, this code
fails to compile.

Wrap the one usage of ONESHOT_TIMEOUT that is inconsistent with the
rest so all usages are properly wrapped by a check of NO_ACTION_ONESHOT.

* Run file through clang-format

Co-authored-by: Ted M Lin <[email protected]>

0.7.146

Toggle 0.7.146's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use FIRMWARE_FORMAT for "Checking file size" message (qmk#8121)

0.7.145

Toggle 0.7.145's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update the flash cli command to use the user config (qmk#8125)