summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-06-05Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-05[Keyboard] Add soda/mango (#21100)Jeayo Keh
Co-authored-by: jack <0x6a73@protonmail.com> Co-authored-by: Joel Challis <git@zvecr.com>
2023-06-05Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-05[Keyboard] Upddate bioi/G60BLE to use bluetooth (#21120)Will Hedges
Co-authored-by: jack <0x6a73@protonmail.com>
2023-06-05Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-05fixed E80 1800 layout macros (#21125)Moritz Plattner
2023-06-05Remove quantum/keymap.h (#21086)Joel Challis
2023-06-04Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-04Fix USB PIDs on Churrosoft Deck-8 (#21126)Ramiro Bou
2023-06-04[Enhancement] Decouple autocorrect logic (#21116)Pablo Martínez
2023-06-04Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-04[Keyboard] Zed65 Rev.1 - Update info.json (#21122)mechlovin
2023-06-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-03[Keyboard] Add Andean Condor (#21118)Guido Bartolucci
Co-authored-by: Joel Challis <git@zvecr.com>
2023-06-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-03[Keyboard] Add Churrosoft Deck-8 (#21119)Ramiro Bou
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com> Co-authored-by: jack <0x6a73@protonmail.com>
2023-06-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-03[Keyboard] Add the Zed65 rev.1 PCB (#21043)mechlovin
Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: jack <0x6a73@protonmail.com>
2023-06-03Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-03Update `split_3x5_2` community layout info (#21022)Duncan Sutherland
2023-06-02[Core] Move dynamic macro "stop recording" logic to a function (#21108)Ariane Emory
2023-06-02platfoms: chibios: wait: only define the frequency (#21115)dexter93
2023-06-02Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-02[keyboard] Phoenix (#21051)yiancar
* Update keyboards/cablecardesigns/phoenix/
2023-06-02Revert "Add *_MATRIX_LED_COUNT generation/validation (#19515)" (#21109)Joel Challis
This reverts commit 25c16b3adeb15466d75691162763ce062b2c6e64.
2023-06-02Add *_MATRIX_LED_COUNT generation/validation (#19515)Joel Challis
* Add *_MATRIX_LED_COUNT parsing/validation * Disable parsing for now * Disable complexity check
2023-06-01Merge upstream uf2conv.py changes (#21107)Joel Challis
2023-06-01Unicodemap keycodes rename (#21092)Ryan
2023-06-01Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-01[Keyboard] Add lightweight65 keyboard (#21034)DeskDaily
Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com> Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>
2023-06-01Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-06-01[Keymap] z12 zigotica keymap tweaks (#20990)Sergi Meseguer
2023-06-01[Keymap] `zweihander-macos`: Don’t pretend to be a mouse (#20997)adiabatic
2023-05-31Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-31[Keymap] Modify kkokdae keymap for keyboardio/atreus (#21037)kkokdae
2023-05-31[Keymap] transpose added to giabalanai keymaps (#21054)3araht
2023-05-31Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-31[Keymap] Cleanup coffeeislife87 keymap and remove features (#21061)CoffeeIsLife
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Fae <faenkhauser@gmail.com>
2023-05-31Fix backlight sync on suspend_power_down for split keyboards (#21079)Evgenii Vilkov
2023-05-31Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-31[Keymap] Drashna Keymap updates for 0.21.0 (#21073)Drashna Jaelre
2023-05-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-30`qmk find`: Fix handling of functions in filters (#21090)Sergey Vlasov
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.
2023-05-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-30Bump tj-actions/changed-files from 35 to 36 (#21058)dependabot[bot]
Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 35 to 36. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v35...v36) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-30Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-30Remove outdated remarks regarding the default MT behavior (#21077)precondition
2023-05-28Merge remote-tracking branch 'origin/master' into developQMK Bot
2023-05-28Update auto_tag.yml (#21050)Joel Challis
2023-05-28Merge remote-tracking branch 'origin/master' into developQMK Bot