~ruther/qmk_firmware

ae5bcaac — yiancar 2 years ago
[keyboard] Phoenix (#21051)

* Update keyboards/cablecardesigns/phoenix/
b110a098 — DeskDaily 2 years ago
[Keyboard] Add lightweight65 keyboard (#21034)

Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>
c805c106 — Sergi Meseguer 2 years ago
[Keymap] z12 zigotica keymap tweaks (#20990)

0c9c4a4e — adiabatic 2 years ago
[Keymap] `zweihander-macos`: Don’t pretend to be a mouse (#20997)

81bc0925 — kkokdae 2 years ago
[Keymap] Modify kkokdae keymap for keyboardio/atreus (#21037)

c2ddd77e — CoffeeIsLife 2 years ago
[Keymap] Cleanup coffeeislife87 keymap and remove features (#21061)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Fae <faenkhauser@gmail.com>
3a3e5aba — Drashna Jaelre 2 years ago
[Keymap] Drashna Keymap updates for 0.21.0 (#21073)

1411c79a — Sergey Vlasov 2 years ago
`qmk find`: Fix handling of functions in filters (#21090)

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.
913691b9 — dependabot[bot] 2 years ago
Bump tj-actions/changed-files from 35 to 36 (#21058)

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>
1e2deddd — precondition 2 years ago
Remove outdated remarks regarding the default MT behavior (#21077)

42c6920e — Joel Challis 2 years ago
Update auto_tag.yml (#21050)

d02ff2ed — Joel Challis 2 years ago
Update "Most Recent ChangeLog" (#21071)

5024370d — Nick Brassel 2 years ago
Merge branch 'develop'
8b1d86ea — Nick Brassel 2 years ago
Remove `develop` note in readme.
32d86557 — Nick Brassel 2 years ago
`develop` 2023q2 changelog (#21049)

Co-authored-by: Ryan <fauxpark@gmail.com>
8c9f54d7 — Nick Brassel 2 years ago
Encoder map: NUM_DIRECTIONS (#21066)

f98f8eed — nuess0r 2 years ago
Consolidate modelm v2 (#14996)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
e7592307 — Nick Brassel 2 years ago
Fix up `keebio/cepstrum` (#21062)

249fb3c2 — André Greiner-Petter 2 years ago
[BUG] Allow multiple IS31FL3741 drivers per board in rgb_matrix (#20988)

5642bd18 — Nick Brassel 2 years ago
Fix up `qmk find` when not specifying filters. (#21059)

Next