Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add missing gpio include to ps2 vendor #22063

Merged
merged 1 commit into from
Sep 18, 2023
Merged

Conversation

daskygit
Copy link
Member

Description

Types of Changes

  • Core
  • Bugfix
  • New feature
  • Enhancement/optimization
  • Keyboard (addition or update)
  • Keymap/layout/userspace (addition or update)
  • Documentation

Issues Fixed or Closed by This PR

Checklist

  • My code follows the code style of this project: C, Python
  • I have read the PR Checklist document and have made the appropriate changes.
  • My change requires a change to the documentation.
  • I have updated the documentation accordingly.
  • I have read the CONTRIBUTING document.
  • I have added tests to cover my changes.
  • I have tested the changes and verified that they work and don't break anything (as well as I can manage).

@github-actions github-actions bot added the core label Sep 18, 2023
@daskygit daskygit merged commit 16f2a3e into qmk:master Sep 18, 2023
4 checks passed
@daskygit daskygit deleted the fix/ps2_vendor branch September 18, 2023 18:55
philliphall added a commit to philliphall/qmk_firmware that referenced this pull request Sep 21, 2023
* [Keyboard] Phoenix Project No 1 support (qmk#21068)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Revert "Equals keyboard" (qmk#21622)

* Fix stuck note with square wave in additive DAC (qmk#21589)

* [Keyboard] Add splitkb.com's Aurora Sofle v2 (qmk#21499)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Thomas Baart <mail@thomasbaart.nl>

* On-each-release tap dance function (qmk#20255)

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

* Reduce needless precision in audio note frequency calculation (qmk#21496)

* Remove needless precision in additive DAC sample generation (qmk#21498)

* Amend documented `RGBLIGHT_HUE_STEP` default value (qmk#21617)

* helix/rev3_4rows, helix/rev3_5rows: Fix build with converters (qmk#21608)

The code for Helix rev3 boards could not be built with, e.g.,
`CONVERT_TO=rp2040_ce` due to invalid `#include <stdio.h>` in the
keyboard level `config.h` (apparently the AVR version of that file
contains guards against usage in assembly code, which was hiding the
bug).  Move `#include <stdio.h>` to the C sources which need it.

* Unicode: move keycode aliases to a separate header (qmk#21613)

* Unify MIDI note calculation with the audio feature's algorithm (qmk#21588)

* [Keyboard] Add STM32f3 Discovery onekey (qmk#21625)

* [Keyboard] Add Divine keyboard (qmk#21593)

* Update keyboard report descriptor for USB compliance (qmk#21626)

Running the "HID Tests" suite of the USB 3 Command Verifier (USB3CV)
tool resulted in the following error:

(HID: 3.2.61) The report descriptor returned in response to a
GetDescriptor(Report) must be compliant with the HID specification.

Byte Number:   37h (  55d)
Data Field: 91 02
Mnemonic:  Output
Value: (Variable)
Errors: Error:   LOGICAL MAX MUST be bounded by Report Size

The error stems from the fact that logical minimum and maximum are
global items, which means that the next item in a report descriptor
inherits the value from the previously set value. In this case the
status leds item inherited the logical minimum (=0) and maximum (=255)
from the keycodes item. As the status leds set a report size of 1 bit,
wich can only hold a boolean, it becomes clear that this range would
never fit.

The fix is straightforward, we just define a appropriate logical maximum
(=1), the mismatch is solved and our keyboard now passes the compliance
tests. Defining the logical minimum is redundant in this case but is
kept to form a logical block.

* [Keyboard] add itstleo40 PCB (qmk#21536)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keymap] update colemad crkbd (corne) keyboard (qmk#21515)

Co-authored-by: Álvaro Cortés Devesa <alvarocortesdevesa@Alvaros-MacBook-Pro.local>

* [Keyboard] Add ANAVI Macro Pad 12 (qmk#21547)

* Updated info.json of c2 pro (qmk#21581)

* quantum.h: clean up process_keycode includes (qmk#21579)

* Bluetooth: driver naming cleanups (qmk#21624)

* LED Matrix: driver naming cleanups (qmk#21580)

* Correct "less than" to "up to" in squeezing_avr?id=layers (qmk#21639)

* CLI: Improve error messages when layout key matrix row/col is OOB (qmk#21640)

* Fix layout offsets for a handful of boards (qmk#21636)

* keycode aliases: work around ChibiOS ch.h include guard (qmk#21497)

* Remove old OLED API code (qmk#21651)

* AMJKeyboard AMJ84 Develop Touch-Up (qmk#21645)

* [style] refactor default keymap, phase 1

- grid-align keycodes
- use QMK-native keycode aliases
- update box drawings

* [refactor] refactor default keymap, phase 2

- move position [5, 8] to the top row
  - update keycode grid alignment

* [refactor] refactor default keymap, phase 3

- remove matrix position [5, 9]

* Remove layout aliases from keyboard_aliases.hjson (qmk#21658)

* Keychron Q11 ISO: Fix left Shift breakage due to a wrong matrix mask (qmk#21655)

Keychron Q11 uses `matrix_mask` to mask away the matrix location used
for `SPLIT_HAND_MATRIX_GRID` (otherwise the keyboard will constantly
generate a wakeup request whenever the host enters suspend).  However,
the value of `matrix_mask` is actually chosen to mask away all unused
locations, but it was apparently generated for the ANSI board and
therefore masks away the left Shift key on the ISO board, breaking the
functionality of that key.

Fix `matrix_mask` to make the masking work as intended:

- Set the `[4, 1]` bit to 1; this is the matrix location for the ISO
  left Shift.

- Set the `[2, 5]` bit to 0; this is actually the matrix location which
  corresponds to `#define SPLIT_HAND_MATRIX_GRID A2, A15` on the left
  side, which was intended to be masked; apparently the wakeup problem
  does not happen due to `SPLIT_HAND_MATRIX_GRID_LOW_IS_RIGHT`, so the
  left half actually has that matrix location open.  On the right side
  `A2, A15` is `[9, 6]`, which was masked off correctly.

* Fix Dynamic Macro Compilation for avr-gcc 5.4.0 + Linux (qmk#21653)

Co-authored-by: Joel Challis <git@zvecr.com>

* Automata02 Alisaie Develop Touch-Up (qmk#21630)

* Fix mouse-key spamming empty reports (qmk#21663)

Problem:

`mousekey_task` spams empty hid reports with when a mouse key is
pressed, causing resource exhaustion in the USB mouse endpoint.

Cause:

The check whether or not to send a new mouse report would always
evaluate to true if a mouse key is pressed:

1. `mouse_report` has non-zero fields and `tmpmr` is a copy of this
   fields.
2. `mouse_report` is set to zero, `tmpmr` has now non-zero fields.
3. `has_mouse_report_changed` compares the two and evaluates to true
4. a mouse report is sent.

Fix:

The check condition of `has_mouse_report_changed` will evaluate any
empty record as unchanged, as mouse report data is relative and doesn't
need to return to zero. An empty report will still be send by
`register_mouse` on release of all mouse buttons.

* audio: Don't play the first note of zero-note melodies (qmk#21661)

* [Keyboard] Add Bento Box macropad (qmk#20521)

* [Bug] Restore usb suspend wakeup delay (qmk#21676)

* Respect USB_SUSPEND_WAKEUP_DELAY on wakeup

This delay wasn't honored after removing `restart_usb_driver` from the
suspend and wakeup handling. It is now re-introduced in the appropriate
spot, namely after issuing a remote wakeup to a sleeping host.

* Remove old, unused and commented testing code

* moondrop/dash75: fix keymap (qmk#21680)

* [Keyboard] Add PW88 keyboard (qmk#21482)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Clarify custom keycode enum requirement for PRs (qmk#21648)

* Add VIA layout for Dactyl Manuform 5x6 (qmk#21649)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* haptic: further naming cleanups (qmk#21682)

* Contributing docs: add note to make sure repo is up to date (qmk#21694)

* Fix `binepad/bn009` and `durgod/dgk6x/hades_ansi` keymaps (qmk#21701)

* doio/kb38: fix layout (qmk#21704)

* Remove more legacy config.h options (qmk#21709)

* Tidy up encoder in matrix references (qmk#21718)

* [Keyboard] Update usb.* of `dactyl_lightcycle` (qmk#21462)

* [Keyboard] add laneware `raindrop` keyboard (qmk#21277)

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* [Keyboard] Add Projectd/65/Projectd_65_ansi (qmk#21520)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* [Keymap] Add Via keymap for CXT Studio (qmk#21675)

* [Keyboard] fix json for nemui65 (qmk#21629)

* [Keyboard] Update USB settings for dactyl_maximus (qmk#21666)

* [Keyboard] Add mk47 keyboard (qmk#19797)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>

* correct keymap file name for tkl_f13_jis layout (qmk#21631)

* [Keyboard] Refactor Caticorn PCB (qmk#21644)

* Kintwin controller for kinesis keyboard, split layout (qmk#21614)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Fix `keyboard` field for some JSON keymaps (qmk#21752)

* [Keyboard] Add Shostudio Arc (qmk#21733)

* [Keymap] Update rpbaptist crkbd (qmk#21674)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Richard Baptist <richard@remote.com>

* [Keymap] Update andrebrait keymap for GMMK Pro (qmk#21668)

* [Keymap] submitting janat-t planck keymap (qmk#21619)

Co-authored-by: Janat Taerakul <jtaerakul@indeed.com>

* [keyboard] Graystudio Think6.5 V3 Support Revised (qmk#21560)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Remove invalid config option from kikoslab/kl90 (qmk#21708)

* [Keyboard] Add Chouchou keyboard (qmk#21699)

* OLED: driver naming cleanups (qmk#21710)

* Update usb information for dactyl_cc (qmk#21612)

* rgblight: driver selection cleanups (qmk#21558)

* [Keyboard] add willoucom/keypad (qmk#21714)

* Add ScottoErgo Keyboard (qmk#20944)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add Scotto34 Keyboard (qmk#20943)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoInvader Keyboard (qmk#20941)

Co-authored-by: Ryan <fauxpark@gmail.com>

* coarse/cordillera: fix backlight config (qmk#21761)

* The PoweredByPorridge layout for the Keyboardio Atreus (qmk#21737)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keymap] add squigglybob splitkb kyria rev2 keymap (qmk#21751)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* [Bug] Fix compilation error for APA on ChibiOS (qmk#21773)

* Add Galatea rev3 keyboard (qmk#21758)

* Adding support for TAN67 PCB (qmk#21003)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Keyboard] Add Jelly Evolv (qmk#21407)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add linworks favepada (qmk#20794)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* Initial support for ALT v2 (qmk#21754)

* Initial support for CTRL v2 (qmk#21755)

* Initial support for SHIFT v2 (qmk#21756)

* Align SENSE75 with recent Drop additions (qmk#21757)

* Fix drop/shift/v2 compilation (qmk#21800)

* [Keyboard] Add city42 (qmk#21727)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* fix: restore indicators to jellybean_raindrops (qmk#21792)

After qmk#21169, rgb_matrix_indicators() was limited to running on the
final render iteration. Since the jellybean_raindrops animation
immediately returns false after updating a single LED, the iteration
count no longer ends up high enough to render non-advanced indicators.

This change also brings jellybean_raindrops more in line with raindrops.

* Simplfy RGB/LED matrix effect logic (qmk#21703)

* RGB Matrix: driver naming cleanups (qmk#21594)

* Fix keyboards with old RGB driver names (qmk#21815)

* [Doc] Improve magic keycode section (qmk#21787)

* Fix keyboards with old RGB driver names (qmk#21817)

* keychron/c2_pro/ansi/white: Fix column 19 in the custom matrix (qmk#21805)

Although `keychron/c2_pro/ansi/rgb` and `keychron/c2_pro/ansi/white` use
the same custom matrix code, the matrix layouts are slightly different;
in particular, only the `keychron/c2_pro/ansi/white` board actually uses
column 19.  However, the handling of column 19 in the custom matrix code
was broken, therefore that column did not work.

Looks like the custom matrix code assumes that `SHIFT_COL_END` refers to
the last column connected to the shift register, and not to the column
past that; so the value of `SHIFT_COL_END` needs to be changed from 19
to 18 (columns 11...18 are connected to the shift register, and column
19 is connected to the C14 pin).

Also the code which was determining `SIZE_T` and `UNSELECT_ALL_COL` had
an off-by-one bug when counting the required number of bits (again due
to the confusion on the `SHIFT_COL_END` meaning); this had been fixed
too (the actual behavior of that part of the code did not change,
because both the old and the new version select the 8 bit variant).

* Fix infinite recursion in lxxt encoder logic (qmk#21819)

* Bump tj-actions/changed-files from 37 to 38 (qmk#21822)

Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 37 to 38.
- [Release notes](https://github.com/tj-actions/changed-files/releases)
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)
- [Commits](tj-actions/changed-files@v37...v38)

---
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>

* Generalize AVR -Werror=array-bounds workaround (qmk#21798)

GCC 13 needs the same workaround as GCC 12.
To avoid having to maintain an ever-growing list of broken versions
apply the workaround wherever it can be used.

If at some point a fixed version of GCC is released the workaround can
be disabled for those fixed versions.

See qmk#17064

* Move RGBLight animations to data driven (qmk#21635)

* Move RGBLight animations to data driven, 0-9

* Move RGBLight animations to data driven, A

* Move RGBLight animations to data driven, B

* Move RGBLight animations to data driven, C

* Move RGBLight animations to data driven, D

* Move RGBLight animations to data driven, E

* Move RGBLight animations to data driven, F

* Move RGBLight animations to data driven, G

* Move RGBLight animations to data driven, H

* Move RGBLight animations to data driven, handwired

* Move RGBLight animations to data driven, I

* Move RGBLight animations to data driven, J

* Move RGBLight animations to data driven, K

* Move RGBLight animations to data driven, L

* Move RGBLight animations to data driven, M

* Move RGBLight animations to data driven, N

* Move RGBLight animations to data driven, O

* Move RGBLight animations to data driven, P

* Move RGBLight animations to data driven, Q

* Move RGBLight animations to data driven, R

* Move RGBLight animations to data driven, S

* Move RGBLight animations to data driven, T

* Move RGBLight animations to data driven, U

* Move RGBLight animations to data driven, V

* Move RGBLight animations to data driven, W

* Move RGBLight animations to data driven, X

* Move RGBLight animations to data driven, Y

* Move RGBLight animations to data driven, Z

* Fix incorrect placement

* Fix build failures and mismatches

* converter/ibm_terminal: Fix F0_BREAK state transition (qmk#21824)

* Remove `led_matrix.hue_steps` and `led_matrix.sat_steps` from schema (qmk#21827)

* Add "apm32-dfu" in keyboard.jsonschema (qmk#21842)

* Corrected duration example, should be number not string (qmk#21839)

* Rework info.json reference (qmk#21324)

* Rework info.json reference

* Apply suggestions from code review

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

* Update backlight.pins description

* Add rgblight.driver and lowercase other driver names

* Remove `split.main` and `split.matrix_grid` for now as they are not working yet

---------

Co-authored-by: Sergey Vlasov <sigprof@gmail.com>

* Revert  changes to ChibiOS Suspend Code (qmk#21830)

* Partially revert qmk#19780

* Finish

* Get teensy 3.5/3.6 board files too

* fix lint issue

* Revert "[Bug] Restore usb suspend wakeup delay (qmk#21676)"

This reverts commit e8e989f.

* Apply suggestions from code review

Co-authored-by: Joel Challis <git@zvecr.com>

---------

Co-authored-by: Joel Challis <git@zvecr.com>

* Add *_MATRIX_LED_COUNT generation (qmk#21110)

* Unicode, Unicodemap and UCIS refactor (qmk#21659)

* Clean up Unicode API usage in user keymaps (qmk#21849)

* Breaking changes changelog, 2023q3 version (qmk#21848)

Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: honorless <86894501+lesshonor@users.noreply.github.com>

* Remove develop notice.

* Fix compilation of dynamic_keymap.c without VIA (qmk#21858)

* fix 60_hhkb ASCII diagram (qmk#21813)

* chore(ferris/test): visually format keymap (qmk#21851)

... and set all keys to printable characters (as described in the
keymap's readme)

* fix 60_jis keymap.c (qmk#21820)

* Fix invalid encoder_map declaration (qmk#21868)

* Update keymap.c to add encoder (qmk#21469)

* Update keymap.c to add encoder

* Fix build

---------

Co-authored-by: zvecr <git@zvecr.com>

* doio/kb16: Added timeout option for OLED boot logo. (qmk#21823)

* Revert "fix 60_hhkb ASCII diagram (qmk#21813)" (qmk#21869)

This reverts commit af2d6ea.

* CannonKeys Meetup Pad 2023 (qmk#21806)

Co-authored-by: Ryan <fauxpark@gmail.com>

* [keyboard] add sweeq, a ferris/sweep variant with diodes (qmk#21597)

* Update macOS install script (qmk#21854)

* Abko AK84BT Layout Touch-Up (qmk#21876)

* [refactor] rename LAYOUT_75_ansi to LAYOUT

* [enhancement] touch-up layout

* AH Haven65 Community Layout support (qmk#21880)

* [refactor] rename LAYOUT to LAYOUT_65_ansi_blocker

* [enhancement] enable Community Layout support

* nullbitsco/snap: fix broken keymaps (qmk#21877)

* chore: ignore virtual environment directory (qmk#20905)

* Add 1upkeyboards Super16v3 (qmk#21665)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [keyboard] add redragon/k667 (qmk#21417)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: syc <squall_sha@163.com>

* Add M6-C Keyboard Firmware (qmk#21852)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Wolf <contact@vwolf.be>

* Added kiserdesigns keyboard folder and Madeline keyboard (qmk#21857)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* redragon/k667: Remove 2 layer VIA restriction (qmk#21889)

* AH Haven80 Community Layout support (qmk#21885)

* [enhancement] correct layout data

* [refactor] rename LAYOUT to LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] enable Community Layout support

* Haven80 Solder: add LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan

[enhancement]

* Haven80 Solder: extend Community Layout support

[enhancement]

* ANAVI Macro Pad 12: rename LAYOUT to LAYOUT_ortho_4x3 (qmk#21886)

[refactor]

* Chosfox CF81: correct layout data (qmk#21902)

* Auto-label data-driven efforts (qmk#21900)

* CannonKeys Bastion75 Layout Additions (qmk#21899)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_ansi_blocker_split_bs

* [enhancement] add LAYOUT_ansi_blocker

* [enhancement] add LAYOUT_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_ansi_blocker_tsangan

* [enhancement] add LAYOUT_iso_blocker_split_bs

* [enhancement] add LAYOUT_iso_blocker

* [enhancement] add LAYOUT_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_iso_blocker_tsangan

* CannonKeys Bastion60 Layout Additions (qmk#21887)

* [bugfix] correct LAYOUT_60_iso_tsangan key order

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_60_tsangan_hhkb

* [enhancement] add LAYOUT_60_ansi_tsangan

* [enhancement] add LAYOUT_60_iso

* [enhancement] add LAYOUT_60_iso_split_bs_rshift

* [enhancement] add LAYOUT_60_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_60_hhkb

* [enhancement] extend Community Layout support

* CannonKeys Bastion65 Layout Additions (qmk#21888)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_65_ansi_blocker_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan

* [enhancement] add LAYOUT_65_iso_blocker_split_bs

* [enhancement] add LAYOUT_65_iso_blocker

* [enhancement] add LAYOUT_65_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_iso_blocker_tsangan

* [enhancement] enable Community Layout support

* CannonKeys BastionTKL Layout Additions (qmk#21901)

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_tkl_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_ansi

* [enhancement] correct LAYOUT_tkl_iso key order

* [enhancement] add LAYOUT_tkl_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan

* [enhancement] add LAYOUT_tkl_f13_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan

* [enhancement] extend Community Layout support

* Bump actions/checkout from 3 to 4 (qmk#21907)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>

* GMMK2 65% ISO: Correct layout data (qmk#21925)

Correct key sizes/positioning on the right side of the board.

* [Docs] Improve contrast for warnings in dark mode (qmk#21928)

* GMMK2 96% ANSI: Correct layout data (qmk#21937)

[enhancement]

* Cipulot EC Theca Community Layout Support (qmk#21913)

* Alias `LAYOUT_all` as `LAYOUT_tkl_ansi`

The data for `LAYOUT_all` and `LAYOUT_tkl_ansi` is identical, so alias
the former to the latter to reduce redundancy.

[refactor]

* Rename `LAYOUT_tkl_ansi_tsangan_wkl` to `LAYOUT_tkl_ansi_wkl`

[refactor]

* Enable Community Layout support

[enhancement]

* customMK EVO70 R2 Layout Additions (qmk#21916)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct layout data

Reduce the gap between the encoder/macro section and the alphanumeric
section by 0.25u.

[enhancement]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Fix redundant `layout_aliases` keys

per dunk2k

[bugfix]

* [Keyboard] Add Binepad Pixie (qmk#21524)

* Add Binepad Pixie

* Post waffle87 and drashna review recommendations applied

* Post-drashna code review suggestions applied

Co-authored-by: Drashna Jaelre <drashna@live.com>

* post zvecr review

---------

Co-authored-by: Drashna Jaelre <drashna@live.com>

* dnworks FRLTKL Community Layout support (qmk#21922)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Repair malformed links in keyboard README files (qmk#21969)

* Remove oversize binaries (qmk#21976)

This stops a situation where a user could end up flashing oversize firmware soft bricking hardware.

* Drewkeys Mercury65 Layout Additions (qmk#21924)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct `LAYOUT_all` data

Correct the order of the Up arrow and End keys.

[enhancement]

* Tidy-up `info.json` formatting

- add line breaks between physical rows
- remove trailing spaces

[style]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Gray Studio Think65 v3 Layout Additions (qmk#21930)

* Add layout/matrix diagram

[docs]

* Format `info.json` as strict JSON

[style]

* Add `LAYOUT_all`

[enhancement]

* Refactor keymaps to use `LAYOUT_all`

Refactor the `default` and `via` keymaps to use the `LAYOUT_all` macro.

- change second Left Shift key to `KC_NUBS`
- insert `KC_NUHS` keycode
- update keycode grid alignment
- remove trailing whitespace

[refactor]

* Rename `LAYOUT_65_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_iso_blocker` to `LAYOUT_iso_blocker`

[refactor]

* Correct `LAYOUT_iso_blocker` matrix data

The Quote key was mapped as [1, 14] instead of [2, 12].

[bugfix]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Handwired ScottoKeebs Configurator Updates (qmk#21990)

* ScottoKeebs ScottoAlp: Correct layout data

[enhancement]

* ScottoKeebs ScottoCMD: Correct layout data

[enhancement]

* ScottoKeebs ScottoErgo: Correct layout data

Add hand separation and vertical stagger to the layout data.

[enhancement]

* ScottoKeebs ScottoFrog: Correct layout data

[enhancement]

* ScottoKeebs ScottoGame: Correct layout data

[enhancement]

* ScottoKeebs ScottoInvader: Correct layout data

[enhancement]

* ScottoKeebs ScottoNum: Correct layout data

[enhancement]

* ScottoKeebs ScottoSplit: Correct layout data

[enhancement]

* ScottoKeebs ScottoStarter: Correct layout data

[enhancement]

* Inland MK47 Community Layout Support (qmk#21998)

* Rename `LAYOUT` to `LAYOUT_planck_mit`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- grid-align keycodes

[style]

* Jaykeeb Sebelas: Standardize Layout Names (qmk#21999)

* Rename `LAYOUT_65_ansi_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_split_bs` to `LAYOUT_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan_split_bs` to `LAYOUT_ansi_blocker_tsangan_split_bs`

[refactor]

* Keebio NyquistPad Layout Updates (qmk#22000)

* Rename `LAYOUT` to `LAYOUT_ortho_5x6`

[refactor]

* Add `LAYOUT_ortho_5x6_1x2u`

[enhancement]

* Kibou Suisei Layout Addition (qmk#22001)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan_wkl`

[enhancement]

* Kopibeng XT87 Layout Additions & Touch-Up (qmk#22002)

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Correct layout data

Correct key positioning on the function row.

[enhancement]

* Friendly-format `info.json`

[style]

* Move ISO Enter to Home Row

Corrects the implementation of the ISO Community Layouts.

[bugfix]

* Update to 'peterfalken' userspace configurations (qmk#21836)

* Krado Industries Promenade Layout Additions (qmk#22014)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Correct key order

[bugfix]

* Add `LAYOUT_2x2u`

[enhancement]

* Add `LAYOUT_2x3u`

[enhancement]

* Add `LAYOUT_6u_space`

[enhancement]

* Add `LAYOUT_7u_space`

[enhancement]

* Touch-up `via` keymap

Update keycode grid alignment to match the `default` keymap.

[style]

* Linworks Fave60a Community Layout Support (qmk#22015)

* Friendly-format `info.json`

[style]

* Correct layout data

[chore]

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_60_tsangan_hhkb`

[refactor]

* Add `LAYOUT_60_ansi_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Maze Studio Jocker 1800 Layout Additions (qmk#22016)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_ansi_split_bs`

[refactor]

* Add `LAYOUT_ansi`

[enhancement]

* Add `LAYOUT_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_ansi_wkl`

[enhancement]

* Mechlovin Zed65 910 Layout Standardization (qmk#22018)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_65_iso_tsangan_split_bs` to `LAYOUT_iso_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan` to `LAYOUT_ansi`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan_split_bs` to `LAYOUT_all`

[refactor]

* Mode M256-WS Community Layout Support (qmk#22020)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker`

[enhancement]

* patch `LAYOUT_65_iso_blocker_split_bs`

* patch `LAYOUT_65_iso_blocker`

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Mode M256-WH Community Layout Support (qmk#22019)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* MonsGeek M1: Correct layout data (qmk#22026)

Apply vertical offset to the arrow keys.

[chore]

* `qmk format-json`: Add an in-place mode to format json command (qmk#21610)

* QVEX Tech Lynepad2 Layout Update (qmk#22030)

* Add layout/matrix diagram

[docs]

* Update layout data

Update layout data to disambiguate the key/joystick/thumbpad functions
in Configurator.

[chore]

* OwLab Jelly Evolv Solder Layout Additions (qmk#22029)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Nix Studio Lilith Layout Additions (qmk#22028)

* Add layout/matrix diagram

[docs]

* Sort keys in `info.json`

[style]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Extend Community Layout support

[enhancement]

* Neson Design Nico Layout Additions (qmk#22027)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Touch-up keymaps

- grid-align keycodes
- use four-space indent
- use QMK-native keycode aliases

[refactor]

* Update `via` keymap

Update the `via` keymaps to have the same key assignments as the
`default` keymap, which is more fleshed out.

[chore]

* [Keyboard] Add splitkb.com's Aurora Helix (qmk#21871)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* [Keyboard] add 1upkeyboards 1upslider8 (qmk#21546)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Adding Treasure TYPE-9 series III (qmk#21748)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Raindrop Layout Updates (qmk#22032)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_all` to `LAYOUT_64_ansi_split_bs`

[refactor]

* Add `LAYOUT_60_ansi_split_bs_rshift`

[enhancement]

* Rico Phoenix Project No. 1 Layout Additions (qmk#22035)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_rwkl`

[enhancement]

* Add `LAYOUT_65_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_wkl`

[enhancement]

* Add `LAYOUT_65_iso_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_rwkl`

[enhancement]

* Add `LAYOUT_65_iso_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_wkl`

[enhancement]

* RuckerMachine RM Fullsize Layout Additions (qmk#22036)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_fullsize_108_ansi`

[enhancement]

* Add `LAYOUT_fullsize_108_ansi_tsangan`

[enhancement]

* Sho Studios ARC Layout Addition (qmk#22037)

* Add layout/matrix diagram

[docs]

* Format `info.json`

Apply four-space indent.

[style]

* Add `LAYOUT_ansi_split_bs`

[enhancement]

* Move Digitizer to "Software Features" (qmk#22031)

* Add missing gpio and chibios defs to uart.h (qmk#22033)

* Fix paragon encoder pinout for soldered version (qmk#22043)

* geistmaschine/macropod: fix issues waking up after suspend on apple devices (qmk#22023)

* Add all RGB Matrix Animations to city42 (qmk#21992)

* Viktus Styrka Topre Layout Standardization and Touch-Up (qmk#22044)

* Add layout/matrix diagram

[docs]

* Alias `LAYOUT_all` to `LAYOUT_split_6u`

`LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
and sequence, so implement the former as an alias.

[refactor]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[chore]

* Friendly-format `info.json`

[style]

* Correct layout data

Correct key sizes/positioning on the bottom row.

[chore]

* Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

[refactor]

* Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[refactor]

* Wolf Neely65 Touch-Up (qmk#22045)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[refactor]

* Fix keymaps

Fix keycodes being assigned out of order with respect to `info.json`.

- move XT function keys to left side
- move keycodes for position [2, 14] from Home Row to Number Row

[bugfix]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

[enhancement]

* Wolf Silhouette Community Layout Support (qmk#22052)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Wolf Ziggurat Layout Additions (qmk#22053)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan`

[enhancement]

* Adding support for the Pteron56 (PCB) keyboard (qmk#21731)

* Add missing gpio include to ps2 vendor (qmk#22063)

* [Keyboard] Add riot pad (qmk#22060)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* DZTech Pluto Community Layout support (qmk#22069)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

- apply four-space indent
- sort JSON keys in layout objects

[style]

* Correct `LAYOUT_all` data

Correct key sizes/positions of:

- ANSI Backslash [1, 13]
- ANSI Enter [1, 14]
- Fn [3, 13]

[chore]

* Correct `LAYOUT_iso` data

Correct position of Fn key [3, 13].

[chore]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

Update keycode grid alignment.

[style]

* Ubest VN Community Layout Support (qmk#22070)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi`

[enhancement]

* Add `LAYOUT_65_iso_split_bs`

[enhancement]

* Add `LAYOUT_65_iso`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- apply four-space indent
- grid-align keycodes

[style]

* Add OLED logo DP3000 macropad (qmk#21936)

* SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (qmk#22081)

* Alchemist Keyboards OGRN Layout Addition (qmk#22080)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Add `LAYOUT_ortho_5x4`

[enhancement]

* Touch-up keymaps

- update grid-alignment (layer-to-layer consistency)
- fix box drawings

[style]

* Extend Community Layout support

Add `ortho_5x4` to supported Community Layouts.

[enhancement]

* amend 96_(ansi|iso) community_layouts in keyboards/ (qmk#22066)

* Restrict "feature" and "animation" keys (qmk#21895)

* [Keyboard] Momokai Aurora (qmk#20419)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* [Keyboard] add Quokka keyboard (qmk#20979)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* apply 66_(ansi|iso) to keyboards (qmk#21834)

* Add ScottoSlant Keyboard (qmk#20942)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMouse Handwired Macropad (qmk#21074)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>

* Add ScottoFly Keyboard (qmk#20939)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMacrodeck Macropad (qmk#20946)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoLong Keyboard (qmk#20938)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add funtions of Encoder and VIA for redragon/k667 (qmk#21917)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: syc <squall_sha@163.com>

* [Keyboard] Add rpk-001 keyboard (qmk#21042)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>

* amend 68_(ansi|iso) community_layouts in keyboards/ (qmk#21835)

* [Keyboard] Add QCK-75 (qmk#21180)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Quarkeys Studio Z67 Solder Community Layout Support (qmk#22095)

* Quarkeys Studio Z67 Hotswap Community Layout Support (qmk#22096)

* kimiko: mirror encoder pins between halves (qmk#21728)

* Keychron q9 plus (qmk#21399)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* add dz60v2 keyboard (qmk#21862)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add odinmini layout (qmk#21983)

Co-authored-by: Ryan <fauxpark@gmail.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Rico <95101980+mymakercorner@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: QMK Bot <hello@qmk.fm>
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Nebuleon <2391500+Nebuleon@users.noreply.github.com>
Co-authored-by: harveysch <126267034+harveysch@users.noreply.github.com>
Co-authored-by: Thomas Baart <mail@thomasbaart.nl>
Co-authored-by: leep-frog <66687468+leep-frog@users.noreply.github.com>
Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Stefan Kerkmann <karlk90@pm.me>
Co-authored-by: era <73109780+eerraa@users.noreply.github.com>
Co-authored-by: Its TLeo <134472524+ItsTLeo@users.noreply.github.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Álvaro Cortés <alvarocortesdevesa@gmail.com>
Co-authored-by: Álvaro Cortés Devesa <alvarocortesdevesa@Alvaros-MacBook-Pro.local>
Co-authored-by: Leon Anavi <leon@anavi.org>
Co-authored-by: lalalademaxiya1 <66767061+lalalademaxiya1@users.noreply.github.com>
Co-authored-by: 3geek14 <nerd.of.pi@gmail.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Synth and Keys <117340582+Synth-and-Keys@users.noreply.github.com>
Co-authored-by: SmollChungus <38044391+SmollChungus@users.noreply.github.com>
Co-authored-by: Hugh Rawlinson <hughrawlinson@users.noreply.github.com>
Co-authored-by: gskygithub <106651989+gskygithub@users.noreply.github.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>
Co-authored-by: Brian McKenna <brian@brianmckenna.org>
Co-authored-by: spbgzh <72414103+spbgzh@users.noreply.github.com>
Co-authored-by: jonylee@hfd <108282809+jonylee1986@users.noreply.github.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
Co-authored-by: HorrorTroll <sonicvipduc@gmail.com>
Co-authored-by: alvicstep <alvicstep@gmail.com>
Co-authored-by: mechlovin <57231893+mechlovin@users.noreply.github.com>
Co-authored-by: Richard Baptist <rpbaptist@users.noreply.github.com>
Co-authored-by: Richard Baptist <richard@remote.com>
Co-authored-by: Andre Brait <andrebrait@gmail.com>
Co-authored-by: Janat Taerakul <janat.taerakul@gmail.com>
Co-authored-by: Janat Taerakul <jtaerakul@indeed.com>
Co-authored-by: Yizhen Liu <62583086+edwardslau@users.noreply.github.com>
Co-authored-by: Dane Lipscombe <danelipscombe@gmail.com>
Co-authored-by: Wilfried JEANNIARD <willou.com@gmail.com>
Co-authored-by: Joe Scotto <8194147+joe-scotto@users.noreply.github.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Powered by Porridge <11315349+PoweredByPorridge@users.noreply.github.com>
Co-authored-by: squigglybob <squigglybob@users.noreply.github.com>
Co-authored-by: studiokestra <74369928+studiokestra@users.noreply.github.com>
Co-authored-by: Pangorin <68218885+Pangorin@users.noreply.github.com>
Co-authored-by: owlab2 <64054049+lizhenmingdirk@users.noreply.github.com>
Co-authored-by: DUILCHOI <48977039+duilchoi@users.noreply.github.com>
Co-authored-by: Controller Works <103382872+controller-works@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
Co-authored-by: patrickxiong <patrick.xiong@gmail.com>
Co-authored-by: HiryKun <1951086367@qq.com>
Co-authored-by: Andy Smith <andysmithfal@users.noreply.github.com>
Co-authored-by: Adam Price <komidore64@gmail.com>
Co-authored-by: Laneware <68452738+Laneware@users.noreply.github.com>
Co-authored-by: Lasse Luttermann <lasse.luttermann@gmail.com>
Co-authored-by: Andrew Kannan <andrew.kannan@klaviyo.com>
Co-authored-by: Idan Kamara <i@idank.me>
Co-authored-by: Jay Greco <jayv.greco@gmail.com>
Co-authored-by: Frank Ebel <git@ebel.page>
Co-authored-by: ziptyze <mwcordier@gmail.com>
Co-authored-by: temp4gh <temp4bbs@163.com>
Co-authored-by: syc <squall_sha@163.com>
Co-authored-by: Wolf Van Herreweghe <wolfvanh@gmail.com>
Co-authored-by: Wolf <contact@vwolf.be>
Co-authored-by: NCKiser <37519411+NCKiser@users.noreply.github.com>
Co-authored-by: Vino Rodrigues <366673+vinorodrigues@users.noreply.github.com>
Co-authored-by: Falco Gerritsjans <FalcoG@users.noreply.github.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Luis Garcia <luis@bitjester.com>
Co-authored-by: TreasureTypes <73436366+TreasureTypes@users.noreply.github.com>
Co-authored-by: Constantine Karos <36245370+karosc@users.noreply.github.com>
Co-authored-by: Yak <68242321+yakMM@users.noreply.github.com>
Co-authored-by: Moritz Plattner <moritz.plattner@gmx.net>
Co-authored-by: Filip Sund <filip.sund@gmail.com>
Co-authored-by: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Co-authored-by: ShandonCodes <shandon@shandon.codes>
Co-authored-by: Deddia Permana <deddiapermana97@gmail.com>
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Dan Ford <dan-github2@dlford.co>
Co-authored-by: Poring <97579443+PoringH@users.noreply.github.com>
Co-authored-by: Charles Strahan <charles@cstrahan.com>
Co-authored-by: dztech <moyi4681@users.noreply.github.com>
finrod09 pushed a commit to finrod09/qmk_firmware that referenced this pull request Sep 24, 2023
thismarvin pushed a commit to thismarvin/qmk_firmware that referenced this pull request Sep 27, 2023
akeep pushed a commit to akeep/qmk_firmware that referenced this pull request Oct 2, 2023
skorpenit pushed a commit to skorpenit/qmk_firmware that referenced this pull request Oct 3, 2023
csolje pushed a commit to csolje/qmk_firmware that referenced this pull request Oct 21, 2023
grasegger pushed a commit to grasegger/qmk_firmware that referenced this pull request Oct 26, 2023
jussaw added a commit to jussaw/qmk_firmware that referenced this pull request Nov 3, 2023
* Viktus Styrka Topre Layout Standardization and Touch-Up (qmk#22044)

* Add layout/matrix diagram

[docs]

* Alias `LAYOUT_all` to `LAYOUT_split_6u`

`LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
and sequence, so implement the former as an alias.

[refactor]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[chore]

* Friendly-format `info.json`

[style]

* Correct layout data

Correct key sizes/positioning on the bottom row.

[chore]

* Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

[refactor]

* Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[refactor]

* Wolf Neely65 Touch-Up (qmk#22045)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[refactor]

* Fix keymaps

Fix keycodes being assigned out of order with respect to `info.json`.

- move XT function keys to left side
- move keycodes for position [2, 14] from Home Row to Number Row

[bugfix]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

[enhancement]

* Wolf Silhouette Community Layout Support (qmk#22052)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Wolf Ziggurat Layout Additions (qmk#22053)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan`

[enhancement]

* Adding support for the Pteron56 (PCB) keyboard (qmk#21731)

* Add missing gpio include to ps2 vendor (qmk#22063)

* [Keyboard] Add riot pad (qmk#22060)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* DZTech Pluto Community Layout support (qmk#22069)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

- apply four-space indent
- sort JSON keys in layout objects

[style]

* Correct `LAYOUT_all` data

Correct key sizes/positions of:

- ANSI Backslash [1, 13]
- ANSI Enter [1, 14]
- Fn [3, 13]

[chore]

* Correct `LAYOUT_iso` data

Correct position of Fn key [3, 13].

[chore]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

Update keycode grid alignment.

[style]

* Ubest VN Community Layout Support (qmk#22070)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi`

[enhancement]

* Add `LAYOUT_65_iso_split_bs`

[enhancement]

* Add `LAYOUT_65_iso`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- apply four-space indent
- grid-align keycodes

[style]

* Add OLED logo DP3000 macropad (qmk#21936)

* SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (qmk#22081)

* Alchemist Keyboards OGRN Layout Addition (qmk#22080)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Add `LAYOUT_ortho_5x4`

[enhancement]

* Touch-up keymaps

- update grid-alignment (layer-to-layer consistency)
- fix box drawings

[style]

* Extend Community Layout support

Add `ortho_5x4` to supported Community Layouts.

[enhancement]

* amend 96_(ansi|iso) community_layouts in keyboards/ (qmk#22066)

* Restrict "feature" and "animation" keys (qmk#21895)

* [Keyboard] Momokai Aurora (qmk#20419)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* [Keyboard] add Quokka keyboard (qmk#20979)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* apply 66_(ansi|iso) to keyboards (qmk#21834)

* Add ScottoSlant Keyboard (qmk#20942)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMouse Handwired Macropad (qmk#21074)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>

* Add ScottoFly Keyboard (qmk#20939)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMacrodeck Macropad (qmk#20946)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoLong Keyboard (qmk#20938)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add funtions of Encoder and VIA for redragon/k667 (qmk#21917)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: syc <squall_sha@163.com>

* [Keyboard] Add rpk-001 keyboard (qmk#21042)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>

* amend 68_(ansi|iso) community_layouts in keyboards/ (qmk#21835)

* [Keyboard] Add QCK-75 (qmk#21180)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Quarkeys Studio Z67 Solder Community Layout Support (qmk#22095)

* Quarkeys Studio Z67 Hotswap Community Layout Support (qmk#22096)

* kimiko: mirror encoder pins between halves (qmk#21728)

* Keychron q9 plus (qmk#21399)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* add dz60v2 keyboard (qmk#21862)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add odinmini layout (qmk#21983)

Co-authored-by: Ryan <fauxpark@gmail.com>

* keymaps: Fix hacker_dvorak build. (qmk#22102)

* Allow for `qmk compile -kb all`. (qmk#22022)

* Royal Kludge RK G68 Community Layout Support (qmk#22103)

* Rename `LAYOUT` to `LAYOUT_65_ansi`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- fix keycode grid alignment

[style]

* Touch-up readme

- link to maintainer's GitHub profile
- specify codebase is for RGB version of RK G68
- update Hardware Availability links

[docs]

* Added OLED SSD1306 128x64 to the verified working table (qmk#22112)

* Shoc: physically arrange keymaps/layout macro (qmk#22100)

* Fix up `qmk mass-compile` makefile indenting. (qmk#22115)

* Add 'dactyl_tracer' keyboard (qmk#20993)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add subrezon/lancer keyboard (qmk#20792)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>

* [Keyboard] Add SIRIND Klein (qmk#21951)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* GMMK2 96% ISO: Correct layout data (qmk#22101)

* Add reminder about format-json to PR Checklist (qmk#22055)

* Add Jank RP2040 Dactyl (qmk#21973)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Enable RGB_TEST animation on riot_pad (qmk#22118)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* YMDK Melody96 Matrix Touch-Up (qmk#22113)

* Correct layout/matrix diagram

Correct swapped designations for ANSI Backslash and ANSI Enter keys.

[docs]

* Correct matrix data

Correct the matrix data for:

  - `LAYOUT_all`
  - `LAYOUT_96_ansi`
  - `LAYOUT_96_ansi_splitbs`

which all had the matrix positions for ANSI Backslash and ANSI Enter swapped.

[bugfix]

* Implement `LAYOUT_hotswap` directly

Implement `LAYOUT_hotswap` as its own layout, instead of aliasing it to
`LAYOUT_96_ansi`.

[bugfix]

* Specify primary support for Soldered PCBs

Current version of codebase primarily supports Soldered PCBs.

[enhancement] [docs]

* Update feature_rgblight.md (qmk#21483)

* Revert "Update feature_rgblight.md" (qmk#22132)

* included keyboard.h. To use is_keyboard_master with a split with an i… (qmk#21571)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>

* Added Wyvern Hotswap by BredWorks (qmk#21141)

Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>

* Fix combo_ref_from_layer respect different default layer [qmk#21780] (qmk#21781)

* Fix variable misspelling (qmk#21774)

* amend split_* community_layouts in keyboards (qmk#21847)

* amend 75_(ansi|iso) community_layouts in keyboards/ (qmk#21837)

* Add is0gr to QMK (qmk#22024)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>

* Document the RP2040-specific PS/2 implementation (qmk#22079)

Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>

* Bump tj-actions/changed-files from 38 to 39 (qmk#21923)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Palmetto PCB (qmk#21955)

* Add zoom98 (qmk#22062)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* Added more rgb effects for rpk-001 keyboard (qmk#22120)

* Fix typo in oled_driver (qmk#22134)

betwen -> between

* Fix entry into bootloader for STM32G431. (qmk#22138)

* Fix doc for programmable buttons. (qmk#22136)

Co-authored-by: Yanfei Guo <yguo@anl.gov>

* rastersoft/minitkl layout corrections (qmk#22130)

* [Keyboard] Add spankbd, 3x5+3 split keyboard (qmk#22003)

* Initial support for CSTM80 (qmk#22137)

* Add support for YMD75 V4 - ISO (qmk#22128)

* Drop V2 production updates (qmk#22147)

* Allow inline generation of compile_commands.json while doing a `qmk compile`, using `--compiledb` (qmk#21549)

* Allow for `qmk mass-compile all:<keymap>` (qmk#22116)

Co-authored-by: Joel Challis <git@zvecr.com>

* HnahKB Freyr Layout Additions (qmk#22150)

* Add layout/matrix diagram

[docs]

* Add `LAYOUT_tkl_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Extend Community Layout support

Add as supported layouts:

- `tkl_ansi_split_bs_rshift`
- `tkl_ansi_tsangan`
- `tkl_ansi_tsangan_split_bs_rshift`
- `tkl_iso_split_bs_rshift`
- `tkl_iso_tsangan`
- `tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Rura66 Layout Data (qmk#22155)

* Friendly-format `info.json`

[style]

* Update layout data

- separate keyboard halves
- add vertical stagger

[refactor]

* add linworks fave60 (qmk#20796)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add KB12 keyboard (qmk#21605)

Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* 4pplet Eagle/Viper Rep Rev.A Layout Additions II (qmk#22161)

* teleport/native: switch from wrongly used user to kb function, boost matrix scan rate (qmk#21172)

* enable LTO

* change from _user to _kb function

* switch matrix io delay to nops, add opt=3 for higher scan rates

* disable console which was enabled for testing but collides with endpoint used by VIA

* switched from opt=3 to opt=2

* Update keyboards/teleport/native/native.c

Co-authored-by: Joel Challis <git@zvecr.com>

* slightly upped debounce, as some testers had chatter with async + default debounce

---------

Co-authored-by: Joel Challis <git@zvecr.com>

* Add Brutalv2 60 Keyboard (qmk#22094)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* keyboards: Add support for Sofle Choc (qmk#16736)

Co-developed-by: Brian Low <github@brianlow.com>
Co-developed-by: duese <duese@users.noreply.github.com>

Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>

* Remove rosetta instructions for Apple Silicon (qmk#22174)

* Bastard Keyboards: Add support for Dilemma Max (4x6_4) (qmk#22064)

* tentatively add dilemma 4x6_4 WIP untested 
PR by Casuanoob.

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Miscellaneous fixes for recently merged keyboards (qmk#22179)

* Add Soulstone keyboard (qmk#22093)

* [Keyboard] Add SyenaKeyboards (qmk#22168)

Co-authored-by: Syenasweta <syenasweta@gmail.com>

* Fix minimum python version references (qmk#22191)

* Added /handwired/ziyoulang_k3_mod (qmk#21965)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add the Split67 keyboard PCB (qmk#22107)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Monstargear XO87 Soldered: correct layout data (qmk#22199)

Correct key positions on the bottom row for `LAYOUT_tkl_ansi_tsangan`.

[chore]

* Add Acheron Themis and its variants (qmk#22142)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add keyboard Projectd/75/Projectd_75_ansi (qmk#21628)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* [Keyboard] Add SP-111 v2 keyboard (qmk#21652)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add qwertyqop60hs (qmk#22164)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added 3dp660 oled keyboard (qmk#20591)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: xia0 <xiao@morgan.net.au>

* Add Wave keyboard (qmk#22054)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Keychron Q1 Version 2 (qmk#20416)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>

* Add Line TKL keyboard (qmk#22172)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add printedpad keyboard (qmk#21202)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add `qmk ci-validate-aliases` (qmk#22205)

* Move orphaned Yugo-M files (qmk#22211)

Moves files that were left behind by qmk#14996.

[bugfix]

* Klein_HS PCB support (qmk#22203)

* Update vid for printedpad (qmk#22215)

* Adding BriianPowell Discipline Keyboard Layout Updates (qmk#21474)

* Flag vial keymaps in 'qmk lint' (qmk#22227)

* Fix build error when Automatic Mouse Layer is enabled (qmk#22229)

* [Keyboard] vinhcatba/uncertainty (qmk#21142)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* add license to header files, update ws2812 driver and DI_PIN to info.json

* resovle PR suggestion for config.h, halconf.h, mcuconf.h

* update info.json regarding PR comment

* update bongo.h regarding PR comment

* add oled mode toggle

* update readme.md, rules.mk regarding PR comment

* add submodule update

* move oled handle to keyboard level

* Update keyboards/vinhcatba/uncertainty/uncertainty.c

forgot user-level proces_record

* now using bongo as source file

* Apply suggestions from code review

remove default value codes

* move WPM_ENABLE and ENCODER_MAP_ENABLE to keymap level

* Apply suggestions from code review

* Apply suggestions from code review

* Update keyboards/vinhcatba/uncertainty/config.h

* [Keyboard] Split-Cloud Handwired (qmk#21327)

* Added new handwired, the Split-Cloud

* Minor changes to make clang-format happy

* Alligned files with project standard.

Trimmed midi out of the default layout, modified the readme, and removed unnecessary files.

* Simplified default keymap further, changes to info.json

* Moved image to imgur, simplified, and removed the unneeded rules.mk file

* Update keyboards/handwired/split_cloud/readme.md

Changed image in readme to Huge Thumbnail instead of Original.

* Removed unneeded tri layer custom keycodes

Now using the built-in functionality!

* Update keyboards/handwired/split_cloud/readme.md

Accidentally reverted this when making other changes

* Fix typo in `docs/feature_tri_layer.md` (qmk#22232)

`Stes` -> `Sets`

* [Keyboard] HorrorTroll Nyx (qmk#21143)

* Added support keyboard Nyx

* Resolved zvarc suggested and lint error

* Delete FORCE_NKRO due to problem with BIOS on mainboard

* Resolved dunk2k suggested and limit more brightness, disable some RGB Effect

* Resolved drashna suggested

* Delete flower blooming effect and move to rev1 folder

* Yampad add missing includes for CONVERT_TO (qmk#22237)

* Yampad add missing includes for CONVERT_TO (qmk#22237)

* Fix old usage of UNICODE_MODE_MAC (qmk#22238)

* [Keyboard] Add MIIIW BlackIO83 (qmk#21970)

* Add MIIIW BlackIO83

* Improve the code

* Updated instructions for entering the bootloader

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/config.h

* Update config.h

* [Keyboard] MonsGeek M3 (qmk#20542)

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* updata rules.mk

* add readme.md

* delete monsgeek\m3\rgb_matrix_kb.inc

* add DISABLE_M3_KEYCODES

* user_config --> kb_config

* Move code to info.json,and removed redundant features

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update readme.md

* Update keyboards/monsgeek/m3/config.h

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/readme.md

* Update m3.c

* Update m3.c

* Update info.json

* Update keymap.c

* Update keymap.c

* Update config.h

* Update keyboards/monsgeek/m3/readme.md

* Update keyboards/monsgeek/m3/rules.mk

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update m3.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/m3.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* add missing gpio include for pointing motion pin (qmk#22246)

* [Keyboard] Hineybush H101 (qmk#22186)

* initial h101 commit

* update keymap and add via support

* update doc stuff

* readme typo

* updates

* add indicator LEDs, needs testing

* update readme

* update USB VID/PID to match VIA json

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/default/keymap.c

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/via/keymap.c

* updates from PR comments

* updates per PR comments

* idk why the folder is acting weird

* maybe this will fix it

* update to hopefully fix everything weird

* keycode fixes

* keymap updates

* add 60_(ansi|iso)_wkl* community layouts (qmk#21811)

* add 60_(ansi|iso)_tsangan_wkl* layouts

* Update keymap.c

* `tsangan_wkl` to `wkl`

* update info.json

* split backspace changes

* Apply suggestions from code review

* Keyboard change blu/vimclutch to hardware revision B. (qmk#22247)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add Ratio60 PCB (qmk#21609)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>

* Add 62 key Dactyl Manuform (qmk#21394)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add `60_iso_tsangan_split_bs_rshift` Community Layout (qmk#21812)

* add 60_(ansi|iso)_tsangan_split_bs_shift layouts

* shift to rshift

* remove 60_ansi_tsangan_split_bs_rshift

* Update layouts/default/60_iso_tsangan_split_bs_rshift/info.json

* Kisakey (qmk#22217)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Reword mention of personal keymaps from PR checklist (qmk#22258)

* Add support for CSTC40 keyboard (qmk#22154)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: lesshonor and waffle87
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: lesshonor
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>

* [Keyboard] Add support for EnviousDesign keyboards (qmk#17544)

* Add support for Envious.Design Keyboards

Add various RP2040 keyboards I've designed.

* Fixed missing newlines at EOF.

* Ran CLANG-FORMAT and sorted out any potential issues.

* Gave keyboards all unique product IDs

* Made requested changes.

* removed all VIAL related code
* sorted out license on all *.h or *.h  files
* removed outdated RESET Keycode

* missed some VIAL bits

* Made suggested changes

* Made Suggested Changes

* missed one file to change.

* Attempted fix of CI issues

* Update .gitmodules

* Revert "Update .gitmodules"

This reverts commit f4bace5.

* hopefully fixed all CI and QMK lint issues

* resolve more CI errors and a couple typos

* fixed last remaining issue as of now

* made requested changes

* further more on suggested change

* Delete README.md

* derpy workaround to change case of readme

* finished up 65M firmware

via does not work, I will investigate another time.

* re-did a lot of 65M firmware bits, also fixed via for this board

* corrected mistake in firmware

* made suggested change to info.json for 65m/60F

* finished 65M non via keymap and re-sorted via keymap

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Apply suggestions from code review

Verified updated Info.json works for aforementioned keyboards,

* Follow-up commit with aforementioned suggested changes

* Apply suggestions from code review

correction to a couple typos pointed out.

* follow-up removed some un-needed Readmes and corrected a mistake in 60F via keymap

* Apply suggestions from code review

* Added images of PCB to each Keyboard README

* Apply suggestions from code review

* Update keyboards/enviousdesign/60f/readme.md

* Added missing aspects of info.json and corrected RGB_DI_PIN to WS2812_DI_PIN in RGB keyboard

* made requested changes

* Update config.h

* used QMK migrate to update info.json

* Apply suggestions from code review

* Update keyboards/enviousdesign/65m/info.json

* renamed named keyboards as suggested and added commission keyboard to repo

* renamed file to hopefully please lint

* renamed things to be all lower case since lint doesn't appear to look for upper case

* updated keymap.c and removed unnecessary file

* fixed readme and a couple other bits

* converted various aspects to json information

* attempt fix for lint error

* fix some issues I overlooked

* Apply suggestions from code review

* moved some folders about as suggested

* Made suggested changes

* Apply suggestions from code review

* removed outdated config.h

* fixed errors in 65M and mini1800

* Apply suggestions from code review

* Update keyboards/enviousdesign/delirium/rev1/info.json

* Update keyboards/enviousdesign/65m/info.json

* Apply suggestions from code review

* [Keyboard] Inland V83P (qmk#21725)

* [Keyboard]add v83p keyboard.

* Update keymap.c

* Update keyboards/inland/v83p/keymaps/via/keymap.c

* Update keyboards/inland/v83p/keymaps/default/keymap.c

* Update keyboards/inland/v83p/config.h

* Update keyboards/inland/v83p/info.json

* Update info.json

* Update keymap.c

* Update keyboards/inland/v83p/mcuconf.h

* Update keyboards/inland/v83p/halconf.h

* Update keyboards/inland/v83p/info.json

* Update keyboards/inland/v83p/v83p.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* Update keyboards/inland/v83p/info.json

* [Keyboard] RPNeko65 by lendunistus (qmk#21747)

* initialise rpneko65, info.json

* force NKRO

* define WS2812 stuff

and capitalise RPNeko65

* use RGBlight, add ANSI to keymap.c

also remove _ADC suffixes from pins

* basic readme

plus making it so the info.json RGB values are actually recognised as integers

* update repository URL

* fix info.json formatting

* caps lock LED implementation

"borrowed" from waffling60

* put RGBLIGHT_ENABLE in json

also remove "pin" from the rgblight option

* add actually correct keymaps

also reformat info.json

* move to designer folder, add image to README

* move keyboard to separate revision folder

and remove erroneous tag from config.h

* remove brightness/hue/saturation steps

* change device version to 1.0

* move quantum.h include to top

* actually, let's try a new image

I also forgot to save the info.json file beforehand
oops

* Remove comma in info.json

* Community layouts in info.json

* Delete rpneko65/readme.md

* Apply suggested changes to readme

* Suggested code changes

* Suggested imgur link

* rename code file

this was the issue all along
sigh

* Correct layer matching this time

* Move Enter in info.json

* README/info.json change

* Another batch of suggestions

* amend alice* community_layouts in keyboards (qmk#21846)

* add alice* to keyboards

* add seigaiha

* additions

* Update info.json

* revert wanderland

* add tgr/alice

* add matrix diagram.md

* [Keyboard] Add Okayu (qmk#22077)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Enable encoder map on navpad1.0 (qmk#22266)

* [Keyboard] jukaie/jk01 (qmk#20573)

* ADD Keyboard

* Resolved requested changes

* update keymap.c file

* resolved requested changes

* updated info.json file

* Updated requested changes

* Delete JK01.h file

* Resolved requested changes

* Delete readme.md

* add rules.mk to default folder

* Upload default/keymap.c

* Add via/keymap.c

* Updated info.Json file

* Change VID in info.json

* Resolved requested changes

* Resolved requested changes.

* Resolved requested changes

* Updated changes

---------

Co-authored-by: gksygithub <gskyGit@gsky.com.tw>

* Fix typo in keychron v6 encoder map enable (qmk#22272)

* Allow for disabling of parallel processing of qmk find and `qmk mass-compile`. (qmk#22160)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fixup symbol sizing listing. (qmk#22307)

* [Keyboard] Add purin (qmk#22306)

* [Keyboard] Add QK100 (qmk#21782)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Remove extra led_matrix_indicators_user call (qmk#22329)

* [Keyboard] Add LGBTKL (qmk#22331)

Co-authored-by: jack <0x6a73@protonmail.com>

* Clarify PIO define is optional in docs. (qmk#22339)

* [Keyboard] Add Kaly42 (qmk#22282)

* Added Kaly/Kaly42 keyboard's minimal files.

* Updated readme.md; New link and improved description text.

* Apply suggestions from code review

Added all suggestions given by @dunk2k

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added community_layouts to info.json.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

---------

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Keyboard] add pisces pcb (qmk#22334)

* [Keyboard] Waffling60 Rev E ANSI Hotswap (qmk#22270)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add darkproject/kd87a_bfg_edition keyboard (qmk#18981)

Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* eason/aeroboard - Modify bootloader (qmk#22286)

* [Keyboard] doksin (qmk#22220)

* [Keyboard] Add Velvet hotswap & solder (qmk#22284)

* Flag more VIAL config options in lint (qmk#22345)

* Removed clueboard link as the website has been parked for some time (qmk#22290)

* [Keyboard] add enter67 keyboard (qmk#22346)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Fix for swapped PID and VID (qmk#22372)

* Add Kindakeyboards Conone65 Via support (qmk#22320)

* [Keyboard] Add TeaQueen (qmk#22352)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add Klein_SD (qmk#22371)

Co-authored-by: Joel Challis <git@zvecr.com>

* boardsource/unicorne - Fixed OLED layers being all set to zero (qmk#22389)

---------

Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Filip Sund <filip.sund@gmail.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Co-authored-by: ShandonCodes <shandon@shandon.codes>
Co-authored-by: Deddia Permana <deddiapermana97@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Dan Ford <dan-github2@dlford.co>
Co-authored-by: Joe Scotto <8194147+joe-scotto@users.noreply.github.com>
Co-authored-by: temp4gh <temp4bbs@163.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: syc <squall_sha@163.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Poring <97579443+PoringH@users.noreply.github.com>
Co-authored-by: Charles Strahan <charles@cstrahan.com>
Co-authored-by: lalalademaxiya1 <66767061+lalalademaxiya1@users.noreply.github.com>
Co-authored-by: dztech <moyi4681@users.noreply.github.com>
Co-authored-by: Apteryks <maxim.cournoyer@gmail.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Ryan Neff <ryan.ray.neff@fluke.com>
Co-authored-by: Daniel Osipishin <88534270+subrezon@users.noreply.github.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>
Co-authored-by: era <73109780+eerraa@users.noreply.github.com>
Co-authored-by: lendunistus <53618962+lendunistus@users.noreply.github.com>
Co-authored-by: Ethan Perry <86326912+wheres-perry@users.noreply.github.com>
Co-authored-by: Tom singleton <Radther@users.noreply.github.com>
Co-authored-by: T.A <83424097+t0kies@users.noreply.github.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>
Co-authored-by: DeskDaily <65656486+DeskDaily@users.noreply.github.com>
Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>
Co-authored-by: Ben Cooper <63478578+bncpr@users.noreply.github.com>
Co-authored-by: plaublin <pl@pakupaku.me>
Co-authored-by: Andrew Kannan <andrew.kannan@gmail.com>
Co-authored-by: Michael Büchler <michael.buechler@posteo.net>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ross Montsinger <rmontsinger@gmail.com>
Co-authored-by: spbgzh <72414103+spbgzh@users.noreply.github.com>
Co-authored-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
Co-authored-by: Yanfei Guo <yanf.guo@gmail.com>
Co-authored-by: Yanfei Guo <yguo@anl.gov>
Co-authored-by: Idan Kamara <i@idank.me>
Co-authored-by: DUILCHOI <48977039+duilchoi@users.noreply.github.com>
Co-authored-by: DOIO2022 <116554792+DOIO2022@users.noreply.github.com>
Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Moritz Plattner <moritz.plattner@gmx.net>
Co-authored-by: Brian Low <brian@brianlow.com>
Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com>
Co-authored-by: Sergey Fedorov <oni.strech@gmail.com>
Co-authored-by: Syenasweta <nshrllh.l.fz@gmail.com>
Co-authored-by: Syenasweta <syenasweta@gmail.com>
Co-authored-by: Coom <1655787+coomstoolbox@users.noreply.github.com>
Co-authored-by: yuezp <49514776+LXF-YZP@users.noreply.github.com>
Co-authored-by: “yuezp” <“yuezpchn@126.com”>
Co-authored-by: Álvaro A. Volpato <alvaro.augusto.volpato@gmail.com>
Co-authored-by: gskygithub <106651989+gskygithub@users.noreply.github.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>
Co-authored-by: thompson-ele <ele.thompson12@gmail.com>
Co-authored-by: leyew <102467346+itsme-zeix@users.noreply.github.com>
Co-authored-by: xia0 <307671+xia0@users.noreply.github.com>
Co-authored-by: xia0 <xiao@morgan.net.au>
Co-authored-by: Etienne Collin <collin.etienne.media@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>
Co-authored-by: studiokestra <74369928+studiokestra@users.noreply.github.com>
Co-authored-by: noahbei <123449614+noahbei@users.noreply.github.com>
Co-authored-by: Brian <brian@powell.place>
Co-authored-by: ikorihn <16367098+ikorihn@users.noreply.github.com>
Co-authored-by: vinhcatba <vinhcatba1@gmail.com>
Co-authored-by: Cloud Chagnon <noob.cloud@gmail.com>
Co-authored-by: HorrorTroll <sonicvipduc@gmail.com>
Co-authored-by: Arthur <37627147+ArthurCyy@users.noreply.github.com>
Co-authored-by: jonylee@hfd <108282809+jonylee1986@users.noreply.github.com>
Co-authored-by: Josh Hinnebusch <joshhinnebusch@gmail.com>
Co-authored-by: Agent Blu, 006 <blu006@ucr.edu>
Co-authored-by: 4pplet <mail@4pplet.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>
Co-authored-by: adam tombleson <rekarnar@gmail.com>
Co-authored-by: kisakey-luxury <143060353+kisakey-luxury@users.noreply.github.com>
Co-authored-by: Wilhelm Schuster <ws@rot13.io>
Co-authored-by: Felipe Curty <felipecrp@gmail.com>
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>
Co-authored-by: EnviousData <Enviousdata@gmail.com>
Co-authored-by: Sắn <59417802+MaiTheSan@users.noreply.github.com>
Co-authored-by: MakotoKurauchi <pluis@me.com>
Co-authored-by: jukaie <131839249+jukaie@users.noreply.github.com>
Co-authored-by: gksygithub <gskyGit@gsky.com.tw>
Co-authored-by: Yonghyuk Choi <42003350+oRE-o@users.noreply.github.com>
Co-authored-by: owlab-git <88034417+owlab-git@users.noreply.github.com>
Co-authored-by: Olivia J <65928618+ojthetiny@users.noreply.github.com>
Co-authored-by: Kael Augusto <45074062+Dwctor@users.noreply.github.com>
Co-authored-by: khchen2004 <148961563+khchen2004@users.noreply.github.com>
Co-authored-by: eason <98533237+EasonQian1@users.noreply.github.com>
Co-authored-by: millet <49581988+milletmilletmilletmilletmilletmilletmil@users.noreply.github.com>
Co-authored-by: Felix Jen <fjen@felixjen.com>
Co-authored-by: Brian Choromanski <BrianChoromanski@gmail.com>
Co-authored-by: Cipulot <40441626+Cipulot@users.noreply.github.com>
Co-authored-by: Matt Chan <5021+mattchan@users.noreply.github.com>
Co-authored-by: gregandcin <gregandcinbusiness@gmail.com>
Co-authored-by: ID64F <54159272+ID64F@users.noreply.github.com>
jussaw added a commit to jussaw/qmk_firmware that referenced this pull request Nov 3, 2023
* Viktus Styrka Topre Layout Standardization and Touch-Up (qmk#22044)

* Add layout/matrix diagram

[docs]

* Alias `LAYOUT_all` to `LAYOUT_split_6u`

`LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
and sequence, so implement the former as an alias.

[refactor]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[chore]

* Friendly-format `info.json`

[style]

* Correct layout data

Correct key sizes/positioning on the bottom row.

[chore]

* Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

[refactor]

* Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[refactor]

* Wolf Neely65 Touch-Up (qmk#22045)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[refactor]

* Fix keymaps

Fix keycodes being assigned out of order with respect to `info.json`.

- move XT function keys to left side
- move keycodes for position [2, 14] from Home Row to Number Row

[bugfix]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

[enhancement]

* Wolf Silhouette Community Layout Support (qmk#22052)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Wolf Ziggurat Layout Additions (qmk#22053)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan`

[enhancement]

* Adding support for the Pteron56 (PCB) keyboard (qmk#21731)

* Add missing gpio include to ps2 vendor (qmk#22063)

* [Keyboard] Add riot pad (qmk#22060)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* DZTech Pluto Community Layout support (qmk#22069)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

- apply four-space indent
- sort JSON keys in layout objects

[style]

* Correct `LAYOUT_all` data

Correct key sizes/positions of:

- ANSI Backslash [1, 13]
- ANSI Enter [1, 14]
- Fn [3, 13]

[chore]

* Correct `LAYOUT_iso` data

Correct position of Fn key [3, 13].

[chore]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

Update keycode grid alignment.

[style]

* Ubest VN Community Layout Support (qmk#22070)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi`

[enhancement]

* Add `LAYOUT_65_iso_split_bs`

[enhancement]

* Add `LAYOUT_65_iso`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- apply four-space indent
- grid-align keycodes

[style]

* Add OLED logo DP3000 macropad (qmk#21936)

* SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (qmk#22081)

* Alchemist Keyboards OGRN Layout Addition (qmk#22080)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Add `LAYOUT_ortho_5x4`

[enhancement]

* Touch-up keymaps

- update grid-alignment (layer-to-layer consistency)
- fix box drawings

[style]

* Extend Community Layout support

Add `ortho_5x4` to supported Community Layouts.

[enhancement]

* amend 96_(ansi|iso) community_layouts in keyboards/ (qmk#22066)

* Restrict "feature" and "animation" keys (qmk#21895)

* [Keyboard] Momokai Aurora (qmk#20419)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* [Keyboard] add Quokka keyboard (qmk#20979)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* apply 66_(ansi|iso) to keyboards (qmk#21834)

* Add ScottoSlant Keyboard (qmk#20942)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMouse Handwired Macropad (qmk#21074)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>

* Add ScottoFly Keyboard (qmk#20939)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMacrodeck Macropad (qmk#20946)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoLong Keyboard (qmk#20938)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add funtions of Encoder and VIA for redragon/k667 (qmk#21917)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: syc <squall_sha@163.com>

* [Keyboard] Add rpk-001 keyboard (qmk#21042)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>

* amend 68_(ansi|iso) community_layouts in keyboards/ (qmk#21835)

* [Keyboard] Add QCK-75 (qmk#21180)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Quarkeys Studio Z67 Solder Community Layout Support (qmk#22095)

* Quarkeys Studio Z67 Hotswap Community Layout Support (qmk#22096)

* kimiko: mirror encoder pins between halves (qmk#21728)

* Keychron q9 plus (qmk#21399)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* add dz60v2 keyboard (qmk#21862)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add odinmini layout (qmk#21983)

Co-authored-by: Ryan <fauxpark@gmail.com>

* keymaps: Fix hacker_dvorak build. (qmk#22102)

* Allow for `qmk compile -kb all`. (qmk#22022)

* Royal Kludge RK G68 Community Layout Support (qmk#22103)

* Rename `LAYOUT` to `LAYOUT_65_ansi`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- fix keycode grid alignment

[style]

* Touch-up readme

- link to maintainer's GitHub profile
- specify codebase is for RGB version of RK G68
- update Hardware Availability links

[docs]

* Added OLED SSD1306 128x64 to the verified working table (qmk#22112)

* Shoc: physically arrange keymaps/layout macro (qmk#22100)

* Fix up `qmk mass-compile` makefile indenting. (qmk#22115)

* Add 'dactyl_tracer' keyboard (qmk#20993)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add subrezon/lancer keyboard (qmk#20792)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>

* [Keyboard] Add SIRIND Klein (qmk#21951)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* GMMK2 96% ISO: Correct layout data (qmk#22101)

* Add reminder about format-json to PR Checklist (qmk#22055)

* Add Jank RP2040 Dactyl (qmk#21973)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Enable RGB_TEST animation on riot_pad (qmk#22118)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* YMDK Melody96 Matrix Touch-Up (qmk#22113)

* Correct layout/matrix diagram

Correct swapped designations for ANSI Backslash and ANSI Enter keys.

[docs]

* Correct matrix data

Correct the matrix data for:

  - `LAYOUT_all`
  - `LAYOUT_96_ansi`
  - `LAYOUT_96_ansi_splitbs`

which all had the matrix positions for ANSI Backslash and ANSI Enter swapped.

[bugfix]

* Implement `LAYOUT_hotswap` directly

Implement `LAYOUT_hotswap` as its own layout, instead of aliasing it to
`LAYOUT_96_ansi`.

[bugfix]

* Specify primary support for Soldered PCBs

Current version of codebase primarily supports Soldered PCBs.

[enhancement] [docs]

* Update feature_rgblight.md (qmk#21483)

* Revert "Update feature_rgblight.md" (qmk#22132)

* included keyboard.h. To use is_keyboard_master with a split with an i… (qmk#21571)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>

* Added Wyvern Hotswap by BredWorks (qmk#21141)

Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>

* Fix combo_ref_from_layer respect different default layer [qmk#21780] (qmk#21781)

* Fix variable misspelling (qmk#21774)

* amend split_* community_layouts in keyboards (qmk#21847)

* amend 75_(ansi|iso) community_layouts in keyboards/ (qmk#21837)

* Add is0gr to QMK (qmk#22024)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>

* Document the RP2040-specific PS/2 implementation (qmk#22079)

Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>

* Bump tj-actions/changed-files from 38 to 39 (qmk#21923)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Palmetto PCB (qmk#21955)

* Add zoom98 (qmk#22062)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* Added more rgb effects for rpk-001 keyboard (qmk#22120)

* Fix typo in oled_driver (qmk#22134)

betwen -> between

* Fix entry into bootloader for STM32G431. (qmk#22138)

* Fix doc for programmable buttons. (qmk#22136)

Co-authored-by: Yanfei Guo <yguo@anl.gov>

* rastersoft/minitkl layout corrections (qmk#22130)

* [Keyboard] Add spankbd, 3x5+3 split keyboard (qmk#22003)

* Initial support for CSTM80 (qmk#22137)

* Add support for YMD75 V4 - ISO (qmk#22128)

* Drop V2 production updates (qmk#22147)

* Allow inline generation of compile_commands.json while doing a `qmk compile`, using `--compiledb` (qmk#21549)

* Allow for `qmk mass-compile all:<keymap>` (qmk#22116)

Co-authored-by: Joel Challis <git@zvecr.com>

* HnahKB Freyr Layout Additions (qmk#22150)

* Add layout/matrix diagram

[docs]

* Add `LAYOUT_tkl_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Extend Community Layout support

Add as supported layouts:

- `tkl_ansi_split_bs_rshift`
- `tkl_ansi_tsangan`
- `tkl_ansi_tsangan_split_bs_rshift`
- `tkl_iso_split_bs_rshift`
- `tkl_iso_tsangan`
- `tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Rura66 Layout Data (qmk#22155)

* Friendly-format `info.json`

[style]

* Update layout data

- separate keyboard halves
- add vertical stagger

[refactor]

* add linworks fave60 (qmk#20796)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add KB12 keyboard (qmk#21605)

Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* 4pplet Eagle/Viper Rep Rev.A Layout Additions II (qmk#22161)

* teleport/native: switch from wrongly used user to kb function, boost matrix scan rate (qmk#21172)

* enable LTO

* change from _user to _kb function

* switch matrix io delay to nops, add opt=3 for higher scan rates

* disable console which was enabled for testing but collides with endpoint used by VIA

* switched from opt=3 to opt=2

* Update keyboards/teleport/native/native.c

Co-authored-by: Joel Challis <git@zvecr.com>

* slightly upped debounce, as some testers had chatter with async + default debounce

---------

Co-authored-by: Joel Challis <git@zvecr.com>

* Add Brutalv2 60 Keyboard (qmk#22094)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* keyboards: Add support for Sofle Choc (qmk#16736)

Co-developed-by: Brian Low <github@brianlow.com>
Co-developed-by: duese <duese@users.noreply.github.com>

Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>

* Remove rosetta instructions for Apple Silicon (qmk#22174)

* Bastard Keyboards: Add support for Dilemma Max (4x6_4) (qmk#22064)

* tentatively add dilemma 4x6_4 WIP untested 
PR by Casuanoob.

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Miscellaneous fixes for recently merged keyboards (qmk#22179)

* Add Soulstone keyboard (qmk#22093)

* [Keyboard] Add SyenaKeyboards (qmk#22168)

Co-authored-by: Syenasweta <syenasweta@gmail.com>

* Fix minimum python version references (qmk#22191)

* Added /handwired/ziyoulang_k3_mod (qmk#21965)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add the Split67 keyboard PCB (qmk#22107)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Monstargear XO87 Soldered: correct layout data (qmk#22199)

Correct key positions on the bottom row for `LAYOUT_tkl_ansi_tsangan`.

[chore]

* Add Acheron Themis and its variants (qmk#22142)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add keyboard Projectd/75/Projectd_75_ansi (qmk#21628)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* [Keyboard] Add SP-111 v2 keyboard (qmk#21652)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add qwertyqop60hs (qmk#22164)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added 3dp660 oled keyboard (qmk#20591)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: xia0 <xiao@morgan.net.au>

* Add Wave keyboard (qmk#22054)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Keychron Q1 Version 2 (qmk#20416)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>

* Add Line TKL keyboard (qmk#22172)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add printedpad keyboard (qmk#21202)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add `qmk ci-validate-aliases` (qmk#22205)

* Move orphaned Yugo-M files (qmk#22211)

Moves files that were left behind by qmk#14996.

[bugfix]

* Klein_HS PCB support (qmk#22203)

* Update vid for printedpad (qmk#22215)

* Adding BriianPowell Discipline Keyboard Layout Updates (qmk#21474)

* Flag vial keymaps in 'qmk lint' (qmk#22227)

* Fix build error when Automatic Mouse Layer is enabled (qmk#22229)

* [Keyboard] vinhcatba/uncertainty (qmk#21142)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* add license to header files, update ws2812 driver and DI_PIN to info.json

* resovle PR suggestion for config.h, halconf.h, mcuconf.h

* update info.json regarding PR comment

* update bongo.h regarding PR comment

* add oled mode toggle

* update readme.md, rules.mk regarding PR comment

* add submodule update

* move oled handle to keyboard level

* Update keyboards/vinhcatba/uncertainty/uncertainty.c

forgot user-level proces_record

* now using bongo as source file

* Apply suggestions from code review

remove default value codes

* move WPM_ENABLE and ENCODER_MAP_ENABLE to keymap level

* Apply suggestions from code review

* Apply suggestions from code review

* Update keyboards/vinhcatba/uncertainty/config.h

* [Keyboard] Split-Cloud Handwired (qmk#21327)

* Added new handwired, the Split-Cloud

* Minor changes to make clang-format happy

* Alligned files with project standard.

Trimmed midi out of the default layout, modified the readme, and removed unnecessary files.

* Simplified default keymap further, changes to info.json

* Moved image to imgur, simplified, and removed the unneeded rules.mk file

* Update keyboards/handwired/split_cloud/readme.md

Changed image in readme to Huge Thumbnail instead of Original.

* Removed unneeded tri layer custom keycodes

Now using the built-in functionality!

* Update keyboards/handwired/split_cloud/readme.md

Accidentally reverted this when making other changes

* Fix typo in `docs/feature_tri_layer.md` (qmk#22232)

`Stes` -> `Sets`

* [Keyboard] HorrorTroll Nyx (qmk#21143)

* Added support keyboard Nyx

* Resolved zvarc suggested and lint error

* Delete FORCE_NKRO due to problem with BIOS on mainboard

* Resolved dunk2k suggested and limit more brightness, disable some RGB Effect

* Resolved drashna suggested

* Delete flower blooming effect and move to rev1 folder

* Yampad add missing includes for CONVERT_TO (qmk#22237)

* Yampad add missing includes for CONVERT_TO (qmk#22237)

* Fix old usage of UNICODE_MODE_MAC (qmk#22238)

* [Keyboard] Add MIIIW BlackIO83 (qmk#21970)

* Add MIIIW BlackIO83

* Improve the code

* Updated instructions for entering the bootloader

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/config.h

* Update config.h

* [Keyboard] MonsGeek M3 (qmk#20542)

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* updata rules.mk

* add readme.md

* delete monsgeek\m3\rgb_matrix_kb.inc

* add DISABLE_M3_KEYCODES

* user_config --> kb_config

* Move code to info.json,and removed redundant features

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update readme.md

* Update keyboards/monsgeek/m3/config.h

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/readme.md

* Update m3.c

* Update m3.c

* Update info.json

* Update keymap.c

* Update keymap.c

* Update config.h

* Update keyboards/monsgeek/m3/readme.md

* Update keyboards/monsgeek/m3/rules.mk

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update m3.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/m3.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* add missing gpio include for pointing motion pin (qmk#22246)

* [Keyboard] Hineybush H101 (qmk#22186)

* initial h101 commit

* update keymap and add via support

* update doc stuff

* readme typo

* updates

* add indicator LEDs, needs testing

* update readme

* update USB VID/PID to match VIA json

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/default/keymap.c

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/via/keymap.c

* updates from PR comments

* updates per PR comments

* idk why the folder is acting weird

* maybe this will fix it

* update to hopefully fix everything weird

* keycode fixes

* keymap updates

* add 60_(ansi|iso)_wkl* community layouts (qmk#21811)

* add 60_(ansi|iso)_tsangan_wkl* layouts

* Update keymap.c

* `tsangan_wkl` to `wkl`

* update info.json

* split backspace changes

* Apply suggestions from code review

* Keyboard change blu/vimclutch to hardware revision B. (qmk#22247)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add Ratio60 PCB (qmk#21609)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>

* Add 62 key Dactyl Manuform (qmk#21394)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add `60_iso_tsangan_split_bs_rshift` Community Layout (qmk#21812)

* add 60_(ansi|iso)_tsangan_split_bs_shift layouts

* shift to rshift

* remove 60_ansi_tsangan_split_bs_rshift

* Update layouts/default/60_iso_tsangan_split_bs_rshift/info.json

* Kisakey (qmk#22217)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Reword mention of personal keymaps from PR checklist (qmk#22258)

* Add support for CSTC40 keyboard (qmk#22154)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: lesshonor and waffle87
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: lesshonor
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>

* [Keyboard] Add support for EnviousDesign keyboards (qmk#17544)

* Add support for Envious.Design Keyboards

Add various RP2040 keyboards I've designed.

* Fixed missing newlines at EOF.

* Ran CLANG-FORMAT and sorted out any potential issues.

* Gave keyboards all unique product IDs

* Made requested changes.

* removed all VIAL related code
* sorted out license on all *.h or *.h  files
* removed outdated RESET Keycode

* missed some VIAL bits

* Made suggested changes

* Made Suggested Changes

* missed one file to change.

* Attempted fix of CI issues

* Update .gitmodules

* Revert "Update .gitmodules"

This reverts commit f4bace5.

* hopefully fixed all CI and QMK lint issues

* resolve more CI errors and a couple typos

* fixed last remaining issue as of now

* made requested changes

* further more on suggested change

* Delete README.md

* derpy workaround to change case of readme

* finished up 65M firmware

via does not work, I will investigate another time.

* re-did a lot of 65M firmware bits, also fixed via for this board

* corrected mistake in firmware

* made suggested change to info.json for 65m/60F

* finished 65M non via keymap and re-sorted via keymap

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Apply suggestions from code review

Verified updated Info.json works for aforementioned keyboards,

* Follow-up commit with aforementioned suggested changes

* Apply suggestions from code review

correction to a couple typos pointed out.

* follow-up removed some un-needed Readmes and corrected a mistake in 60F via keymap

* Apply suggestions from code review

* Added images of PCB to each Keyboard README

* Apply suggestions from code review

* Update keyboards/enviousdesign/60f/readme.md

* Added missing aspects of info.json and corrected RGB_DI_PIN to WS2812_DI_PIN in RGB keyboard

* made requested changes

* Update config.h

* used QMK migrate to update info.json

* Apply suggestions from code review

* Update keyboards/enviousdesign/65m/info.json

* renamed named keyboards as suggested and added commission keyboard to repo

* renamed file to hopefully please lint

* renamed things to be all lower case since lint doesn't appear to look for upper case

* updated keymap.c and removed unnecessary file

* fixed readme and a couple other bits

* converted various aspects to json information

* attempt fix for lint error

* fix some issues I overlooked

* Apply suggestions from code review

* moved some folders about as suggested

* Made suggested changes

* Apply suggestions from code review

* removed outdated config.h

* fixed errors in 65M and mini1800

* Apply suggestions from code review

* Update keyboards/enviousdesign/delirium/rev1/info.json

* Update keyboards/enviousdesign/65m/info.json

* Apply suggestions from code review

* [Keyboard] Inland V83P (qmk#21725)

* [Keyboard]add v83p keyboard.

* Update keymap.c

* Update keyboards/inland/v83p/keymaps/via/keymap.c

* Update keyboards/inland/v83p/keymaps/default/keymap.c

* Update keyboards/inland/v83p/config.h

* Update keyboards/inland/v83p/info.json

* Update info.json

* Update keymap.c

* Update keyboards/inland/v83p/mcuconf.h

* Update keyboards/inland/v83p/halconf.h

* Update keyboards/inland/v83p/info.json

* Update keyboards/inland/v83p/v83p.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* Update keyboards/inland/v83p/info.json

* [Keyboard] RPNeko65 by lendunistus (qmk#21747)

* initialise rpneko65, info.json

* force NKRO

* define WS2812 stuff

and capitalise RPNeko65

* use RGBlight, add ANSI to keymap.c

also remove _ADC suffixes from pins

* basic readme

plus making it so the info.json RGB values are actually recognised as integers

* update repository URL

* fix info.json formatting

* caps lock LED implementation

"borrowed" from waffling60

* put RGBLIGHT_ENABLE in json

also remove "pin" from the rgblight option

* add actually correct keymaps

also reformat info.json

* move to designer folder, add image to README

* move keyboard to separate revision folder

and remove erroneous tag from config.h

* remove brightness/hue/saturation steps

* change device version to 1.0

* move quantum.h include to top

* actually, let's try a new image

I also forgot to save the info.json file beforehand
oops

* Remove comma in info.json

* Community layouts in info.json

* Delete rpneko65/readme.md

* Apply suggested changes to readme

* Suggested code changes

* Suggested imgur link

* rename code file

this was the issue all along
sigh

* Correct layer matching this time

* Move Enter in info.json

* README/info.json change

* Another batch of suggestions

* amend alice* community_layouts in keyboards (qmk#21846)

* add alice* to keyboards

* add seigaiha

* additions

* Update info.json

* revert wanderland

* add tgr/alice

* add matrix diagram.md

* [Keyboard] Add Okayu (qmk#22077)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Enable encoder map on navpad1.0 (qmk#22266)

* [Keyboard] jukaie/jk01 (qmk#20573)

* ADD Keyboard

* Resolved requested changes

* update keymap.c file

* resolved requested changes

* updated info.json file

* Updated requested changes

* Delete JK01.h file

* Resolved requested changes

* Delete readme.md

* add rules.mk to default folder

* Upload default/keymap.c

* Add via/keymap.c

* Updated info.Json file

* Change VID in info.json

* Resolved requested changes

* Resolved requested changes.

* Resolved requested changes

* Updated changes

---------

Co-authored-by: gksygithub <gskyGit@gsky.com.tw>

* Fix typo in keychron v6 encoder map enable (qmk#22272)

* Allow for disabling of parallel processing of qmk find and `qmk mass-compile`. (qmk#22160)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fixup symbol sizing listing. (qmk#22307)

* [Keyboard] Add purin (qmk#22306)

* [Keyboard] Add QK100 (qmk#21782)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Remove extra led_matrix_indicators_user call (qmk#22329)

* [Keyboard] Add LGBTKL (qmk#22331)

Co-authored-by: jack <0x6a73@protonmail.com>

* Clarify PIO define is optional in docs. (qmk#22339)

* [Keyboard] Add Kaly42 (qmk#22282)

* Added Kaly/Kaly42 keyboard's minimal files.

* Updated readme.md; New link and improved description text.

* Apply suggestions from code review

Added all suggestions given by @dunk2k

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added community_layouts to info.json.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

---------

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Keyboard] add pisces pcb (qmk#22334)

* [Keyboard] Waffling60 Rev E ANSI Hotswap (qmk#22270)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add darkproject/kd87a_bfg_edition keyboard (qmk#18981)

Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* eason/aeroboard - Modify bootloader (qmk#22286)

* [Keyboard] doksin (qmk#22220)

* [Keyboard] Add Velvet hotswap & solder (qmk#22284)

* Flag more VIAL config options in lint (qmk#22345)

* Removed clueboard link as the website has been parked for some time (qmk#22290)

* [Keyboard] add enter67 keyboard (qmk#22346)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Fix for swapped PID and VID (qmk#22372)

* Add Kindakeyboards Conone65 Via support (qmk#22320)

* [Keyboard] Add TeaQueen (qmk#22352)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add Klein_SD (qmk#22371)

Co-authored-by: Joel Challis <git@zvecr.com>

* boardsource/unicorne - Fixed OLED layers being all set to zero (qmk#22389)

---------

Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Filip Sund <filip.sund@gmail.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Co-authored-by: ShandonCodes <shandon@shandon.codes>
Co-authored-by: Deddia Permana <deddiapermana97@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Dan Ford <dan-github2@dlford.co>
Co-authored-by: Joe Scotto <8194147+joe-scotto@users.noreply.github.com>
Co-authored-by: temp4gh <temp4bbs@163.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: syc <squall_sha@163.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Poring <97579443+PoringH@users.noreply.github.com>
Co-authored-by: Charles Strahan <charles@cstrahan.com>
Co-authored-by: lalalademaxiya1 <66767061+lalalademaxiya1@users.noreply.github.com>
Co-authored-by: dztech <moyi4681@users.noreply.github.com>
Co-authored-by: Apteryks <maxim.cournoyer@gmail.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Ryan Neff <ryan.ray.neff@fluke.com>
Co-authored-by: Daniel Osipishin <88534270+subrezon@users.noreply.github.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>
Co-authored-by: era <73109780+eerraa@users.noreply.github.com>
Co-authored-by: lendunistus <53618962+lendunistus@users.noreply.github.com>
Co-authored-by: Ethan Perry <86326912+wheres-perry@users.noreply.github.com>
Co-authored-by: Tom singleton <Radther@users.noreply.github.com>
Co-authored-by: T.A <83424097+t0kies@users.noreply.github.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>
Co-authored-by: DeskDaily <65656486+DeskDaily@users.noreply.github.com>
Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>
Co-authored-by: Ben Cooper <63478578+bncpr@users.noreply.github.com>
Co-authored-by: plaublin <pl@pakupaku.me>
Co-authored-by: Andrew Kannan <andrew.kannan@gmail.com>
Co-authored-by: Michael Büchler <michael.buechler@posteo.net>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Ross Montsinger <rmontsinger@gmail.com>
Co-authored-by: spbgzh <72414103+spbgzh@users.noreply.github.com>
Co-authored-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
Co-authored-by: Yanfei Guo <yanf.guo@gmail.com>
Co-authored-by: Yanfei Guo <yguo@anl.gov>
Co-authored-by: Idan Kamara <i@idank.me>
Co-authored-by: DUILCHOI <48977039+duilchoi@users.noreply.github.com>
Co-authored-by: DOIO2022 <116554792+DOIO2022@users.noreply.github.com>
Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Moritz Plattner <moritz.plattner@gmx.net>
Co-authored-by: Brian Low <brian@brianlow.com>
Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com>
Co-authored-by: Sergey Fedorov <oni.strech@gmail.com>
Co-authored-by: Syenasweta <nshrllh.l.fz@gmail.com>
Co-authored-by: Syenasweta <syenasweta@gmail.com>
Co-authored-by: Coom <1655787+coomstoolbox@users.noreply.github.com>
Co-authored-by: yuezp <49514776+LXF-YZP@users.noreply.github.com>
Co-authored-by: “yuezp” <“yuezpchn@126.com”>
Co-authored-by: Álvaro A. Volpato <alvaro.augusto.volpato@gmail.com>
Co-authored-by: gskygithub <106651989+gskygithub@users.noreply.github.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>
Co-authored-by: thompson-ele <ele.thompson12@gmail.com>
Co-authored-by: leyew <102467346+itsme-zeix@users.noreply.github.com>
Co-authored-by: xia0 <307671+xia0@users.noreply.github.com>
Co-authored-by: xia0 <xiao@morgan.net.au>
Co-authored-by: Etienne Collin <collin.etienne.media@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>
Co-authored-by: studiokestra <74369928+studiokestra@users.noreply.github.com>
Co-authored-by: noahbei <123449614+noahbei@users.noreply.github.com>
Co-authored-by: Brian <brian@powell.place>
Co-authored-by: ikorihn <16367098+ikorihn@users.noreply.github.com>
Co-authored-by: vinhcatba <vinhcatba1@gmail.com>
Co-authored-by: Cloud Chagnon <noob.cloud@gmail.com>
Co-authored-by: HorrorTroll <sonicvipduc@gmail.com>
Co-authored-by: Arthur <37627147+ArthurCyy@users.noreply.github.com>
Co-authored-by: jonylee@hfd <108282809+jonylee1986@users.noreply.github.com>
Co-authored-by: Josh Hinnebusch <joshhinnebusch@gmail.com>
Co-authored-by: Agent Blu, 006 <blu006@ucr.edu>
Co-authored-by: 4pplet <mail@4pplet.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>
Co-authored-by: adam tombleson <rekarnar@gmail.com>
Co-authored-by: kisakey-luxury <143060353+kisakey-luxury@users.noreply.github.com>
Co-authored-by: Wilhelm Schuster <ws@rot13.io>
Co-authored-by: Felipe Curty <felipecrp@gmail.com>
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>
Co-authored-by: EnviousData <Enviousdata@gmail.com>
Co-authored-by: Sắn <59417802+MaiTheSan@users.noreply.github.com>
Co-authored-by: MakotoKurauchi <pluis@me.com>
Co-authored-by: jukaie <131839249+jukaie@users.noreply.github.com>
Co-authored-by: gksygithub <gskyGit@gsky.com.tw>
Co-authored-by: Yonghyuk Choi <42003350+oRE-o@users.noreply.github.com>
Co-authored-by: owlab-git <88034417+owlab-git@users.noreply.github.com>
Co-authored-by: Olivia J <65928618+ojthetiny@users.noreply.github.com>
Co-authored-by: Kael Augusto <45074062+Dwctor@users.noreply.github.com>
Co-authored-by: khchen2004 <148961563+khchen2004@users.noreply.github.com>
Co-authored-by: eason <98533237+EasonQian1@users.noreply.github.com>
Co-authored-by: millet <49581988+milletmilletmilletmilletmilletmilletmil@users.noreply.github.com>
Co-authored-by: Felix Jen <fjen@felixjen.com>
Co-authored-by: Brian Choromanski <BrianChoromanski@gmail.com>
Co-authored-by: Cipulot <40441626+Cipulot@users.noreply.github.com>
Co-authored-by: Matt Chan <5021+mattchan@users.noreply.github.com>
Co-authored-by: gregandcin <gregandcinbusiness@gmail.com>
Co-authored-by: ID64F <54159272+ID64F@users.noreply.github.com>
PickLL pushed a commit to PickLL/qmk_firmware that referenced this pull request Nov 10, 2023
BlueTufa added a commit to BlueTufa/qmk_firmware that referenced this pull request Nov 19, 2023
* doio/kb16: Added timeout option for OLED boot logo. (#21823)

* Revert "fix 60_hhkb ASCII diagram (#21813)" (#21869)

This reverts commit af2d6ea128f684691432e2a209cfa11a63f77422.

* CannonKeys Meetup Pad 2023 (#21806)

Co-authored-by: Ryan <fauxpark@gmail.com>

* [keyboard] add sweeq, a ferris/sweep variant with diodes (#21597)

* Update macOS install script (#21854)

* Abko AK84BT Layout Touch-Up (#21876)

* [refactor] rename LAYOUT_75_ansi to LAYOUT

* [enhancement] touch-up layout

* AH Haven65 Community Layout support (#21880)

* [refactor] rename LAYOUT to LAYOUT_65_ansi_blocker

* [enhancement] enable Community Layout support

* nullbitsco/snap: fix broken keymaps (#21877)

* chore: ignore virtual environment directory (#20905)

* Add 1upkeyboards Super16v3 (#21665)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [keyboard] add redragon/k667 (#21417)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: syc <squall_sha@163.com>

* Add M6-C Keyboard Firmware (#21852)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Wolf <contact@vwolf.be>

* Added kiserdesigns keyboard folder and Madeline keyboard (#21857)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* redragon/k667: Remove 2 layer VIA restriction (#21889)

* AH Haven80 Community Layout support (#21885)

* [enhancement] correct layout data

* [refactor] rename LAYOUT to LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] enable Community Layout support

* Haven80 Solder: add LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan

[enhancement]

* Haven80 Solder: extend Community Layout support

[enhancement]

* ANAVI Macro Pad 12: rename LAYOUT to LAYOUT_ortho_4x3 (#21886)

[refactor]

* Chosfox CF81: correct layout data (#21902)

* Auto-label data-driven efforts (#21900)

* CannonKeys Bastion75 Layout Additions (#21899)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_ansi_blocker_split_bs

* [enhancement] add LAYOUT_ansi_blocker

* [enhancement] add LAYOUT_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_ansi_blocker_tsangan

* [enhancement] add LAYOUT_iso_blocker_split_bs

* [enhancement] add LAYOUT_iso_blocker

* [enhancement] add LAYOUT_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_iso_blocker_tsangan

* CannonKeys Bastion60 Layout Additions (#21887)

* [bugfix] correct LAYOUT_60_iso_tsangan key order

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_60_tsangan_hhkb

* [enhancement] add LAYOUT_60_ansi_tsangan

* [enhancement] add LAYOUT_60_iso

* [enhancement] add LAYOUT_60_iso_split_bs_rshift

* [enhancement] add LAYOUT_60_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_60_hhkb

* [enhancement] extend Community Layout support

* CannonKeys Bastion65 Layout Additions (#21888)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_65_ansi_blocker_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan

* [enhancement] add LAYOUT_65_iso_blocker_split_bs

* [enhancement] add LAYOUT_65_iso_blocker

* [enhancement] add LAYOUT_65_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_iso_blocker_tsangan

* [enhancement] enable Community Layout support

* CannonKeys BastionTKL Layout Additions (#21901)

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_tkl_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_ansi

* [enhancement] correct LAYOUT_tkl_iso key order

* [enhancement] add LAYOUT_tkl_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan

* [enhancement] add LAYOUT_tkl_f13_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan

* [enhancement] extend Community Layout support

* Bump actions/checkout from 3 to 4 (#21907)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>

* GMMK2 65% ISO: Correct layout data (#21925)

Correct key sizes/positioning on the right side of the board.

* [Docs] Improve contrast for warnings in dark mode (#21928)

* GMMK2 96% ANSI: Correct layout data (#21937)

[enhancement]

* Cipulot EC Theca Community Layout Support (#21913)

* Alias `LAYOUT_all` as `LAYOUT_tkl_ansi`

The data for `LAYOUT_all` and `LAYOUT_tkl_ansi` is identical, so alias
the former to the latter to reduce redundancy.

[refactor]

* Rename `LAYOUT_tkl_ansi_tsangan_wkl` to `LAYOUT_tkl_ansi_wkl`

[refactor]

* Enable Community Layout support

[enhancement]

* customMK EVO70 R2 Layout Additions (#21916)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct layout data

Reduce the gap between the encoder/macro section and the alphanumeric
section by 0.25u.

[enhancement]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Fix redundant `layout_aliases` keys

per dunk2k

[bugfix]

* [Keyboard] Add Binepad Pixie (#21524)

* Add Binepad Pixie

* Post waffle87 and drashna review recommendations applied

* Post-drashna code review suggestions applied

Co-authored-by: Drashna Jaelre <drashna@live.com>

* post zvecr review

---------

Co-authored-by: Drashna Jaelre <drashna@live.com>

* dnworks FRLTKL Community Layout support (#21922)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Repair malformed links in keyboard README files (#21969)

* Remove oversize binaries (#21976)

This stops a situation where a user could end up flashing oversize firmware soft bricking hardware.

* Drewkeys Mercury65 Layout Additions (#21924)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct `LAYOUT_all` data

Correct the order of the Up arrow and End keys.

[enhancement]

* Tidy-up `info.json` formatting

- add line breaks between physical rows
- remove trailing spaces

[style]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Gray Studio Think65 v3 Layout Additions (#21930)

* Add layout/matrix diagram

[docs]

* Format `info.json` as strict JSON

[style]

* Add `LAYOUT_all`

[enhancement]

* Refactor keymaps to use `LAYOUT_all`

Refactor the `default` and `via` keymaps to use the `LAYOUT_all` macro.

- change second Left Shift key to `KC_NUBS`
- insert `KC_NUHS` keycode
- update keycode grid alignment
- remove trailing whitespace

[refactor]

* Rename `LAYOUT_65_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_iso_blocker` to `LAYOUT_iso_blocker`

[refactor]

* Correct `LAYOUT_iso_blocker` matrix data

The Quote key was mapped as [1, 14] instead of [2, 12].

[bugfix]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Handwired ScottoKeebs Configurator Updates (#21990)

* ScottoKeebs ScottoAlp: Correct layout data

[enhancement]

* ScottoKeebs ScottoCMD: Correct layout data

[enhancement]

* ScottoKeebs ScottoErgo: Correct layout data

Add hand separation and vertical stagger to the layout data.

[enhancement]

* ScottoKeebs ScottoFrog: Correct layout data

[enhancement]

* ScottoKeebs ScottoGame: Correct layout data

[enhancement]

* ScottoKeebs ScottoInvader: Correct layout data

[enhancement]

* ScottoKeebs ScottoNum: Correct layout data

[enhancement]

* ScottoKeebs ScottoSplit: Correct layout data

[enhancement]

* ScottoKeebs ScottoStarter: Correct layout data

[enhancement]

* Inland MK47 Community Layout Support (#21998)

* Rename `LAYOUT` to `LAYOUT_planck_mit`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- grid-align keycodes

[style]

* Jaykeeb Sebelas: Standardize Layout Names (#21999)

* Rename `LAYOUT_65_ansi_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_split_bs` to `LAYOUT_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan_split_bs` to `LAYOUT_ansi_blocker_tsangan_split_bs`

[refactor]

* Keebio NyquistPad Layout Updates (#22000)

* Rename `LAYOUT` to `LAYOUT_ortho_5x6`

[refactor]

* Add `LAYOUT_ortho_5x6_1x2u`

[enhancement]

* Kibou Suisei Layout Addition (#22001)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan_wkl`

[enhancement]

* Kopibeng XT87 Layout Additions & Touch-Up (#22002)

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Correct layout data

Correct key positioning on the function row.

[enhancement]

* Friendly-format `info.json`

[style]

* Move ISO Enter to Home Row

Corrects the implementation of the ISO Community Layouts.

[bugfix]

* Update to 'peterfalken' userspace configurations (#21836)

* Krado Industries Promenade Layout Additions (#22014)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Correct key order

[bugfix]

* Add `LAYOUT_2x2u`

[enhancement]

* Add `LAYOUT_2x3u`

[enhancement]

* Add `LAYOUT_6u_space`

[enhancement]

* Add `LAYOUT_7u_space`

[enhancement]

* Touch-up `via` keymap

Update keycode grid alignment to match the `default` keymap.

[style]

* Linworks Fave60a Community Layout Support (#22015)

* Friendly-format `info.json`

[style]

* Correct layout data

[chore]

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_60_tsangan_hhkb`

[refactor]

* Add `LAYOUT_60_ansi_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Maze Studio Jocker 1800 Layout Additions (#22016)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_ansi_split_bs`

[refactor]

* Add `LAYOUT_ansi`

[enhancement]

* Add `LAYOUT_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_ansi_wkl`

[enhancement]

* Mechlovin Zed65 910 Layout Standardization (#22018)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_65_iso_tsangan_split_bs` to `LAYOUT_iso_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan` to `LAYOUT_ansi`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan_split_bs` to `LAYOUT_all`

[refactor]

* Mode M256-WS Community Layout Support (#22020)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker`

[enhancement]

* patch `LAYOUT_65_iso_blocker_split_bs`

* patch `LAYOUT_65_iso_blocker`

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Mode M256-WH Community Layout Support (#22019)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* MonsGeek M1: Correct layout data (#22026)

Apply vertical offset to the arrow keys.

[chore]

* `qmk format-json`: Add an in-place mode to format json command (#21610)

* QVEX Tech Lynepad2 Layout Update (#22030)

* Add layout/matrix diagram

[docs]

* Update layout data

Update layout data to disambiguate the key/joystick/thumbpad functions
in Configurator.

[chore]

* OwLab Jelly Evolv Solder Layout Additions (#22029)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Nix Studio Lilith Layout Additions (#22028)

* Add layout/matrix diagram

[docs]

* Sort keys in `info.json`

[style]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Extend Community Layout support

[enhancement]

* Neson Design Nico Layout Additions (#22027)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Touch-up keymaps

- grid-align keycodes
- use four-space indent
- use QMK-native keycode aliases

[refactor]

* Update `via` keymap

Update the `via` keymaps to have the same key assignments as the
`default` keymap, which is more fleshed out.

[chore]

* [Keyboard] Add splitkb.com's Aurora Helix (#21871)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* [Keyboard] add 1upkeyboards 1upslider8 (#21546)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Adding Treasure TYPE-9 series III (#21748)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Raindrop Layout Updates (#22032)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_all` to `LAYOUT_64_ansi_split_bs`

[refactor]

* Add `LAYOUT_60_ansi_split_bs_rshift`

[enhancement]

* Rico Phoenix Project No. 1 Layout Additions (#22035)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_rwkl`

[enhancement]

* Add `LAYOUT_65_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_wkl`

[enhancement]

* Add `LAYOUT_65_iso_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_rwkl`

[enhancement]

* Add `LAYOUT_65_iso_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_wkl`

[enhancement]

* RuckerMachine RM Fullsize Layout Additions (#22036)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_fullsize_108_ansi`

[enhancement]

* Add `LAYOUT_fullsize_108_ansi_tsangan`

[enhancement]

* Sho Studios ARC Layout Addition (#22037)

* Add layout/matrix diagram

[docs]

* Format `info.json`

Apply four-space indent.

[style]

* Add `LAYOUT_ansi_split_bs`

[enhancement]

* Move Digitizer to "Software Features" (#22031)

* Add missing gpio and chibios defs to uart.h (#22033)

* Fix paragon encoder pinout for soldered version (#22043)

* geistmaschine/macropod: fix issues waking up after suspend on apple devices (#22023)

* Add all RGB Matrix Animations to city42 (#21992)

* Viktus Styrka Topre Layout Standardization and Touch-Up (#22044)

* Add layout/matrix diagram

[docs]

* Alias `LAYOUT_all` to `LAYOUT_split_6u`

`LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
and sequence, so implement the former as an alias.

[refactor]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[chore]

* Friendly-format `info.json`

[style]

* Correct layout data

Correct key sizes/positioning on the bottom row.

[chore]

* Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

[refactor]

* Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[refactor]

* Wolf Neely65 Touch-Up (#22045)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[refactor]

* Fix keymaps

Fix keycodes being assigned out of order with respect to `info.json`.

- move XT function keys to left side
- move keycodes for position [2, 14] from Home Row to Number Row

[bugfix]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

[enhancement]

* Wolf Silhouette Community Layout Support (#22052)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Wolf Ziggurat Layout Additions (#22053)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan`

[enhancement]

* Adding support for the Pteron56 (PCB) keyboard (#21731)

* Add missing gpio include to ps2 vendor (#22063)

* [Keyboard] Add riot pad (#22060)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* DZTech Pluto Community Layout support (#22069)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

- apply four-space indent
- sort JSON keys in layout objects

[style]

* Correct `LAYOUT_all` data

Correct key sizes/positions of:

- ANSI Backslash [1, 13]
- ANSI Enter [1, 14]
- Fn [3, 13]

[chore]

* Correct `LAYOUT_iso` data

Correct position of Fn key [3, 13].

[chore]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

Update keycode grid alignment.

[style]

* Ubest VN Community Layout Support (#22070)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi`

[enhancement]

* Add `LAYOUT_65_iso_split_bs`

[enhancement]

* Add `LAYOUT_65_iso`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- apply four-space indent
- grid-align keycodes

[style]

* Add OLED logo DP3000 macropad (#21936)

* SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (#22081)

* Alchemist Keyboards OGRN Layout Addition (#22080)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Add `LAYOUT_ortho_5x4`

[enhancement]

* Touch-up keymaps

- update grid-alignment (layer-to-layer consistency)
- fix box drawings

[style]

* Extend Community Layout support

Add `ortho_5x4` to supported Community Layouts.

[enhancement]

* amend 96_(ansi|iso) community_layouts in keyboards/ (#22066)

* Restrict "feature" and "animation" keys (#21895)

* [Keyboard] Momokai Aurora (#20419)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* [Keyboard] add Quokka keyboard (#20979)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* apply 66_(ansi|iso) to keyboards (#21834)

* Add ScottoSlant Keyboard (#20942)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMouse Handwired Macropad (#21074)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>

* Add ScottoFly Keyboard (#20939)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMacrodeck Macropad (#20946)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoLong Keyboard (#20938)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add funtions of Encoder and VIA for redragon/k667 (#21917)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: syc <squall_sha@163.com>

* [Keyboard] Add rpk-001 keyboard (#21042)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>

* amend 68_(ansi|iso) community_layouts in keyboards/ (#21835)

* [Keyboard] Add QCK-75 (#21180)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Quarkeys Studio Z67 Solder Community Layout Support (#22095)

* Quarkeys Studio Z67 Hotswap Community Layout Support (#22096)

* kimiko: mirror encoder pins between halves (#21728)

* Keychron q9 plus (#21399)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* add dz60v2 keyboard (#21862)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add odinmini layout (#21983)

Co-authored-by: Ryan <fauxpark@gmail.com>

* keymaps: Fix hacker_dvorak build. (#22102)

* Allow for `qmk compile -kb all`. (#22022)

* Royal Kludge RK G68 Community Layout Support (#22103)

* Rename `LAYOUT` to `LAYOUT_65_ansi`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- fix keycode grid alignment

[style]

* Touch-up readme

- link to maintainer's GitHub profile
- specify codebase is for RGB version of RK G68
- update Hardware Availability links

[docs]

* Added OLED SSD1306 128x64 to the verified working table (#22112)

* Shoc: physically arrange keymaps/layout macro (#22100)

* Fix up `qmk mass-compile` makefile indenting. (#22115)

* Add 'dactyl_tracer' keyboard (#20993)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add subrezon/lancer keyboard (#20792)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>

* [Keyboard] Add SIRIND Klein (#21951)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* GMMK2 96% ISO: Correct layout data (#22101)

* Add reminder about format-json to PR Checklist (#22055)

* Add Jank RP2040 Dactyl (#21973)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Enable RGB_TEST animation on riot_pad (#22118)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* YMDK Melody96 Matrix Touch-Up (#22113)

* Correct layout/matrix diagram

Correct swapped designations for ANSI Backslash and ANSI Enter keys.

[docs]

* Correct matrix data

Correct the matrix data for:

  - `LAYOUT_all`
  - `LAYOUT_96_ansi`
  - `LAYOUT_96_ansi_splitbs`

which all had the matrix positions for ANSI Backslash and ANSI Enter swapped.

[bugfix]

* Implement `LAYOUT_hotswap` directly

Implement `LAYOUT_hotswap` as its own layout, instead of aliasing it to
`LAYOUT_96_ansi`.

[bugfix]

* Specify primary support for Soldered PCBs

Current version of codebase primarily supports Soldered PCBs.

[enhancement] [docs]

* Update feature_rgblight.md (#21483)

* Revert "Update feature_rgblight.md" (#22132)

* included keyboard.h. To use is_keyboard_master with a split with an i… (#21571)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>

* Added Wyvern Hotswap by BredWorks (#21141)

Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>

* Fix combo_ref_from_layer respect different default layer [#21780] (#21781)

* Fix variable misspelling (#21774)

* amend split_* community_layouts in keyboards (#21847)

* amend 75_(ansi|iso) community_layouts in keyboards/ (#21837)

* Add is0gr to QMK (#22024)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>

* Document the RP2040-specific PS/2 implementation (#22079)

Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>

* Bump tj-actions/changed-files from 38 to 39 (#21923)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Palmetto PCB (#21955)

* Add zoom98 (#22062)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* Added more rgb effects for rpk-001 keyboard (#22120)

* Fix typo in oled_driver (#22134)

betwen -> between

* Fix entry into bootloader for STM32G431. (#22138)

* Fix doc for programmable buttons. (#22136)

Co-authored-by: Yanfei Guo <yguo@anl.gov>

* rastersoft/minitkl layout corrections (#22130)

* [Keyboard] Add spankbd, 3x5+3 split keyboard (#22003)

* Initial support for CSTM80 (#22137)

* Add support for YMD75 V4 - ISO (#22128)

* Drop V2 production updates (#22147)

* Allow inline generation of compile_commands.json while doing a `qmk compile`, using `--compiledb` (#21549)

* Allow for `qmk mass-compile all:<keymap>` (#22116)

Co-authored-by: Joel Challis <git@zvecr.com>

* HnahKB Freyr Layout Additions (#22150)

* Add layout/matrix diagram

[docs]

* Add `LAYOUT_tkl_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Extend Community Layout support

Add as supported layouts:

- `tkl_ansi_split_bs_rshift`
- `tkl_ansi_tsangan`
- `tkl_ansi_tsangan_split_bs_rshift`
- `tkl_iso_split_bs_rshift`
- `tkl_iso_tsangan`
- `tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Rura66 Layout Data (#22155)

* Friendly-format `info.json`

[style]

* Update layout data

- separate keyboard halves
- add vertical stagger

[refactor]

* add linworks fave60 (#20796)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add KB12 keyboard (#21605)

Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* 4pplet Eagle/Viper Rep Rev.A Layout Additions II (#22161)

* teleport/native: switch from wrongly used user to kb function, boost matrix scan rate (#21172)

* enable LTO

* change from _user to _kb function

* switch matrix io delay to nops, add opt=3 for higher scan rates

* disable console which was enabled for testing but collides with endpoint used by VIA

* switched from opt=3 to opt=2

* Update keyboards/teleport/native/native.c

Co-authored-by: Joel Challis <git@zvecr.com>

* slightly upped debounce, as some testers had chatter with async + default debounce

---------

Co-authored-by: Joel Challis <git@zvecr.com>

* Add Brutalv2 60 Keyboard (#22094)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* keyboards: Add support for Sofle Choc (#16736)

Co-developed-by: Brian Low <github@brianlow.com>
Co-developed-by: duese <duese@users.noreply.github.com>

Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>

* Remove rosetta instructions for Apple Silicon (#22174)

* Bastard Keyboards: Add support for Dilemma Max (4x6_4) (#22064)

* tentatively add dilemma 4x6_4 WIP untested 
PR by Casuanoob.

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Miscellaneous fixes for recently merged keyboards (#22179)

* Add Soulstone keyboard (#22093)

* [Keyboard] Add SyenaKeyboards (#22168)

Co-authored-by: Syenasweta <syenasweta@gmail.com>

* Fix minimum python version references (#22191)

* Added /handwired/ziyoulang_k3_mod (#21965)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add the Split67 keyboard PCB (#22107)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Monstargear XO87 Soldered: correct layout data (#22199)

Correct key positions on the bottom row for `LAYOUT_tkl_ansi_tsangan`.

[chore]

* Add Acheron Themis and its variants (#22142)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add keyboard Projectd/75/Projectd_75_ansi (#21628)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* [Keyboard] Add SP-111 v2 keyboard (#21652)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add qwertyqop60hs (#22164)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added 3dp660 oled keyboard (#20591)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: xia0 <xiao@morgan.net.au>

* Add Wave keyboard (#22054)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Keychron Q1 Version 2 (#20416)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>

* Add Line TKL keyboard (#22172)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add printedpad keyboard (#21202)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add `qmk ci-validate-aliases` (#22205)

* Move orphaned Yugo-M files (#22211)

Moves files that were left behind by #14996.

[bugfix]

* Klein_HS PCB support (#22203)

* Update vid for printedpad (#22215)

* Adding BriianPowell Discipline Keyboard Layout Updates (#21474)

* Flag vial keymaps in 'qmk lint' (#22227)

* Fix build error when Automatic Mouse Layer is enabled (#22229)

* [Keyboard] vinhcatba/uncertainty (#21142)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* add license to header files, update ws2812 driver and DI_PIN to info.json

* resovle PR suggestion for config.h, halconf.h, mcuconf.h

* update info.json regarding PR comment

* update bongo.h regarding PR comment

* add oled mode toggle

* update readme.md, rules.mk regarding PR comment

* add submodule update

* move oled handle to keyboard level

* Update keyboards/vinhcatba/uncertainty/uncertainty.c

forgot user-level proces_record

* now using bongo as source file

* Apply suggestions from code review

remove default value codes

* move WPM_ENABLE and ENCODER_MAP_ENABLE to keymap level

* Apply suggestions from code review

* Apply suggestions from code review

* Update keyboards/vinhcatba/uncertainty/config.h

* [Keyboard] Split-Cloud Handwired (#21327)

* Added new handwired, the Split-Cloud

* Minor changes to make clang-format happy

* Alligned files with project standard.

Trimmed midi out of the default layout, modified the readme, and removed unnecessary files.

* Simplified default keymap further, changes to info.json

* Moved image to imgur, simplified, and removed the unneeded rules.mk file

* Update keyboards/handwired/split_cloud/readme.md

Changed image in readme to Huge Thumbnail instead of Original.

* Removed unneeded tri layer custom keycodes

Now using the built-in functionality!

* Update keyboards/handwired/split_cloud/readme.md

Accidentally reverted this when making other changes

* Fix typo in `docs/feature_tri_layer.md` (#22232)

`Stes` -> `Sets`

* [Keyboard] HorrorTroll Nyx (#21143)

* Added support keyboard Nyx

* Resolved zvarc suggested and lint error

* Delete FORCE_NKRO due to problem with BIOS on mainboard

* Resolved dunk2k suggested and limit more brightness, disable some RGB Effect

* Resolved drashna suggested

* Delete flower blooming effect and move to rev1 folder

* Yampad add missing includes for CONVERT_TO (#22237)

* Yampad add missing includes for CONVERT_TO (#22237)

* Fix old usage of UNICODE_MODE_MAC (#22238)

* [Keyboard] Add MIIIW BlackIO83 (#21970)

* Add MIIIW BlackIO83

* Improve the code

* Updated instructions for entering the bootloader

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/config.h

* Update config.h

* [Keyboard] MonsGeek M3 (#20542)

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* updata rules.mk

* add readme.md

* delete monsgeek\m3\rgb_matrix_kb.inc

* add DISABLE_M3_KEYCODES

* user_config --> kb_config

* Move code to info.json,and removed redundant features

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update readme.md

* Update keyboards/monsgeek/m3/config.h

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/readme.md

* Update m3.c

* Update m3.c

* Update info.json

* Update keymap.c

* Update keymap.c

* Update config.h

* Update keyboards/monsgeek/m3/readme.md

* Update keyboards/monsgeek/m3/rules.mk

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update m3.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/m3.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* add missing gpio include for pointing motion pin (#22246)

* [Keyboard] Hineybush H101 (#22186)

* initial h101 commit

* update keymap and add via support

* update doc stuff

* readme typo

* updates

* add indicator LEDs, needs testing

* update readme

* update USB VID/PID to match VIA json

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/default/keymap.c

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/via/keymap.c

* updates from PR comments

* updates per PR comments

* idk why the folder is acting weird

* maybe this will fix it

* update to hopefully fix everything weird

* keycode fixes

* keymap updates

* add 60_(ansi|iso)_wkl* community layouts (#21811)

* add 60_(ansi|iso)_tsangan_wkl* layouts

* Update keymap.c

* `tsangan_wkl` to `wkl`

* update info.json

* split backspace changes

* Apply suggestions from code review

* Keyboard change blu/vimclutch to hardware revision B. (#22247)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add Ratio60 PCB (#21609)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>

* Add 62 key Dactyl Manuform (#21394)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add `60_iso_tsangan_split_bs_rshift` Community Layout (#21812)

* add 60_(ansi|iso)_tsangan_split_bs_shift layouts

* shift to rshift

* remove 60_ansi_tsangan_split_bs_rshift

* Update layouts/default/60_iso_tsangan_split_bs_rshift/info.json

* Kisakey (#22217)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Reword mention of personal keymaps from PR checklist (#22258)

* Add support for CSTC40 keyboard (#22154)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: lesshonor and waffle87
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: lesshonor
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>

* [Keyboard] Add support for EnviousDesign keyboards (#17544)

* Add support for Envious.Design Keyboards

Add various RP2040 keyboards I've designed.

* Fixed missing newlines at EOF.

* Ran CLANG-FORMAT and sorted out any potential issues.

* Gave keyboards all unique product IDs

* Made requested changes.

* removed all VIAL related code
* sorted out license on all *.h or *.h  files
* removed outdated RESET Keycode

* missed some VIAL bits

* Made suggested changes

* Made Suggested Changes

* missed one file to change.

* Attempted fix of CI issues

* Update .gitmodules

* Revert "Update .gitmodules"

This reverts commit f4bace51621ed0c5bd40c729fa1c6339f665f0b7.

* hopefully fixed all CI and QMK lint issues

* resolve more CI errors and a couple typos

* fixed last remaining issue as of now

* made requested changes

* further more on suggested change

* Delete README.md

* derpy workaround to change case of readme

* finished up 65M firmware

via does not work, I will investigate another time.

* re-did a lot of 65M firmware bits, also fixed via for this board

* corrected mistake in firmware

* made suggested change to info.json for 65m/60F

* finished 65M non via keymap and re-sorted via keymap

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Apply suggestions from code review

Verified updated Info.json works for aforementioned keyboards,

* Follow-up commit with aforementioned suggested changes

* Apply suggestions from code review

correction to a couple typos pointed out.

* follow-up removed some un-needed Readmes and corrected a mistake in 60F via keymap

* Apply suggestions from code review

* Added images of PCB to each Keyboard README

* Apply suggestions from code review

* Update keyboards/enviousdesign/60f/readme.md

* Added missing aspects of info.json and corrected RGB_DI_PIN to WS2812_DI_PIN in RGB keyboard

* made requested changes

* Update config.h

* used QMK migrate to update info.json

* Apply suggestions from code review

* Update keyboards/enviousdesign/65m/info.json

* renamed named keyboards as suggested and added commission keyboard to repo

* renamed file to hopefully please lint

* renamed things to be all lower case since lint doesn't appear to look for upper case

* updated keymap.c and removed unnecessary file

* fixed readme and a couple other bits

* converted various aspects to json information

* attempt fix for lint error

* fix some issues I overlooked

* Apply suggestions from code review

* moved some folders about as suggested

* Made suggested changes

* Apply suggestions from code review

* removed outdated config.h

* fixed errors in 65M and mini1800

* Apply suggestions from code review

* Update keyboards/enviousdesign/delirium/rev1/info.json

* Update keyboards/enviousdesign/65m/info.json

* Apply suggestions from code review

* [Keyboard] Inland V83P (#21725)

* [Keyboard]add v83p keyboard.

* Update keymap.c

* Update keyboards/inland/v83p/keymaps/via/keymap.c

* Update keyboards/inland/v83p/keymaps/default/keymap.c

* Update keyboards/inland/v83p/config.h

* Update keyboards/inland/v83p/info.json

* Update info.json

* Update keymap.c

* Update keyboards/inland/v83p/mcuconf.h

* Update keyboards/inland/v83p/halconf.h

* Update keyboards/inland/v83p/info.json

* Update keyboards/inland/v83p/v83p.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* Update keyboards/inland/v83p/info.json

* [Keyboard] RPNeko65 by lendunistus (#21747)

* initialise rpneko65, info.json

* force NKRO

* define WS2812 stuff

and capitalise RPNeko65

* use RGBlight, add ANSI to keymap.c

also remove _ADC suffixes from pins

* basic readme

plus making it so the info.json RGB values are actually recognised as integers

* update repository URL

* fix info.json formatting

* caps lock LED implementation

"borrowed" from waffling60

* put RGBLIGHT_ENABLE in json

also remove "pin" from the rgblight option

* add actually correct keymaps

also reformat info.json

* move to designer folder, add image to README

* move keyboard to separate revision folder

and remove erroneous tag from config.h

* remove brightness/hue/saturation steps

* change device version to 1.0

* move quantum.h include to top

* actually, let's try a new image

I also forgot to save the info.json file beforehand
oops

* Remove comma in info.json

* Community layouts in info.json

* Delete rpneko65/readme.md

* Apply suggested changes to readme

* Suggested code changes

* Suggested imgur link

* rename code file

this was the issue all along
sigh

* Correct layer matching this time

* Move Enter in info.json

* README/info.json change

* Another batch of suggestions

* amend alice* community_layouts in keyboards (#21846)

* add alice* to keyboards

* add seigaiha

* additions

* Update info.json

* revert wanderland

* add tgr/alice

* add matrix diagram.md

* [Keyboard] Add Okayu (#22077)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Enable encoder map on navpad1.0 (#22266)

* [Keyboard] jukaie/jk01 (#20573)

* ADD Keyboard

* Resolved requested changes

* update keymap.c file

* resolved requested changes

* updated info.json file

* Updated requested changes

* Delete JK01.h file

* Resolved requested changes

* Delete readme.md

* add rules.mk to default folder

* Upload default/keymap.c

* Add via/keymap.c

* Updated info.Json file

* Change VID in info.json

* Resolved requested changes

* Resolved requested changes.

* Resolved requested changes

* Updated changes

---------

Co-authored-by: gksygithub <gskyGit@gsky.com.tw>

* Fix typo in keychron v6 encoder map enable (#22272)

* Allow for disabling of parallel processing of qmk find and `qmk mass-compile`. (#22160)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fixup symbol sizing listing. (#22307)

* [Keyboard] Add purin (#22306)

* [Keyboard] Add QK100 (#21782)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Remove extra led_matrix_indicators_user call (#22329)

* [Keyboard] Add LGBTKL (#22331)

Co-authored-by: jack <0x6a73@protonmail.com>

* Clarify PIO define is optional in docs. (#22339)

* [Keyboard] Add Kaly42 (#22282)

* Added Kaly/Kaly42 keyboard's minimal files.

* Updated readme.md; New link and improved description text.

* Apply suggestions from code review

Added all suggestions given by @dunk2k

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added community_layouts to info.json.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

---------

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Keyboard] add pisces pcb (#22334)

* [Keyboard] Waffling60 Rev E ANSI Hotswap (#22270)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add darkproject/kd87a_bfg_edition keyboard (#18981)

Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* eason/aeroboard - Modify bootloader (#22286)

* [Keyboard] doksin (#22220)

* [Keyboard] Add Velvet hotswap & solder (#22284)

* Flag more VIAL config options in lint (#22345)

* Removed clueboard link as the website has been parked for some time (#22290)

* [Keyboard] add enter67 keyboard (#22346)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Fix for swapped PID and VID (#22372)

* Add Kindakeyboards Conone65 Via support (#22320)

* [Keyboard] Add TeaQueen (#22352)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add Klein_SD (#22371)

Co-authored-by: Joel Challis <git@zvecr.com>

* boardsource/unicorne - Fixed OLED layers being all set to zero (#22389)

* docs(rgblight): fix typos (#22399)

* Teaqueen: correct layout data (#22406)

* [Keyboard] Add Piantor Pro (#22361)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* Red Herring PCB support (#22409)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* Add riblee handwired split keyboard (#22277)

* [Keyboard] Add Duet Switch Tester (#22367)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Add PCB Utopia88 (#22257)

* Fix Herringbone pro Layouts (#22317)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add iso85k keyboard (#22411)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fix corne keylog (#22420)

* [Keyboard] Fix bug in set_keylog function

Fixes issue where some keys would not trigger the oled to output the row
and column of a pressed key (would happen with LT(...) for my keymap)

* [Keyboard] Tiny improvement to oled_render_keylog for crkbd

Added improvement suggestion I got for another keyboard

* Fix indicator LED definition for Sofle RGB. (#22408)

* Update layer state of Lily58 from 'Default' to 'Base' (#22397)

* Add SNES Macropad keyboard (#22377)

Co-authored-by: jack <0x6a73@protonmail.com>

* Update gregandcin/teaqueen (#22402)

* [Keyboard] Add alpaca/wfeclipse (#22230)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Ploopy Madromys mouse (#21989)

Added PloopyCo madromys/adept mouse
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Add MariOrion v2.5 (#22273)

* Pushed MariOrion v2.5 to the branch. Prod and proto version added.

* Pushed MariOrion v2.5 to the branch. Prod and proto version added.

* Proper addition of layout options

Addition of split bs rshift tsangan layout options.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Merge branch 'toril940mariorion_v25' of github.com:toril940/qmk_firmware into toril940mariorion_v25

* Merge branch 'toril940mariorion_v25' of github.com:toril940/qmk_firmware into toril940mariorion_v25

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/default/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Updated readme.md with more information regarding make commands, and proto vs prod.

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/keymaps/default/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Amended some changes to info.json - community layouts changed from scope to array.

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Removed via.json from the via keymaps. Replaced with matrix_diagram.md. via.json file moved off to [public mariorion_v25 repo](https://github.com/toril940/orion-v25)

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Removed via.json from the via keymaps. Replaced with matrix_diagram.md. via.json file moved off to [public mariorion_v25 repo](https://github.com/toril940/orion-v25)

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/rules.mk

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/matrix_diagram.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Pushed new info.json and keymap.c files.

* Pushed new info.json and keymap.c files.

* Fixes to LED driver wrt PWM definitions with STM.

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Committing a details update to readme.md.

* Committing a details update to readme.md.

* Update keyboards/mariorion_v25/prod/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Revert "Committing a details update to readme.md."

This reverts commit 068a82a1fcf1996d87f7f97a10e9f5fbbee79a29.

* Committing a details update to readme.md.

* Update keyboards/mariorion_v25/halconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/mcuconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/halconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Production pictures replacing the standard ones in the readme.md :)

* waffle87 requests bundled:
- Licence headers added
- Codeblocked matrix_diagram.md
- Consolidated files where possible
- Removed excess from config.h

---------

Co-authored-by: toril940 <anastasialucas940@hotmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add `qmk license-check` developer-level CLI command. (#22075)

* add 5087 keyboard (#20557)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>

* studiokestra/line_tkl: correct layout data (#22455)

* fix `layouts` data

* add EoF

* [Keyboard] Fixes to make snes_macropad play nicer with qmk configurator (#22432)

* [Keyboard] Change default implementation for get_layer_name_user

Will now show the layer number instead of "Unknown", since this is
what will be shown if QMK Configurator is used to compile the
firmware.

* [Keyboard] Update the layout info

This makes it look sort of like a macropad + gamepad rather than an 4x6
ortholinear keyboard.

* [Keyboard] Fix default implementation of get_layer_name_user

Based on feedback from code review the implementation was swapped in
favor of using get_u8_str. This implied a change to the argument type
from int to uint8_t, which cascaded into the existing keymaps. (This
made sense in general, since the return type of get_highest_layer is
also a uint8_t.)

* add `68_ansi` Community Layout to nebula68b (#22433)

* Fix typos: key-modifer→key-modifier and interacton→interaction (#22464)

* Bs equals (#21690)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: jack <0x6A73@pm.me>

* Update stale.yml (#22473)

* Update stale.yml

* [Keyboard] Add Eden (#22467)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add leonardo build target for leonardo + usb2.0 shield based projects (#22243)

* [Keyboard] Add dnworks 997pt3 (#22466)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Doc] Improve converter references (#21801)

* reset master to upstream (#35)

* Update 1up keymaps (#36)

* Fix IJ debugger shortcut (#37)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Lasse Luttermann <lasse.luttermann@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Andrew Kannan <andrew.kannan@klaviyo.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Idan Kamara <i@idank.me>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Jay Greco <jayv.greco@gmail.com>
Co-authored-by: Frank Ebel <git@ebel.page>
Co-authored-by: ziptyze <mwcordier@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: temp4gh <temp4bbs@163.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: syc <squall_sha@163.com>
Co-authored-by: Wolf Van Herreweghe <wolfvanh@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Wolf <contact@vwolf.be>
Co-authored-by: NCKiser <37519411+NCKiser@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: 3geek14 <nerd.of.pi@gmail.com>
Co-authored-by: Vino Rodrigues <366673+vinorodrigues@users.noreply.github.com>
Co-authored-by: Falco Gerritsjans <FalcoG@users.noreply.github.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Luis Garcia <luis@bitjester.com>
Co-authored-by: harveysch <126267034+harveysch@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: TreasureTypes <73436366+TreasureTypes@users.noreply.github.com>
Co-authored-by: Constantine Karos <36245370+karosc@users.noreply.github.com>
Co-authored-by: Yak <68242321+yakMM@users.noreply.github.com>
Co-authored-by: Moritz Plattner <moritz.plattner@gmx.net>
Co-authored-by: Controller Works <103382872+controller-works@users.noreply.github.com>
Co-authored-by: Filip Sund <filip.sund@gmail.com>
Co-authored-by: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Co-authored-by: ShandonCodes <shandon@shandon.codes>
Co-authored-by: Deddia Permana <deddiapermana97@gmail.com>
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Dan Ford <dan-github2@dlford.co>
Co-authored-by: Joe Scotto <8194147+joe-scotto@users.noreply.github.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Poring <97579443+PoringH@users.noreply.github.com>
Co-authored-by: Charles Strahan <charles@cstrahan.com>
Co-authored-by: lalalademaxiya1 <66767061+lalalademaxiya1@users.noreply.github.com>
Co-authored-by: dztech <moyi4681@users.noreply.github.com>
…
christrotter pushed a commit to christrotter/qmk_firmware that referenced this pull request Nov 28, 2023
autoferrit pushed a commit to SpaceRockMedia/bastardkb-qmk that referenced this pull request Dec 8, 2023
zgagnon pushed a commit to zgagnon/qmk_firmware_waterfowl that referenced this pull request Dec 15, 2023
dan-white3 pushed a commit to BlueTufa/qmk_firmware that referenced this pull request Dec 23, 2023
* doio/kb16: Added timeout option for OLED boot logo. (#21823)

* Revert "fix 60_hhkb ASCII diagram (#21813)" (#21869)

This reverts commit af2d6ea128f684691432e2a209cfa11a63f77422.

* CannonKeys Meetup Pad 2023 (#21806)

Co-authored-by: Ryan <fauxpark@gmail.com>

* [keyboard] add sweeq, a ferris/sweep variant with diodes (#21597)

* Update macOS install script (#21854)

* Abko AK84BT Layout Touch-Up (#21876)

* [refactor] rename LAYOUT_75_ansi to LAYOUT

* [enhancement] touch-up layout

* AH Haven65 Community Layout support (#21880)

* [refactor] rename LAYOUT to LAYOUT_65_ansi_blocker

* [enhancement] enable Community Layout support

* nullbitsco/snap: fix broken keymaps (#21877)

* chore: ignore virtual environment directory (#20905)

* Add 1upkeyboards Super16v3 (#21665)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [keyboard] add redragon/k667 (#21417)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: syc <squall_sha@163.com>

* Add M6-C Keyboard Firmware (#21852)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Wolf <contact@vwolf.be>

* Added kiserdesigns keyboard folder and Madeline keyboard (#21857)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* redragon/k667: Remove 2 layer VIA restriction (#21889)

* AH Haven80 Community Layout support (#21885)

* [enhancement] correct layout data

* [refactor] rename LAYOUT to LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] enable Community Layout support

* Haven80 Solder: add LAYOUT_tkl_f13_ansi_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

[enhancement]

* Haven80 Solder: add LAYOUT_tkl_f13_iso_tsangan

[enhancement]

* Haven80 Solder: extend Community Layout support

[enhancement]

* ANAVI Macro Pad 12: rename LAYOUT to LAYOUT_ortho_4x3 (#21886)

[refactor]

* Chosfox CF81: correct layout data (#21902)

* Auto-label data-driven efforts (#21900)

* CannonKeys Bastion75 Layout Additions (#21899)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_ansi_blocker_split_bs

* [enhancement] add LAYOUT_ansi_blocker

* [enhancement] add LAYOUT_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_ansi_blocker_tsangan

* [enhancement] add LAYOUT_iso_blocker_split_bs

* [enhancement] add LAYOUT_iso_blocker

* [enhancement] add LAYOUT_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_iso_blocker_tsangan

* CannonKeys Bastion60 Layout Additions (#21887)

* [bugfix] correct LAYOUT_60_iso_tsangan key order

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_60_tsangan_hhkb

* [enhancement] add LAYOUT_60_ansi_tsangan

* [enhancement] add LAYOUT_60_iso

* [enhancement] add LAYOUT_60_iso_split_bs_rshift

* [enhancement] add LAYOUT_60_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_60_hhkb

* [enhancement] extend Community Layout support

* CannonKeys Bastion65 Layout Additions (#21888)

* [docs] add layout/matrix diagram

* [refactor] rename LAYOUT to LAYOUT_all

* [enhancement] add LAYOUT_65_ansi_blocker_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_ansi_blocker_tsangan

* [enhancement] add LAYOUT_65_iso_blocker_split_bs

* [enhancement] add LAYOUT_65_iso_blocker

* [enhancement] add LAYOUT_65_iso_blocker_tsangan_split_bs

* [enhancement] add LAYOUT_65_iso_blocker_tsangan

* [enhancement] enable Community Layout support

* CannonKeys BastionTKL Layout Additions (#21901)

* [docs] add layout/matrix diagram

* [enhancement] add LAYOUT_tkl_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_tsangan

* [enhancement] add LAYOUT_tkl_f13_ansi_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_ansi

* [enhancement] correct LAYOUT_tkl_iso key order

* [enhancement] add LAYOUT_tkl_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_iso_tsangan

* [enhancement] add LAYOUT_tkl_f13_iso_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan_split_bs_rshift

* [enhancement] add LAYOUT_tkl_f13_iso_tsangan

* [enhancement] extend Community Layout support

* Bump actions/checkout from 3 to 4 (#21907)

Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  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>

* GMMK2 65% ISO: Correct layout data (#21925)

Correct key sizes/positioning on the right side of the board.

* [Docs] Improve contrast for warnings in dark mode (#21928)

* GMMK2 96% ANSI: Correct layout data (#21937)

[enhancement]

* Cipulot EC Theca Community Layout Support (#21913)

* Alias `LAYOUT_all` as `LAYOUT_tkl_ansi`

The data for `LAYOUT_all` and `LAYOUT_tkl_ansi` is identical, so alias
the former to the latter to reduce redundancy.

[refactor]

* Rename `LAYOUT_tkl_ansi_tsangan_wkl` to `LAYOUT_tkl_ansi_wkl`

[refactor]

* Enable Community Layout support

[enhancement]

* customMK EVO70 R2 Layout Additions (#21916)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct layout data

Reduce the gap between the encoder/macro section and the alphanumeric
section by 0.25u.

[enhancement]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Fix redundant `layout_aliases` keys

per dunk2k

[bugfix]

* [Keyboard] Add Binepad Pixie (#21524)

* Add Binepad Pixie

* Post waffle87 and drashna review recommendations applied

* Post-drashna code review suggestions applied

Co-authored-by: Drashna Jaelre <drashna@live.com>

* post zvecr review

---------

Co-authored-by: Drashna Jaelre <drashna@live.com>

* dnworks FRLTKL Community Layout support (#21922)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Repair malformed links in keyboard README files (#21969)

* Remove oversize binaries (#21976)

This stops a situation where a user could end up flashing oversize firmware soft bricking hardware.

* Drewkeys Mercury65 Layout Additions (#21924)

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add layout/matrix diagram

[docs]

* Correct `LAYOUT_all` data

Correct the order of the Up arrow and End keys.

[enhancement]

* Tidy-up `info.json` formatting

- add line breaks between physical rows
- remove trailing spaces

[style]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Gray Studio Think65 v3 Layout Additions (#21930)

* Add layout/matrix diagram

[docs]

* Format `info.json` as strict JSON

[style]

* Add `LAYOUT_all`

[enhancement]

* Refactor keymaps to use `LAYOUT_all`

Refactor the `default` and `via` keymaps to use the `LAYOUT_all` macro.

- change second Left Shift key to `KC_NUBS`
- insert `KC_NUHS` keycode
- update keycode grid alignment
- remove trailing whitespace

[refactor]

* Rename `LAYOUT_65_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_iso_blocker` to `LAYOUT_iso_blocker`

[refactor]

* Correct `LAYOUT_iso_blocker` matrix data

The Quote key was mapped as [1, 14] instead of [2, 12].

[bugfix]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Handwired ScottoKeebs Configurator Updates (#21990)

* ScottoKeebs ScottoAlp: Correct layout data

[enhancement]

* ScottoKeebs ScottoCMD: Correct layout data

[enhancement]

* ScottoKeebs ScottoErgo: Correct layout data

Add hand separation and vertical stagger to the layout data.

[enhancement]

* ScottoKeebs ScottoFrog: Correct layout data

[enhancement]

* ScottoKeebs ScottoGame: Correct layout data

[enhancement]

* ScottoKeebs ScottoInvader: Correct layout data

[enhancement]

* ScottoKeebs ScottoNum: Correct layout data

[enhancement]

* ScottoKeebs ScottoSplit: Correct layout data

[enhancement]

* ScottoKeebs ScottoStarter: Correct layout data

[enhancement]

* Inland MK47 Community Layout Support (#21998)

* Rename `LAYOUT` to `LAYOUT_planck_mit`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- grid-align keycodes

[style]

* Jaykeeb Sebelas: Standardize Layout Names (#21999)

* Rename `LAYOUT_65_ansi_blocker` to `LAYOUT_ansi_blocker`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_split_bs` to `LAYOUT_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan_split_bs` to `LAYOUT_ansi_blocker_tsangan_split_bs`

[refactor]

* Keebio NyquistPad Layout Updates (#22000)

* Rename `LAYOUT` to `LAYOUT_ortho_5x6`

[refactor]

* Add `LAYOUT_ortho_5x6_1x2u`

[enhancement]

* Kibou Suisei Layout Addition (#22001)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan_wkl`

[enhancement]

* Kopibeng XT87 Layout Additions & Touch-Up (#22002)

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Correct layout data

Correct key positioning on the function row.

[enhancement]

* Friendly-format `info.json`

[style]

* Move ISO Enter to Home Row

Corrects the implementation of the ISO Community Layouts.

[bugfix]

* Update to 'peterfalken' userspace configurations (#21836)

* Krado Industries Promenade Layout Additions (#22014)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Correct key order

[bugfix]

* Add `LAYOUT_2x2u`

[enhancement]

* Add `LAYOUT_2x3u`

[enhancement]

* Add `LAYOUT_6u_space`

[enhancement]

* Add `LAYOUT_7u_space`

[enhancement]

* Touch-up `via` keymap

Update keycode grid alignment to match the `default` keymap.

[style]

* Linworks Fave60a Community Layout Support (#22015)

* Friendly-format `info.json`

[style]

* Correct layout data

[chore]

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_60_tsangan_hhkb`

[refactor]

* Add `LAYOUT_60_ansi_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Maze Studio Jocker 1800 Layout Additions (#22016)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_ansi_split_bs`

[refactor]

* Add `LAYOUT_ansi`

[enhancement]

* Add `LAYOUT_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_ansi_wkl`

[enhancement]

* Mechlovin Zed65 910 Layout Standardization (#22018)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_65_iso_tsangan_split_bs` to `LAYOUT_iso_split_bs`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan` to `LAYOUT_ansi`

[refactor]

* Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_65_ansi_tsangan_split_bs` to `LAYOUT_all`

[refactor]

* Mode M256-WS Community Layout Support (#22020)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker`

[enhancement]

* patch `LAYOUT_65_iso_blocker_split_bs`

* patch `LAYOUT_65_iso_blocker`

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* Mode M256-WH Community Layout Support (#22019)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_ansi_blocker`

[refactor]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Enable Community Layout support

[enhancement]

* MonsGeek M1: Correct layout data (#22026)

Apply vertical offset to the arrow keys.

[chore]

* `qmk format-json`: Add an in-place mode to format json command (#21610)

* QVEX Tech Lynepad2 Layout Update (#22030)

* Add layout/matrix diagram

[docs]

* Update layout data

Update layout data to disambiguate the key/joystick/thumbpad functions
in Configurator.

[chore]

* OwLab Jelly Evolv Solder Layout Additions (#22029)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_ansi_blocker`

[enhancement]

* Add `LAYOUT_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_iso_blocker`

[enhancement]

* Add `LAYOUT_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_iso_blocker_tsangan`

[enhancement]

* Nix Studio Lilith Layout Additions (#22028)

* Add layout/matrix diagram

[docs]

* Sort keys in `info.json`

[style]

* Add `LAYOUT_65_ansi_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_iso_blocker_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

[enhancement]

* Extend Community Layout support

[enhancement]

* Neson Design Nico Layout Additions (#22027)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Touch-up keymaps

- grid-align keycodes
- use four-space indent
- use QMK-native keycode aliases

[refactor]

* Update `via` keymap

Update the `via` keymaps to have the same key assignments as the
`default` keymap, which is more fleshed out.

[chore]

* [Keyboard] Add splitkb.com's Aurora Helix (#21871)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* [Keyboard] add 1upkeyboards 1upslider8 (#21546)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Adding Treasure TYPE-9 series III (#21748)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Raindrop Layout Updates (#22032)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT_all` to `LAYOUT_64_ansi_split_bs`

[refactor]

* Add `LAYOUT_60_ansi_split_bs_rshift`

[enhancement]

* Rico Phoenix Project No. 1 Layout Additions (#22035)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_rwkl`

[enhancement]

* Add `LAYOUT_65_ansi_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi_wkl`

[enhancement]

* Add `LAYOUT_65_iso_rwkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_rwkl`

[enhancement]

* Add `LAYOUT_65_iso_wkl_split_bs`

[enhancement]

* Add `LAYOUT_65_iso_wkl`

[enhancement]

* RuckerMachine RM Fullsize Layout Additions (#22036)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_fullsize_108_ansi`

[enhancement]

* Add `LAYOUT_fullsize_108_ansi_tsangan`

[enhancement]

* Sho Studios ARC Layout Addition (#22037)

* Add layout/matrix diagram

[docs]

* Format `info.json`

Apply four-space indent.

[style]

* Add `LAYOUT_ansi_split_bs`

[enhancement]

* Move Digitizer to "Software Features" (#22031)

* Add missing gpio and chibios defs to uart.h (#22033)

* Fix paragon encoder pinout for soldered version (#22043)

* geistmaschine/macropod: fix issues waking up after suspend on apple devices (#22023)

* Add all RGB Matrix Animations to city42 (#21992)

* Viktus Styrka Topre Layout Standardization and Touch-Up (#22044)

* Add layout/matrix diagram

[docs]

* Alias `LAYOUT_all` to `LAYOUT_split_6u`

`LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
and sequence, so implement the former as an alias.

[refactor]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[chore]

* Friendly-format `info.json`

[style]

* Correct layout data

Correct key sizes/positioning on the bottom row.

[chore]

* Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

[refactor]

* Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

[refactor]

* Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

[refactor]

* Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[refactor]

* Wolf Neely65 Touch-Up (#22045)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up keymaps

- grid-align keycodes
- use QMK-native keycode aliases

[refactor]

* Fix keymaps

Fix keycodes being assigned out of order with respect to `info.json`.

- move XT function keys to left side
- move keycodes for position [2, 14] from Home Row to Number Row

[bugfix]

* Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

[enhancement]

* Wolf Silhouette Community Layout Support (#22052)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Wolf Ziggurat Layout Additions (#22053)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Touch-up layout data

Move the ISO Hash key to the main key area.

[chore]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_ansi_blocker_tsangan`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

[enhancement]

* Add `LAYOUT_65_xt_iso_blocker_tsangan`

[enhancement]

* Adding support for the Pteron56 (PCB) keyboard (#21731)

* Add missing gpio include to ps2 vendor (#22063)

* [Keyboard] Add riot pad (#22060)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* DZTech Pluto Community Layout support (#22069)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

- apply four-space indent
- sort JSON keys in layout objects

[style]

* Correct `LAYOUT_all` data

Correct key sizes/positions of:

- ANSI Backslash [1, 13]
- ANSI Enter [1, 14]
- Fn [3, 13]

[chore]

* Correct `LAYOUT_iso` data

Correct position of Fn key [3, 13].

[chore]

* Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_nofrow_iso_wkl`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

Update keycode grid alignment.

[style]

* Ubest VN Community Layout Support (#22070)

* Add layout/matrix diagram

[docs]

* Rename `LAYOUT` to `LAYOUT_all`

[refactor]

* Add `LAYOUT_65_ansi_split_bs`

[enhancement]

* Add `LAYOUT_65_ansi`

[enhancement]

* Add `LAYOUT_65_iso_split_bs`

[enhancement]

* Add `LAYOUT_65_iso`

[enhancement]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- apply four-space indent
- grid-align keycodes

[style]

* Add OLED logo DP3000 macropad (#21936)

* SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (#22081)

* Alchemist Keyboards OGRN Layout Addition (#22080)

* Add layout/matrix diagram

[docs]

* Friendly-format `info.json`

[style]

* Add `LAYOUT_ortho_5x4`

[enhancement]

* Touch-up keymaps

- update grid-alignment (layer-to-layer consistency)
- fix box drawings

[style]

* Extend Community Layout support

Add `ortho_5x4` to supported Community Layouts.

[enhancement]

* amend 96_(ansi|iso) community_layouts in keyboards/ (#22066)

* Restrict "feature" and "animation" keys (#21895)

* [Keyboard] Momokai Aurora (#20419)

Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* [Keyboard] add Quokka keyboard (#20979)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* apply 66_(ansi|iso) to keyboards (#21834)

* Add ScottoSlant Keyboard (#20942)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMouse Handwired Macropad (#21074)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>

* Add ScottoFly Keyboard (#20939)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoMacrodeck Macropad (#20946)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add ScottoLong Keyboard (#20938)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add funtions of Encoder and VIA for redragon/k667 (#21917)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: syc <squall_sha@163.com>

* [Keyboard] Add rpk-001 keyboard (#21042)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>

* amend 68_(ansi|iso) community_layouts in keyboards/ (#21835)

* [Keyboard] Add QCK-75 (#21180)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Quarkeys Studio Z67 Solder Community Layout Support (#22095)

* Quarkeys Studio Z67 Hotswap Community Layout Support (#22096)

* kimiko: mirror encoder pins between halves (#21728)

* Keychron q9 plus (#21399)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* add dz60v2 keyboard (#21862)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add odinmini layout (#21983)

Co-authored-by: Ryan <fauxpark@gmail.com>

* keymaps: Fix hacker_dvorak build. (#22102)

* Allow for `qmk compile -kb all`. (#22022)

* Royal Kludge RK G68 Community Layout Support (#22103)

* Rename `LAYOUT` to `LAYOUT_65_ansi`

[refactor]

* Enable Community Layout support

[enhancement]

* Touch-up keymaps

- fix keycode grid alignment

[style]

* Touch-up readme

- link to maintainer's GitHub profile
- specify codebase is for RGB version of RK G68
- update Hardware Availability links

[docs]

* Added OLED SSD1306 128x64 to the verified working table (#22112)

* Shoc: physically arrange keymaps/layout macro (#22100)

* Fix up `qmk mass-compile` makefile indenting. (#22115)

* Add 'dactyl_tracer' keyboard (#20993)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* add subrezon/lancer keyboard (#20792)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>

* [Keyboard] Add SIRIND Klein (#21951)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* GMMK2 96% ISO: Correct layout data (#22101)

* Add reminder about format-json to PR Checklist (#22055)

* Add Jank RP2040 Dactyl (#21973)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Enable RGB_TEST animation on riot_pad (#22118)

Co-authored-by: ShandonCodes <shandon@shandon.codes>

* YMDK Melody96 Matrix Touch-Up (#22113)

* Correct layout/matrix diagram

Correct swapped designations for ANSI Backslash and ANSI Enter keys.

[docs]

* Correct matrix data

Correct the matrix data for:

  - `LAYOUT_all`
  - `LAYOUT_96_ansi`
  - `LAYOUT_96_ansi_splitbs`

which all had the matrix positions for ANSI Backslash and ANSI Enter swapped.

[bugfix]

* Implement `LAYOUT_hotswap` directly

Implement `LAYOUT_hotswap` as its own layout, instead of aliasing it to
`LAYOUT_96_ansi`.

[bugfix]

* Specify primary support for Soldered PCBs

Current version of codebase primarily supports Soldered PCBs.

[enhancement] [docs]

* Update feature_rgblight.md (#21483)

* Revert "Update feature_rgblight.md" (#22132)

* included keyboard.h. To use is_keyboard_master with a split with an i… (#21571)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>

* Added Wyvern Hotswap by BredWorks (#21141)

Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>

* Fix combo_ref_from_layer respect different default layer [#21780] (#21781)

* Fix variable misspelling (#21774)

* amend split_* community_layouts in keyboards (#21847)

* amend 75_(ansi|iso) community_layouts in keyboards/ (#21837)

* Add is0gr to QMK (#22024)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>

* Document the RP2040-specific PS/2 implementation (#22079)

Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>

* Bump tj-actions/changed-files from 38 to 39 (#21923)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Add Palmetto PCB (#21955)

* Add zoom98 (#22062)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>

* Added more rgb effects for rpk-001 keyboard (#22120)

* Fix typo in oled_driver (#22134)

betwen -> between

* Fix entry into bootloader for STM32G431. (#22138)

* Fix doc for programmable buttons. (#22136)

Co-authored-by: Yanfei Guo <yguo@anl.gov>

* rastersoft/minitkl layout corrections (#22130)

* [Keyboard] Add spankbd, 3x5+3 split keyboard (#22003)

* Initial support for CSTM80 (#22137)

* Add support for YMD75 V4 - ISO (#22128)

* Drop V2 production updates (#22147)

* Allow inline generation of compile_commands.json while doing a `qmk compile`, using `--compiledb` (#21549)

* Allow for `qmk mass-compile all:<keymap>` (#22116)

Co-authored-by: Joel Challis <git@zvecr.com>

* HnahKB Freyr Layout Additions (#22150)

* Add layout/matrix diagram

[docs]

* Add `LAYOUT_tkl_ansi_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_tsangan`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_ansi_wkl`

[enhancement]

* Add `LAYOUT_tkl_iso_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_tsangan`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl_split_bs_rshift`

[enhancement]

* Add `LAYOUT_tkl_iso_wkl`

[enhancement]

* Extend Community Layout support

Add as supported layouts:

- `tkl_ansi_split_bs_rshift`
- `tkl_ansi_tsangan`
- `tkl_ansi_tsangan_split_bs_rshift`
- `tkl_iso_split_bs_rshift`
- `tkl_iso_tsangan`
- `tkl_iso_tsangan_split_bs_rshift`

[enhancement]

* Rura66 Layout Data (#22155)

* Friendly-format `info.json`

[style]

* Update layout data

- separate keyboard halves
- add vertical stagger

[refactor]

* add linworks fave60 (#20796)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add KB12 keyboard (#21605)

Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* 4pplet Eagle/Viper Rep Rev.A Layout Additions II (#22161)

* teleport/native: switch from wrongly used user to kb function, boost matrix scan rate (#21172)

* enable LTO

* change from _user to _kb function

* switch matrix io delay to nops, add opt=3 for higher scan rates

* disable console which was enabled for testing but collides with endpoint used by VIA

* switched from opt=3 to opt=2

* Update keyboards/teleport/native/native.c

Co-authored-by: Joel Challis <git@zvecr.com>

* slightly upped debounce, as some testers had chatter with async + default debounce

---------

Co-authored-by: Joel Challis <git@zvecr.com>

* Add Brutalv2 60 Keyboard (#22094)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* keyboards: Add support for Sofle Choc (#16736)

Co-developed-by: Brian Low <github@brianlow.com>
Co-developed-by: duese <duese@users.noreply.github.com>

Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>

* Remove rosetta instructions for Apple Silicon (#22174)

* Bastard Keyboards: Add support for Dilemma Max (4x6_4) (#22064)

* tentatively add dilemma 4x6_4 WIP untested
PR by Casuanoob.

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Miscellaneous fixes for recently merged keyboards (#22179)

* Add Soulstone keyboard (#22093)

* [Keyboard] Add SyenaKeyboards (#22168)

Co-authored-by: Syenasweta <syenasweta@gmail.com>

* Fix minimum python version references (#22191)

* Added /handwired/ziyoulang_k3_mod (#21965)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add the Split67 keyboard PCB (#22107)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Monstargear XO87 Soldered: correct layout data (#22199)

Correct key positions on the bottom row for `LAYOUT_tkl_ansi_tsangan`.

[chore]

* Add Acheron Themis and its variants (#22142)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add keyboard Projectd/75/Projectd_75_ansi (#21628)

Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* [Keyboard] Add SP-111 v2 keyboard (#21652)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add qwertyqop60hs (#22164)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added 3dp660 oled keyboard (#20591)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: xia0 <xiao@morgan.net.au>

* Add Wave keyboard (#22054)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Keychron Q1 Version 2 (#20416)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>

* Add Line TKL keyboard (#22172)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add printedpad keyboard (#21202)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add `qmk ci-validate-aliases` (#22205)

* Move orphaned Yugo-M files (#22211)

Moves files that were left behind by #14996.

[bugfix]

* Klein_HS PCB support (#22203)

* Update vid for printedpad (#22215)

* Adding BriianPowell Discipline Keyboard Layout Updates (#21474)

* Flag vial keymaps in 'qmk lint' (#22227)

* Fix build error when Automatic Mouse Layer is enabled (#22229)

* [Keyboard] vinhcatba/uncertainty (#21142)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.2: update layers

* v0.3: add VIA support

* v0.3: add VIA support (continue)

* vinh: test fw for uncertainty (deprecated)

* v0.1: update base firmware with 2 layers, use bongo cat animation for oled

* v0.1: change directory

* v0.1: cleanup

* v0.3: change keyboard name, remove eeprom config save in VIA keymap

* cleanup for PR

* update readme

* add license to header files, update ws2812 driver and DI_PIN to info.json

* resovle PR suggestion for config.h, halconf.h, mcuconf.h

* update info.json regarding PR comment

* update bongo.h regarding PR comment

* add oled mode toggle

* update readme.md, rules.mk regarding PR comment

* add submodule update

* move oled handle to keyboard level

* Update keyboards/vinhcatba/uncertainty/uncertainty.c

forgot user-level proces_record

* now using bongo as source file

* Apply suggestions from code review

remove default value codes

* move WPM_ENABLE and ENCODER_MAP_ENABLE to keymap level

* Apply suggestions from code review

* Apply suggestions from code review

* Update keyboards/vinhcatba/uncertainty/config.h

* [Keyboard] Split-Cloud Handwired (#21327)

* Added new handwired, the Split-Cloud

* Minor changes to make clang-format happy

* Alligned files with project standard.

Trimmed midi out of the default layout, modified the readme, and removed unnecessary files.

* Simplified default keymap further, changes to info.json

* Moved image to imgur, simplified, and removed the unneeded rules.mk file

* Update keyboards/handwired/split_cloud/readme.md

Changed image in readme to Huge Thumbnail instead of Original.

* Removed unneeded tri layer custom keycodes

Now using the built-in functionality!

* Update keyboards/handwired/split_cloud/readme.md

Accidentally reverted this when making other changes

* Fix typo in `docs/feature_tri_layer.md` (#22232)

`Stes` -> `Sets`

* [Keyboard] HorrorTroll Nyx (#21143)

* Added support keyboard Nyx

* Resolved zvarc suggested and lint error

* Delete FORCE_NKRO due to problem with BIOS on mainboard

* Resolved dunk2k suggested and limit more brightness, disable some RGB Effect

* Resolved drashna suggested

* Delete flower blooming effect and move to rev1 folder

* Yampad add missing includes for CONVERT_TO (#22237)

* Yampad add missing includes for CONVERT_TO (#22237)

* Fix old usage of UNICODE_MODE_MAC (#22238)

* [Keyboard] Add MIIIW BlackIO83 (#21970)

* Add MIIIW BlackIO83

* Improve the code

* Updated instructions for entering the bootloader

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/rev_0100/config.h

* Update keyboards/miiiw/blackio83/config.h

* Update config.h

* [Keyboard] MonsGeek M3 (#20542)

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* Add keybord monsgeek m3.

* updata rules.mk

* add readme.md

* delete monsgeek\m3\rgb_matrix_kb.inc

* add DISABLE_M3_KEYCODES

* user_config --> kb_config

* Move code to info.json,and removed redundant features

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update readme.md

* Update keyboards/monsgeek/m3/config.h

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/readme.md

* Update m3.c

* Update m3.c

* Update info.json

* Update keymap.c

* Update keymap.c

* Update config.h

* Update keyboards/monsgeek/m3/readme.md

* Update keyboards/monsgeek/m3/rules.mk

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/keymaps/default/keymap.c

* Update keyboards/monsgeek/m3/keymaps/via/keymap.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/info.json

* Update m3.c

* Update keyboards/monsgeek/m3/info.json

* Update keyboards/monsgeek/m3/m3.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* add missing gpio include for pointing motion pin (#22246)

* [Keyboard] Hineybush H101 (#22186)

* initial h101 commit

* update keymap and add via support

* update doc stuff

* readme typo

* updates

* add indicator LEDs, needs testing

* update readme

* update USB VID/PID to match VIA json

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/default/keymap.c

* Update keyboards/hineybush/h101/readme.md

* Update keyboards/hineybush/h101/keymaps/via/keymap.c

* updates from PR comments

* updates per PR comments

* idk why the folder is acting weird

* maybe this will fix it

* update to hopefully fix everything weird

* keycode fixes

* keymap updates

* add 60_(ansi|iso)_wkl* community layouts (#21811)

* add 60_(ansi|iso)_tsangan_wkl* layouts

* Update keymap.c

* `tsangan_wkl` to `wkl`

* update info.json

* split backspace changes

* Apply suggestions from code review

* Keyboard change blu/vimclutch to hardware revision B. (#22247)

Co-authored-by: Ryan <fauxpark@gmail.com>

* Add Ratio60 PCB (#21609)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: 4pplet <4pplet@protonmail.com>
Co-authored-by: 4pplet <stefan.ess@gmail.com>

* Add 62 key Dactyl Manuform (#21394)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add `60_iso_tsangan_split_bs_rshift` Community Layout (#21812)

* add 60_(ansi|iso)_tsangan_split_bs_shift layouts

* shift to rshift

* remove 60_ansi_tsangan_split_bs_rshift

* Update layouts/default/60_iso_tsangan_split_bs_rshift/info.json

* Kisakey (#22217)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Reword mention of personal keymaps from PR checklist (#22258)

* Add support for CSTC40 keyboard (#22154)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: lesshonor and waffle87
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: lesshonor
Co-authored-by: itsvar <120035196+itsvar8@users.noreply.github.com>

* [Keyboard] Add support for EnviousDesign keyboards (#17544)

* Add support for Envious.Design Keyboards

Add various RP2040 keyboards I've designed.

* Fixed missing newlines at EOF.

* Ran CLANG-FORMAT and sorted out any potential issues.

* Gave keyboards all unique product IDs

* Made requested changes.

* removed all VIAL related code
* sorted out license on all *.h or *.h  files
* removed outdated RESET Keycode

* missed some VIAL bits

* Made suggested changes

* Made Suggested Changes

* missed one file to change.

* Attempted fix of CI issues

* Update .gitmodules

* Revert "Update .gitmodules"

This reverts commit f4bace51621ed0c5bd40c729fa1c6339f665f0b7.

* hopefully fixed all CI and QMK lint issues

* resolve more CI errors and a couple typos

* fixed last remaining issue as of now

* made requested changes

* further more on suggested change

* Delete README.md

* derpy workaround to change case of readme

* finished up 65M firmware

via does not work, I will investigate another time.

* re-did a lot of 65M firmware bits, also fixed via for this board

* corrected mistake in firmware

* made suggested change to info.json for 65m/60F

* finished 65M non via keymap and re-sorted via keymap

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Update keyboards/enviousdesign/tkl/rgb/keymaps/default/keymap.c

* Apply suggestions from code review

Verified updated Info.json works for aforementioned keyboards,

* Follow-up commit with aforementioned suggested changes

* Apply suggestions from code review

correction to a couple typos pointed out.

* follow-up removed some un-needed Readmes and corrected a mistake in 60F via keymap

* Apply suggestions from code review

* Added images of PCB to each Keyboard README

* Apply suggestions from code review

* Update keyboards/enviousdesign/60f/readme.md

* Added missing aspects of info.json and corrected RGB_DI_PIN to WS2812_DI_PIN in RGB keyboard

* made requested changes

* Update config.h

* used QMK migrate to update info.json

* Apply suggestions from code review

* Update keyboards/enviousdesign/65m/info.json

* renamed named keyboards as suggested and added commission keyboard to repo

* renamed file to hopefully please lint

* renamed things to be all lower case since lint doesn't appear to look for upper case

* updated keymap.c and removed unnecessary file

* fixed readme and a couple other bits

* converted various aspects to json information

* attempt fix for lint error

* fix some issues I overlooked

* Apply suggestions from code review

* moved some folders about as suggested

* Made suggested changes

* Apply suggestions from code review

* removed outdated config.h

* fixed errors in 65M and mini1800

* Apply suggestions from code review

* Update keyboards/enviousdesign/delirium/rev1/info.json

* Update keyboards/enviousdesign/65m/info.json

* Apply suggestions from code review

* [Keyboard] Inland V83P (#21725)

* [Keyboard]add v83p keyboard.

* Update keymap.c

* Update keyboards/inland/v83p/keymaps/via/keymap.c

* Update keyboards/inland/v83p/keymaps/default/keymap.c

* Update keyboards/inland/v83p/config.h

* Update keyboards/inland/v83p/info.json

* Update info.json

* Update keymap.c

* Update keyboards/inland/v83p/mcuconf.h

* Update keyboards/inland/v83p/halconf.h

* Update keyboards/inland/v83p/info.json

* Update keyboards/inland/v83p/v83p.c

* Update keymap.c

replace the tabs with spaces

* Update keymap.c

replace the tabs with spaces

* Update keyboards/inland/v83p/info.json

* [Keyboard] RPNeko65 by lendunistus (#21747)

* initialise rpneko65, info.json

* force NKRO

* define WS2812 stuff

and capitalise RPNeko65

* use RGBlight, add ANSI to keymap.c

also remove _ADC suffixes from pins

* basic readme

plus making it so the info.json RGB values are actually recognised as integers

* update repository URL

* fix info.json formatting

* caps lock LED implementation

"borrowed" from waffling60

* put RGBLIGHT_ENABLE in json

also remove "pin" from the rgblight option

* add actually correct keymaps

also reformat info.json

* move to designer folder, add image to README

* move keyboard to separate revision folder

and remove erroneous tag from config.h

* remove brightness/hue/saturation steps

* change device version to 1.0

* move quantum.h include to top

* actually, let's try a new image

I also forgot to save the info.json file beforehand
oops

* Remove comma in info.json

* Community layouts in info.json

* Delete rpneko65/readme.md

* Apply suggested changes to readme

* Suggested code changes

* Suggested imgur link

* rename code file

this was the issue all along
sigh

* Correct layer matching this time

* Move Enter in info.json

* README/info.json change

* Another batch of suggestions

* amend alice* community_layouts in keyboards (#21846)

* add alice* to keyboards

* add seigaiha

* additions

* Update info.json

* revert wanderland

* add tgr/alice

* add matrix diagram.md

* [Keyboard] Add Okayu (#22077)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Enable encoder map on navpad1.0 (#22266)

* [Keyboard] jukaie/jk01 (#20573)

* ADD Keyboard

* Resolved requested changes

* update keymap.c file

* resolved requested changes

* updated info.json file

* Updated requested changes

* Delete JK01.h file

* Resolved requested changes

* Delete readme.md

* add rules.mk to default folder

* Upload default/keymap.c

* Add via/keymap.c

* Updated info.Json file

* Change VID in info.json

* Resolved requested changes

* Resolved requested changes.

* Resolved requested changes

* Updated changes

---------

Co-authored-by: gksygithub <gskyGit@gsky.com.tw>

* Fix typo in keychron v6 encoder map enable (#22272)

* Allow for disabling of parallel processing of qmk find and `qmk mass-compile`. (#22160)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fixup symbol sizing listing. (#22307)

* [Keyboard] Add purin (#22306)

* [Keyboard] Add QK100 (#21782)

Co-authored-by: Drashna Jaelre <drashna@live.com>

* Remove extra led_matrix_indicators_user call (#22329)

* [Keyboard] Add LGBTKL (#22331)

Co-authored-by: jack <0x6a73@protonmail.com>

* Clarify PIO define is optional in docs. (#22339)

* [Keyboard] Add Kaly42 (#22282)

* Added Kaly/Kaly42 keyboard's minimal files.

* Updated readme.md; New link and improved description text.

* Apply suggestions from code review

Added all suggestions given by @dunk2k

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Added community_layouts to info.json.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

---------

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Keyboard] add pisces pcb (#22334)

* [Keyboard] Waffling60 Rev E ANSI Hotswap (#22270)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add darkproject/kd87a_bfg_edition keyboard (#18981)

Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>

* eason/aeroboard - Modify bootloader (#22286)

* [Keyboard] doksin (#22220)

* [Keyboard] Add Velvet hotswap & solder (#22284)

* Flag more VIAL config options in lint (#22345)

* Removed clueboard link as the website has been parked for some time (#22290)

* [Keyboard] add enter67 keyboard (#22346)

Co-authored-by: “yuezp” <“yuezpchn@126.com”>

* Fix for swapped PID and VID (#22372)

* Add Kindakeyboards Conone65 Via support (#22320)

* [Keyboard] Add TeaQueen (#22352)

Co-authored-by: jack <0x6a73@protonmail.com>

* [Keyboard] Add Klein_SD (#22371)

Co-authored-by: Joel Challis <git@zvecr.com>

* boardsource/unicorne - Fixed OLED layers being all set to zero (#22389)

* docs(rgblight): fix typos (#22399)

* Teaqueen: correct layout data (#22406)

* [Keyboard] Add Piantor Pro (#22361)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* Red Herring PCB support (#22409)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: jack <0x6a73@protonmail.com>

* Add riblee handwired split keyboard (#22277)

* [Keyboard] Add Duet Switch Tester (#22367)

Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Add PCB Utopia88 (#22257)

* Fix Herringbone pro Layouts (#22317)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add iso85k keyboard (#22411)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Fix corne keylog (#22420)

* [Keyboard] Fix bug in set_keylog function

Fixes issue where some keys would not trigger the oled to output the row
and column of a pressed key (would happen with LT(...) for my keymap)

* [Keyboard] Tiny improvement to oled_render_keylog for crkbd

Added improvement suggestion I got for another keyboard

* Fix indicator LED definition for Sofle RGB. (#22408)

* Update layer state of Lily58 from 'Default' to 'Base' (#22397)

* Add SNES Macropad keyboard (#22377)

Co-authored-by: jack <0x6a73@protonmail.com>

* Update gregandcin/teaqueen (#22402)

* [Keyboard] Add alpaca/wfeclipse (#22230)

Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>

* Add Ploopy Madromys mouse (#21989)

Added PloopyCo madromys/adept mouse
Co-authored-by: Drashna Jaelre <drashna@live.com>

* [Keyboard] Add MariOrion v2.5 (#22273)

* Pushed MariOrion v2.5 to the branch. Prod and proto version added.

* Pushed MariOrion v2.5 to the branch. Prod and proto version added.

* Proper addition of layout options

Addition of split bs rshift tsangan layout options.

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Merge branch 'toril940mariorion_v25' of github.com:toril940/qmk_firmware into toril940mariorion_v25

* Merge branch 'toril940mariorion_v25' of github.com:toril940/qmk_firmware into toril940mariorion_v25

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/default/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Updated readme.md with more information regarding make commands, and proto vs prod.

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/keymaps/default/keymap.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Amended some changes to info.json - community layouts changed from scope to array.

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Removed via.json from the via keymaps. Replaced with matrix_diagram.md. via.json file moved off to [public mariorion_v25 repo](https://github.com/toril940/orion-v25)

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Removed via.json from the via keymaps. Replaced with matrix_diagram.md. via.json file moved off to [public mariorion_v25 repo](https://github.com/toril940/orion-v25)

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/rules.mk

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Revert keyboards/gray_studio/think65/solder/solder.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/matrix_diagram.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/readme.md

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Pushed new info.json and keymap.c files.

* Pushed new info.json and keymap.c files.

* Fixes to LED driver wrt PWM definitions with STM.

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/info.json

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/info.json

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/keymaps/via/keymap.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Committing a details update to readme.md.

* Committing a details update to readme.md.

* Update keyboards/mariorion_v25/prod/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/mariorion_v25.c

Co-authored-by: Ryan <fauxpark@gmail.com>

* Revert "Committing a details update to readme.md."

This reverts commit 068a82a1fcf1996d87f7f97a10e9f5fbbee79a29.

* Committing a details update to readme.md.

* Update keyboards/mariorion_v25/halconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/mcuconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/prod/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/proto/config.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Update keyboards/mariorion_v25/halconf.h

Co-authored-by: Ryan <fauxpark@gmail.com>

* Production pictures replacing the standard ones in the readme.md :)

* waffle87 requests bundled:
- Licence headers added
- Codeblocked matrix_diagram.md
- Consolidated files where possible
- Removed excess from config.h

---------

Co-authored-by: toril940 <anastasialucas940@hotmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: Ryan <fauxpark@gmail.com>

* Add `qmk license-check` developer-level CLI command. (#22075)

* add 5087 keyboard (#20557)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>

* studiokestra/line_tkl: correct layout data (#22455)

* fix `layouts` data

* add EoF

* [Keyboard] Fixes to make snes_macropad play nicer with qmk configurator (#22432)

* [Keyboard] Change default implementation for get_layer_name_user

Will now show the layer number instead of "Unknown", since this is
what will be shown if QMK Configurator is used to compile the
firmware.

* [Keyboard] Update the layout info

This makes it look sort of like a macropad + gamepad rather than an 4x6
ortholinear keyboard.

* [Keyboard] Fix default implementation of get_layer_name_user

Based on feedback from code review the implementation was swapped in
favor of using get_u8_str. This implied a change to the argument type
from int to uint8_t, which cascaded into the existing keymaps. (This
made sense in general, since the return type of get_highest_layer is
also a uint8_t.)

* add `68_ansi` Community Layout to nebula68b (#22433)

* Fix typos: key-modifer→key-modifier and interacton→interaction (#22464)

* Bs equals (#21690)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: jack <0x6A73@pm.me>

* Update stale.yml (#22473)

* Update stale.yml

* [Keyboard] Add Eden (#22467)

Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* Add leonardo build target for leonardo + usb2.0 shield based projects (#22243)

* [Keyboard] Add dnworks 997pt3 (#22466)

Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>

* [Doc] Improve converter references (#21801)

* reset master to upstream (#35)

* Update 1up keymaps (#36)

* Fix IJ debugger shortcut (#37)

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Lasse Luttermann <lasse.luttermann@gmail.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Andrew Kannan <andrew.kannan@klaviyo.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Idan Kamara <i@idank.me>
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Co-authored-by: Jay Greco <jayv.greco@gmail.com>
Co-authored-by: Frank Ebel <git@ebel.page>
Co-authored-by: ziptyze <mwcordier@gmail.com>
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Co-authored-by: temp4gh <temp4bbs@163.com>
Co-authored-by: jack <0x6a73@protonmail.com>
Co-authored-by: syc <squall_sha@163.com>
Co-authored-by: Wolf Van Herreweghe <wolfvanh@gmail.com>
Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Wolf <contact@vwolf.be>
Co-authored-by: NCKiser <37519411+NCKiser@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: 3geek14 <nerd.of.pi@gmail.com>
Co-authored-by: Vino Rodrigues <366673+vinorodrigues@users.noreply.github.com>
Co-authored-by: Falco Gerritsjans <FalcoG@users.noreply.github.com>
Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com>
Co-authored-by: Luis Garcia <luis@bitjester.com>
Co-authored-by: harveysch <126267034+harveysch@users.noreply.github.com>
Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
Co-authored-by: TreasureTypes <73436366+TreasureTypes@users.noreply.github.com>
Co-authored-by: Constantine Karos <36245370+karosc@users.noreply.github.com>
Co-authored-by: Yak <68242321+yakMM@users.noreply.github.com>
Co-authored-by: Moritz Plattner <moritz.plattner@gmx.net>
Co-authored-by: Controller Works <103382872+controller-works@users.noreply.github.com>
Co-authored-by: Filip Sund <filip.sund@gmail.com>
Co-authored-by: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Co-authored-by: ShandonCodes <shandon@shandon.codes>
Co-authored-by: Deddia Permana <deddiapermana97@gmail.com>
Co-authored-by: peepeetee <43021794+peepeetee@users.noreply.github.com>
Co-authored-by: Albert Y <76888457+filterpaper@users.noreply.github.com>
Co-authored-by: Dan Ford <dan-github2@dlford.co>
Co-authored-by: Joe Scotto <8194147+joe-scotto@users.noreply.github.com>
Co-authored-by: Joy Lee <joylee.lc@foxmail.com>
Co-authored-by: Joy <chang.li@westberrytech.com>
Co-authored-by: Poring <97579443+PoringH@users.noreply.github.com>
Co-authored-by: Charles Strahan <charles@cstrahan.com>
Co-authored-by: lalalademaxiya1 <66767061+lalalademaxiya1@users.noreply.github.com>
Co-authored-by: dztech <moyi4681@users.noreply.github.com>
Co-authored-by: Apteryks <maxim.cournoyer@gmail.com>
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Ryan Neff <ryan.ray.neff@fluke.com>
Co-authored-by: Daniel Osipishin <88534270+subrezon@users.noreply.github.com>
Co-authored-by: Daniel Osipishin <danielos@retarus.de>
Co-authored-by: era <73109780+eerraa@users.noreply.github.com>
Co-authored-by: lendunistus <53618962+lendunistus@users.noreply.github.com>
Co-authored-by: Ethan Perry <86326912+wheres-perry@users.noreply.github.com>
Co-authored-by: Tom singleton <Radther@users.noreply.github.com>
Co-authored-by: T.A <83424097+t0kies@users.noreply.github.com>
Co-authored-by: tokky <tokky@localhost-live.attlocal.net>
Co-authored-by: DeskDaily <65656486+DeskDaily@users.noreply.github.com>
Co-authored-by: Neil Brian Ramirez <nightlykeyboards@gmail.com>
Co-authored-by: Neil Brian Ramirez <nightlyboards@gmail.com>
Co-authored-by: Ben Cooper <63478578+bncpr@users.noreply.github.com>
Co-authored-by: plaublin <pl@pakupaku.me>
Co-authored-by: Andrew Kannan <andrew.kannan@gmail.com>
Co-authored-by: Michael Büchler <michael.buechler@posteo.net>
Co-authored-by: Ross Montsinger <rmontsinger@gmail.com>
Co-authored-by: spbgzh <72414103+spbgzh@users.noreply.github.com>
Co-authored-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
Co-authored-by: Yanfei Guo <yanf.guo@gmail.com>
Co-authored-by: Yanfei Guo <yguo@anl.gov>
Co-authored-by: DUILCHOI <48977039+duilchoi@users.noreply.github.com>
Co-authored-by: DOIO2022 <116554792+DOIO2022@users.noreply.github.com>
Co-authored-by: Pablo Martínez <58857054+elpekenin@users.noreply.github.com>
Co-authored-by: Brian Low <brian@brianlow.com>
Co-authored-by: Thomas Weißschuh <thomas@t-8ch.de>
Co-authored-by: casuanoob <96005765+casuanoob@users.noreply.github.com>
Co-authored-by: Sergey Fedorov <oni.strech@gmail.com>
Co-authored-by: Syenasweta <nshrllh.l.fz@gmail.com>
Co-authored-by: Syenasweta <syenasweta@gmail.com>
Co-authored-by: Coom <1655787+coomstoolbox@users.noreply.github.com>
Co-authored-by: yuezp <49514776+LXF-YZP@users.noreply.github.com>
Co-authored-by: “yuezp” <“yuezpchn@126.com”>
Co-authored-by: Álvaro A. Volpato <alvaro.augusto.volpato@gmail.com>
Co-authored-by: gskygithub <106651989+gskygithub@users.noreply.github.com>
Co-authored-by: gksygithub <106651989+gksygithub@users.noreply.github.com>
Co-authored-by: thompson-ele <ele.thompson12@gmail.com>
Co-authored-by: leyew <102467346+itsme-zeix@users.noreply.github.com>
Co-authored-by: xia0 <307671+xia0@users.noreply.github.com>
Co-authored-by: xia0 <xiao@morgan.net.au>
Co-authored-by: Etienne Collin <collin.etienne.media@gmail.com>
Co-authored-by: adophoxia <100170946+adophoxia@users.noreply.github.com>
Co-authored-by: Adophoxia <andyao1528@gmail.com>
Co-authored-by: studiokestra <74369928+studiokestra@users.noreply.github.com>
Co-authored-by: noahbei <123449614+noahbei@users.noreply.github.com>
Co-authored-by: Brian <brian@powell.place>
Co-authored-by: ikorihn <16367098+ikorihn@user…
mopemope pushed a commit to mopemope/qmk_firmware that referenced this pull request Feb 7, 2024
commit 4d0ec6ae59383ece95d442b9c9e6c5a0ff379ce5
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Thu Sep 21 07:18:58 2023 +0900

    Update SF6

commit dd605bef96e753a2a80c282a111f25f51d5f1a5f
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Thu Sep 14 22:54:28 2023 +0900

    fix

commit 0510fd031bbf779a2946eb305f437bd1364cc487
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Wed Sep 13 15:45:08 2023 +0900

    Fix

commit dd1a24b87f005fe65aefb8122a52b143eb305f02
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Wed Sep 13 09:39:51 2023 +0900

    Fix

commit 2dbc29698576e4aabcb17bc83f765b46a161189c
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Sun Sep 3 11:43:41 2023 +0900

    Update TAB

commit eab62186adf192f33ebef06ae28fba00cff097df
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Sat Sep 2 20:53:38 2023 +0900

    Update uzu42

commit d75b883b838c00a740aa043b3dc6dfc2a20e28e3
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Sat Sep 2 18:20:11 2023 +0900

    Add game layer

commit 43e444172f4d3a3df9742fcbf00af3b980238252
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Wed Aug 30 11:11:27 2023 +0900

    Update

commit c6eb97ee5b914de7b90a63fe84a15e99d9d9025a
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Fri Aug 11 20:49:09 2023 +0900

    Add foobar

commit 67f82b4e0c5ae6d8f6f758597efab8102b6d1062
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Mon Aug 28 14:51:55 2023 +0900

    Add uzu42

commit d41a9da4cfd6b6588b592afb42c28e283c8888ab
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Thu Aug 24 00:28:02 2023 +0900

    Add totem

commit 9653f3892b599752dbe63676ad296de7306e7c81
Author: Yutaka Matsubara <matsubara@abby.co.jp>
Date:   Tue Aug 8 15:48:50 2023 +0900

    Add minidox

commit cdff9b8
Author: Joel Challis <git@zvecr.com>
Date:   Wed Sep 20 14:13:51 2023 +0100

    Restrict "feature" and "animation" keys (qmk#21895)

commit 16ad362
Author: Duncan Sutherland <dunk2k_2000@hotmail.com>
Date:   Wed Sep 20 11:38:36 2023 +0100

    amend 96_(ansi|iso) community_layouts in keyboards/ (qmk#22066)

commit 05dfe9f
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Tue Sep 19 23:35:37 2023 -0700

    Alchemist Keyboards OGRN Layout Addition (qmk#22080)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    [style]

    * Add `LAYOUT_ortho_5x4`

    [enhancement]

    * Touch-up keymaps

    - update grid-alignment (layer-to-layer consistency)
    - fix box drawings

    [style]

    * Extend Community Layout support

    Add `ortho_5x4` to supported Community Layouts.

    [enhancement]

commit 2742935
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Tue Sep 19 16:42:12 2023 -0700

    SapuSeven MacroPad12: rename LAYOUT to LAYOUT_ortho_3x4 (qmk#22081)

commit 8c92c0a
Author: Deddia Permana <deddiapermana97@gmail.com>
Date:   Wed Sep 20 06:08:58 2023 +0700

    Add OLED logo DP3000 macropad (qmk#21936)

commit 4ce3a1c
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Tue Sep 19 15:08:09 2023 -0700

    Ubest VN Community Layout Support (qmk#22070)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_65_ansi_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi`

    [enhancement]

    * Add `LAYOUT_65_iso_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso`

    [enhancement]

    * Enable Community Layout support

    [enhancement]

    * Touch-up keymaps

    - apply four-space indent
    - grid-align keycodes

    [style]

commit 56a87ef
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Tue Sep 19 14:32:16 2023 -0700

    DZTech Pluto Community Layout support (qmk#22069)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    - apply four-space indent
    - sort JSON keys in layout objects

    [style]

    * Correct `LAYOUT_all` data

    Correct key sizes/positions of:

    - ANSI Backslash [1, 13]
    - ANSI Enter [1, 14]
    - Fn [3, 13]

    [chore]

    * Correct `LAYOUT_iso` data

    Correct position of Fn key [3, 13].

    [chore]

    * Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_tsangan`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_wkl`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_tsangan`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_wkl`

    [enhancement]

    * Enable Community Layout support

    [enhancement]

    * Touch-up keymaps

    Update keycode grid alignment.

    [style]

commit ef31109
Author: Shandon Anderson <CheeseL0ver@users.noreply.github.com>
Date:   Mon Sep 18 21:00:11 2023 -0400

    [Keyboard] Add riot pad (qmk#22060)

    Co-authored-by: ShandonCodes <shandon@shandon.codes>

commit 16f2a3e
Author: Dasky <32983009+daskygit@users.noreply.github.com>
Date:   Mon Sep 18 19:55:51 2023 +0100

    Add missing gpio include to ps2 vendor (qmk#22063)

commit 48b4ce6
Author: Filip Sund <filip.sund@gmail.com>
Date:   Mon Sep 18 14:52:48 2023 +0200

    Adding support for the Pteron56 (PCB) keyboard (qmk#21731)

commit cd095c8
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sun Sep 17 21:57:03 2023 -0700

    Wolf Ziggurat Layout Additions (qmk#22053)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    [style]

    * Touch-up layout data

    Move the ISO Hash key to the main key area.

    [chore]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_65_xt_ansi_blocker_tsangan`

    [enhancement]

    * Add `LAYOUT_65_xt_iso_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_65_xt_iso_blocker_tsangan`

    [enhancement]

commit 6ba53f6
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sun Sep 17 21:26:13 2023 -0700

    Wolf Silhouette Community Layout Support (qmk#22052)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    [style]

    * Touch-up layout data

    Move the ISO Hash key to the main key area.

    [chore]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_tkl_nofrow_ansi_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_tsangan_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_tsangan`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_wkl_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_ansi_wkl`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_tsangan_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_tsangan`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_wkl_split_bs_rshift`

    [enhancement]

    * Add `LAYOUT_tkl_nofrow_iso_wkl`

    [enhancement]

    * Enable Community Layout support

    [enhancement]

commit 25df4ba
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sun Sep 17 20:50:14 2023 -0700

    Wolf Neely65 Touch-Up (qmk#22045)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    [style]

    * Touch-up keymaps

    - grid-align keycodes
    - use QMK-native keycode aliases

    [refactor]

    * Fix keymaps

    Fix keycodes being assigned out of order with respect to `info.json`.

    - move XT function keys to left side
    - move keycodes for position [2, 14] from Home Row to Number Row

    [bugfix]

    * Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_tsangan_wkl_split_bs`

    [refactor]

    * Add `LAYOUT_65_xt_ansi_blocker_tsangan_wkl`

    [enhancement]

commit b5181e3
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sun Sep 17 20:17:51 2023 -0700

    Viktus Styrka Topre Layout Standardization and Touch-Up (qmk#22044)

    * Add layout/matrix diagram

    [docs]

    * Alias `LAYOUT_all` to `LAYOUT_split_6u`

    `LAYOUT_all` and `LAYOUT_split_6u` represent the same matrix positions
    and sequence, so implement the former as an alias.

    [refactor]

    * Touch-up keymaps

    - grid-align keycodes
    - use QMK-native keycode aliases

    [chore]

    * Friendly-format `info.json`

    [style]

    * Correct layout data

    Correct key sizes/positioning on the bottom row.

    [chore]

    * Rename `LAYOUT_2u_6u` to `LAYOUT_65_xt_ansi_blocker`

    [refactor]

    * Rename `LAYOUT_2u_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan`

    [refactor]

    * Rename `LAYOUT_split_6u` to `LAYOUT_65_xt_ansi_blocker_split_bs`

    [refactor]

    * Rename `LAYOUT_split_7u` to `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

    [refactor]

commit 6129f5f
Author: Controller Works <103382872+controller-works@users.noreply.github.com>
Date:   Sun Sep 17 13:41:26 2023 -0400

    Add all RGB Matrix Animations to city42 (qmk#21992)

commit 652c5a9
Author: Moritz Plattner <moritz.plattner@gmx.net>
Date:   Sun Sep 17 19:35:29 2023 +0200

    geistmaschine/macropod: fix issues waking up after suspend on apple devices (qmk#22023)

commit 9f9ad95
Author: Yak <68242321+yakMM@users.noreply.github.com>
Date:   Sun Sep 17 19:32:44 2023 +0200

    Fix paragon encoder pinout for soldered version (qmk#22043)

commit 1fbd45a
Author: Constantine Karos <36245370+karosc@users.noreply.github.com>
Date:   Sun Sep 17 08:18:26 2023 -0400

    Add missing gpio and chibios defs to uart.h (qmk#22033)

commit 39fafda
Author: Joel Challis <git@zvecr.com>
Date:   Sun Sep 17 08:11:32 2023 +0100

    Move Digitizer to "Software Features" (qmk#22031)

commit 4162d1f
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sat Sep 16 14:19:09 2023 -0700

    Sho Studios ARC Layout Addition (qmk#22037)

    * Add layout/matrix diagram

    [docs]

    * Format `info.json`

    Apply four-space indent.

    [style]

    * Add `LAYOUT_ansi_split_bs`

    [enhancement]

commit 6b1b746
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Sat Sep 16 13:41:40 2023 -0700

    RuckerMachine RM Fullsize Layout Additions (qmk#22036)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_fullsize_108_ansi`

    [enhancement]

    * Add `LAYOUT_fullsize_108_ansi_tsangan`

    [enhancement]

commit 71d5d14
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Fri Sep 15 16:39:34 2023 -0700

    Rico Phoenix Project No. 1 Layout Additions (qmk#22035)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_65_ansi_rwkl_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi_rwkl`

    [enhancement]

    * Add `LAYOUT_65_ansi_wkl_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi_wkl`

    [enhancement]

    * Add `LAYOUT_65_iso_rwkl_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso_rwkl`

    [enhancement]

    * Add `LAYOUT_65_iso_wkl_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso_wkl`

    [enhancement]

commit 4767554
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Fri Sep 15 15:25:52 2023 -0700

    Raindrop Layout Updates (qmk#22032)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT_all` to `LAYOUT_64_ansi_split_bs`

    [refactor]

    * Add `LAYOUT_60_ansi_split_bs_rshift`

    [enhancement]

commit d83ac7a
Author: TreasureTypes <73436366+TreasureTypes@users.noreply.github.com>
Date:   Fri Sep 15 23:44:41 2023 +0200

    [Keyboard] Adding Treasure TYPE-9 series III (qmk#21748)

    Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
    Co-authored-by: jack <0x6a73@protonmail.com>
    Co-authored-by: Joel Challis <git@zvecr.com>
    Co-authored-by: Drashna Jaelre <drashna@live.com>

commit 29d1a2c
Author: ziptyze <mwcordier@gmail.com>
Date:   Fri Sep 15 14:56:41 2023 -0400

    [Keyboard] add 1upkeyboards 1upslider8 (qmk#21546)

    Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
    Co-authored-by: jack <0x6a73@protonmail.com>
    Co-authored-by: Drashna Jaelre <drashna@live.com>

commit e7ae5ec
Author: harveysch <126267034+harveysch@users.noreply.github.com>
Date:   Fri Sep 15 20:34:21 2023 +0200

    [Keyboard] Add splitkb.com's Aurora Helix (qmk#21871)

    Co-authored-by: Less/Rikki <86894501+lesshonor@users.noreply.github.com>
    Co-authored-by: Ryan <fauxpark@gmail.com>

commit 49f1cbd
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Fri Sep 15 00:47:10 2023 -0700

    Neson Design Nico Layout Additions (qmk#22027)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_65_xt_ansi_blocker_split_bs`

    [refactor]

    * Add `LAYOUT_65_xt_ansi_blocker`

    [enhancement]

    * Add `LAYOUT_65_xt_ansi_blocker_tsangan`

    [enhancement]

    * Add `LAYOUT_65_xt_ansi_blocker_tsangan_split_bs`

    [enhancement]

    * Touch-up keymaps

    - grid-align keycodes
    - use four-space indent
    - use QMK-native keycode aliases

    [refactor]

    * Update `via` keymap

    Update the `via` keymaps to have the same key assignments as the
    `default` keymap, which is more fleshed out.

    [chore]

commit 06dfa1c
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 23:18:28 2023 -0700

    Nix Studio Lilith Layout Additions (qmk#22028)

    * Add layout/matrix diagram

    [docs]

    * Sort keys in `info.json`

    [style]

    * Add `LAYOUT_65_ansi_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi_blocker_tsangan`

    [enhancement]

    * Add `LAYOUT_65_iso_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

    [enhancement]

    * Extend Community Layout support

    [enhancement]

commit 598303f
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 18:07:48 2023 -0700

    OwLab Jelly Evolv Solder Layout Additions (qmk#22029)

    * Add layout/matrix diagram

    [docs]

    * Friendly-format `info.json`

    [style]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_ansi_blocker`

    [enhancement]

    * Add `LAYOUT_ansi_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_ansi_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_ansi_blocker_tsangan`

    [enhancement]

    * Add `LAYOUT_iso_blocker`

    [enhancement]

    * Add `LAYOUT_iso_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_iso_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_iso_blocker_tsangan`

    [enhancement]

commit 3d86b92
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 15:47:03 2023 -0700

    QVEX Tech Lynepad2 Layout Update (qmk#22030)

    * Add layout/matrix diagram

    [docs]

    * Update layout data

    Update layout data to disambiguate the key/joystick/thumbpad functions
    in Configurator.

    [chore]

commit 46d679a
Author: Andrew Kannan <andrew.kannan@klaviyo.com>
Date:   Thu Sep 14 16:38:42 2023 -0400

    `qmk format-json`: Add an in-place mode to format json command (qmk#21610)

commit 4f26a8b
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 13:37:24 2023 -0700

    MonsGeek M1: Correct layout data (qmk#22026)

    Apply vertical offset to the arrow keys.

    [chore]

commit 58c2dae
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 12:44:07 2023 -0700

    Mode M256-WH Community Layout Support (qmk#22019)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_65_ansi_blocker`

    [refactor]

    * Add `LAYOUT_65_ansi_blocker_tsangan`

    [enhancement]

    * Enable Community Layout support

    [enhancement]

commit 294fc6c
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 12:07:22 2023 -0700

    Mode M256-WS Community Layout Support (qmk#22020)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_all`

    [refactor]

    * Add `LAYOUT_65_ansi_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi_blocker`

    [enhancement]

    * Add `LAYOUT_65_ansi_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_65_ansi_blocker_tsangan`

    [enhancement]

    * Add `LAYOUT_65_iso_blocker_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso_blocker`

    [enhancement]

    * patch `LAYOUT_65_iso_blocker_split_bs`

    * patch `LAYOUT_65_iso_blocker`

    * Add `LAYOUT_65_iso_blocker_tsangan_split_bs`

    [enhancement]

    * Add `LAYOUT_65_iso_blocker_tsangan`

    [enhancement]

    * Enable Community Layout support

    [enhancement]

commit 269c7b6
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 10:57:44 2023 -0700

    Mechlovin Zed65 910 Layout Standardization (qmk#22018)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT_65_iso_tsangan_split_bs` to `LAYOUT_iso_split_bs`

    [refactor]

    * Rename `LAYOUT_65_ansi_tsangan` to `LAYOUT_ansi`

    [refactor]

    * Rename `LAYOUT_65_ansi_blocker_tsangan` to `LAYOUT_ansi_blocker_tsangan`

    [refactor]

    * Rename `LAYOUT_65_ansi_tsangan_split_bs` to `LAYOUT_all`

    [refactor]

commit cfe52b6
Author: James Young <18669334+noroadsleft@users.noreply.github.com>
Date:   Thu Sep 14 10:20:14 2023 -0700

    Maze Studio Jocker 1800 Layout Additions (qmk#22016)

    * Add layout/matrix diagram

    [docs]

    * Rename `LAYOUT` to `LAYOUT_ansi_split_bs`

    [refactor]

    * Add `LAYOUT_ansi`

    [enhancement]

    * Add `LAYOUT_ansi_wkl_split_bs`

    [enhancement]

    * Add `LAYOUT_ansi_wkl`

    [enhancement]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants