~ruther/qmk_firmware

0a3ec7f5 — Joel Challis 2 years ago
Merge upstream uf2conv.py changes (#21107)

Unicodemap keycodes rename (#21092)

45c9bc4e — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
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>
857e9b74 — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
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)

61569727 — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
81bc0925 — kkokdae 2 years ago
[Keymap] Modify kkokdae keymap for keyboardio/atreus (#21037)

5a26e5e7 — 3araht 2 years ago
[Keymap] transpose added to giabalanai keymaps (#21054)

6a2de56a — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
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>
04719c77 — Evgenii Vilkov 2 years ago
Fix backlight sync on suspend_power_down for split keyboards (#21079)

b3a7f80e — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
3a3e5aba — Drashna Jaelre 2 years ago
[Keymap] Drashna Keymap updates for 0.21.0 (#21073)

cc11b63d — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
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.
23658cf7 — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
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>
ffeaf462 — QMK Bot 2 years ago
Merge remote-tracking branch 'origin/master' into develop
Next