adiabatic 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								0c9c4a4e56 
								
							 
						 
						
							
							
								
								[Keymap] zweihander-macos: Don’t pretend to be a mouse ( #20997 )  
							
							 
							
							
							
						 
						
							2023-06-01 02:25:33 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								6156972781 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-31 19:03:39 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									kkokdae 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								81bc0925e9 
								
							 
						 
						
							
							
								
								[Keymap] Modify kkokdae keymap for keyboardio/atreus ( #21037 )  
							
							 
							
							
							
						 
						
							2023-05-31 12:02:58 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									3araht 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								5a26e5e790 
								
							 
						 
						
							
							
								
								[Keymap] transpose added to giabalanai keymaps ( #21054 )  
							
							 
							
							
							
						 
						
							2023-05-31 11:48:56 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								6a2de56aaf 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-31 18:47:46 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									CoffeeIsLife 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								c2ddd77e0d 
								
							 
						 
						
							
							
								
								[Keymap] Cleanup coffeeislife87 keymap and remove features ( #21061 )  
							
							 
							
							... 
							
							
							
							Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Fae <faenkhauser@gmail.com> 
							
						 
						
							2023-05-31 11:46:59 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Evgenii Vilkov 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								04719c774d 
								
							 
						 
						
							
							
								
								Fix backlight sync on suspend_power_down for split keyboards ( #21079 )  
							
							 
							
							
							
						 
						
							2023-05-31 11:46:03 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								b3a7f80e1a 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-31 18:44:47 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Drashna Jaelre 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3a3e5abac9 
								
							 
						 
						
							
							
								
								[Keymap] Drashna Keymap updates for 0.21.0 ( #21073 )  
							
							 
							
							
							
						 
						
							2023-05-31 11:44:06 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								cc11b63d87 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-30 18:25:04 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Sergey Vlasov 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								1411c79aef 
								
							 
						 
						
							
							
								
								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. 
							
						 
						
							2023-05-30 19:24:19 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								23658cf714 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-30 01:11:34 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									dependabot[bot] 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								913691b9f0 
								
							 
						 
						
							
							
								
								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> 
							
						 
						
							2023-05-30 02:10:57 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								ffeaf462e3 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-30 01:08:54 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									precondition 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								1e2deddd43 
								
							 
						 
						
							
							
								
								Remove outdated remarks regarding the default MT behavior ( #21077 )  
							
							 
							
							
							
						 
						
							2023-05-30 02:08:15 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								0ffa4ef9df 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-28 22:27:51 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								42c6920e23 
								
							 
						 
						
							
							
								
								Update auto_tag.yml ( #21050 )  
							
							 
							
							
							
						 
						
							2023-05-28 23:27:13 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								11bba43953 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-28 20:37:30 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								d02ff2edd9 
								
							 
						 
						
							
							
								
								Update "Most Recent ChangeLog" ( #21071 )  
							
							 
							
							
							
						 
						
							2023-05-28 21:36:46 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								f2808dcbef 
								
							 
						 
						
							
							
								
								Branch point for 2023q3 Breaking Change.  
							
							 
							
							
							
						 
						
							2023-05-29 06:20:09 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								5024370dd0 
								
							 
						 
						
							
							
								
								Merge branch 'develop'  
							
							 
							
							
							
						 
						
							2023-05-29 06:17:24 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								8b1d86eabf 
								
							 
						 
						
							
							
								
								Remove develop note in readme.  
							
							 
							
							
							
						 
						
							2023-05-29 06:16:06 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								32d865572c 
								
							 
						 
						
							
							
								
								develop 2023q2 changelog (#21049 )  
							
							 
							
							... 
							
							
							
							Co-authored-by: Ryan <fauxpark@gmail.com> 
							
						 
						
							2023-05-29 06:02:11 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								8c9f54d70b 
								
							 
						 
						
							
							
								
								Encoder map: NUM_DIRECTIONS ( #21066 )  
							
							 
							
							
							
						 
						
							2023-05-28 13:38:24 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									nuess0r 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								f98f8eedf0 
								
							 
						 
						
							
							
								
								Consolidate modelm v2 ( #14996 )  
							
							 
							
							... 
							
							
							
							Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Nick Brassel <nick@tzarc.org> 
							
						 
						
							2023-05-27 23:12:36 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								e759230706 
								
							 
						 
						
							
							
								
								Fix up keebio/cepstrum ( #21062 )  
							
							 
							
							
							
						 
						
							2023-05-27 05:49:57 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									André Greiner-Petter 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								249fb3c2c2 
								
							 
						 
						
							
							
								
								[BUG] Allow multiple IS31FL3741 drivers per board in rgb_matrix ( #20988 )  
							
							 
							
							
							
						 
						
							2023-05-27 13:26:14 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								5642bd1807 
								
							 
						 
						
							
							
								
								Fix up qmk find when not specifying filters. ( #21059 )  
							
							 
							
							
							
						 
						
							2023-05-27 13:23:07 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								363bfdbfda 
								
							 
						 
						
							
							
								
								Move RGBLIGHT_LIMIT_VAL to data driven ( #20974 )  
							
							 
							
							... 
							
							
							
							Co-authored-by: Nick Brassel <nick@tzarc.org> 
							
						 
						
							2023-05-27 12:27:44 +10:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								8fdcba12e6 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-26 20:19:17 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									dependabot[bot] 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								16767e4d59 
								
							 
						 
						
							
							
								
								Bump JamesIves/github-pages-deploy-action from 4.4.1 to 4.4.2 ( #21057 )  
							
							 
							
							... 
							
							
							
							Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action ) from 4.4.1 to 4.4.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases )
- [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.4.1...v4.4.2 )
---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> 
							
						 
						
							2023-05-26 21:18:33 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								5efdc28a86 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-26 02:07:54 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Pablo Martínez 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								1c1bc565de 
								
							 
						 
						
							
							
								
								[Bugfix + Refactor] qmk painter-convert-graphics ( #19994 )  
							
							 
							
							
							
						 
						
							2023-05-26 03:07:06 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								b2e5017e74 
								
							 
						 
						
							
							
								
								Move thekey to Drop vendor folder ( #21032 )  
							
							 
							
							
							
						 
						
							2023-05-25 23:08:12 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								873922d98f 
								
							 
						 
						
							
							
								
								Implement UF2 device type id extension tag ( #21029 )  
							
							 
							
							
							
						 
						
							2023-05-25 23:07:47 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Drashna Jaelre 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								ed69d78f27 
								
							 
						 
						
							
							
								
								[Bug][Keyboard] Fix key display on Corne OLED ( #21044 )  
							
							 
							
							
							
						 
						
							2023-05-25 16:41:12 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								6e41377824 
								
							 
						 
						
							
							
								
								qmk info - Remove printing of "Keyboard Folder" ( #21033 )  
							
							 
							
							
							
						 
						
							2023-05-24 23:27:57 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								6d93d8b56a 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-24 18:48:31 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Danny 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								f9c32974ef 
								
							 
						 
						
							
							
								
								Add encoder map FoldKB in VIA ( #21038 )  
							
							 
							
							
							
						 
						
							2023-05-24 19:47:46 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								a12c1e0bcf 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-24 07:54:46 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Xyverz 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								618d0f05f4 
								
							 
						 
						
							
							
								
								Removed unneeded layers from xyverz keymaps ( #21008 )  
							
							 
							
							
							
						 
						
							2023-05-24 08:54:06 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								3969d7045e 
								
							 
						 
						
							
							
								
								Duplicate board files for blok converter ( #20629 )  
							
							 
							
							... 
							
							
							
							* Duplicate board files for blok converter
* Swap converters board file too
* Update platforms/chibios/boards/QMK_BLOK/configs/board.h 
							
						 
						
							2023-05-22 07:04:19 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Joel Challis 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								fb056c5437 
								
							 
						 
						
							
							
								
								Update json2c to use dump_lines ( #21013 )  
							
							 
							
							
							
						 
						
							2023-05-22 07:03:59 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ryan 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								595f7db384 
								
							 
						 
						
							
							
								
								Remove HHKB RN42 code ( #21007 )  
							
							 
							
							
							
						 
						
							2023-05-22 04:40:34 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								36b08d5d69 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-21 16:44:51 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Bodo Graumann 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								725c9f3c85 
								
							 
						 
						
							
							
								
								Use wayback machine for unreachable site ( #20987 )  
							
							 
							
							
							
						 
						
							2023-05-21 17:44:06 +01:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								5261ac9f0c 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-21 15:57:48 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Ananya Kirti 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								08a8d35bc3 
								
							 
						 
						
							
							
								
								[Keyboard] Added Support for trainpad ( #20973 )  
							
							 
							
							... 
							
							
							
							* Added Support for trainpad
added support for trainpad
* corrected capitalisation
corrected capitalisation
* Update keyboards/trainpad/keymaps/via/keymap.c
* Update keyboards/trainpad/info.json
* Update keyboards/trainpad/keymaps/default/keymap.c
* Update readme.md
updated readme to remove handwire, and corrected number of keys
* removed config.h, trainpad.c and trainpad.h
removed config.h, trainpad.c and trainpad.h
* updated readme
upadted readme to correct capitalisation
* Update keyboards/trainpad/info.json
* Update keyboards/trainpad/info.json
* Update keyboards/trainpad/rules.mk
* updated Readme
updated Readme
* Update keyboards/trainpad/readme.md 
							
						 
						
							2023-05-21 08:57:08 -07:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									QMK Bot 
								
							 
						 
						
							
							
							
							
								
							
							
								9d96bfc5f5 
								
							 
						 
						
							
							
								
								Merge remote-tracking branch 'origin/master' into develop  
							
							 
							
							
							
						 
						
							2023-05-20 21:29:58 +00:00  
						
						
							 
							
							
							
								 
							 
							
						 
					 
				
					
						
							
								
								
									 
									Nick Brassel 
								
							 
						 
						
							
							
								
								
							
							
							
								
							
							
								420e35f922 
								
							 
						 
						
							
							
								
								qmk generate-make-dependencies improvements (#21001 )  
							
							 
							
							... 
							
							
							
							* Recommendations from @sigprof
* Fix CI tests 
							
						 
						
							2023-05-20 22:29:21 +01:00