aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Bump actions/checkout from 4 to 5 (#25554)dependabot[bot]2025-09-0914-17/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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>
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-093-7/+34
| |\ | |/ |/|
* | Print build failures with `qmk mass-compile` and `qmk userspace-compile` if ↵Nick Brassel2025-09-093-7/+34
| | | | | | | | requested (`-p`/`--print-failures`) (#25518)
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-094-0/+157
| |\ | |/ |/|
* | [Keyboard] Add the Clog (#23009)Sam Mohr2025-09-094-0/+157
| |
| * Update default OLED font (#25565)Ryan2025-09-092-35/+252
| |
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-093-0/+147
| |\ | |/ |/|
* | Add handwired/planck keyboard (#25506)Zackarias Montell2025-09-093-0/+147
| |
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-094-0/+209
| |\ | |/ |/|
* | Add 5x6_split/rev1 keyboard (#25507)Zackarias Montell2025-09-094-0/+209
| |
| * Migrate `g_led_config` to DD (L) (#25617)Jack Sangdahl2025-09-0912-235/+244
| |
| * Migrate `g_led_config` to DD (I) (#25600)Jack Sangdahl2025-09-0930-822/+1052
| |
| * Migrate `g_led_config` to DD (M1) (#25618)Jack Sangdahl2025-09-0921-384/+628
| |
| * Migrate `g_led_config` to DD (M2) (#25619)Jack Sangdahl2025-09-0928-352/+1115
| |
| * Migrate `g_led_config` to DD (M3) (#25620)Jack Sangdahl2025-09-0922-469/+641
| |
| * Migrate `g_led_config` to DD (NO) (#25621)Jack Sangdahl2025-09-0916-260/+468
| |
| * Migrate `g_led_config` to DD (P) (#25622)Jack Sangdahl2025-09-0920-379/+362
| |
| * Migrate `g_led_config` to DD (QR) (#25623)Jack Sangdahl2025-09-098-195/+380
| |
| * Migrate `g_led_config` to DD (S) (#25624)Jack Sangdahl2025-09-0928-538/+672
| |
| * Migrate `g_led_config` to DD (TUW) (#25625)Jack Sangdahl2025-09-0920-313/+513
| |
| * Migrate `g_led_config` to DD (H) (#25599)Jack Sangdahl2025-09-0923-463/+714
| |
| * Migrate `g_led_config` to DD (JK1) (#25601)Jack Sangdahl2025-09-0932-615/+1203
| |
| * Migrate `g_led_config` to DD (K2) (#25602)Jack Sangdahl2025-09-0922-431/+736
| |
| * Migrate `g_led_config` to DD (K3) (#25603)Jack Sangdahl2025-09-0919-323/+861
| |
| * Migrate `g_led_config` to DD (K4) (#25605)Jack Sangdahl2025-09-0924-377/+962
| |
| * Migrate `g_led_config` to DD (K5) (#25606)Jack Sangdahl2025-09-0924-390/+1102
| |
| * Migrate `g_led_config` to DD (K6) (#25607)Jack Sangdahl2025-09-0920-318/+900
| |
| * Migrate `g_led_config` to DD (G) (#25598)Jack Sangdahl2025-09-0928-1317/+1222
| |
| * Migrate `g_led_config` to DD (E, F) (#25561)Jack Sangdahl2025-09-0916-381/+480
| |
| * Migrate `g_led_config` to DD (D) (#25560)Jack Sangdahl2025-09-0932-436/+967
| |
| * Migrate `g_led_config` to DD (B, C) (#25559)Jack Sangdahl2025-09-0918-274/+570
| |
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-089-0/+430
| |\ | |/ |/|
* | Add Nyquist LM (#25583)Danny2025-09-089-0/+430
| |
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-074-0/+166
| |\ | |/ |/|
* | Add new keyboard "Palmbrain" (#25377)takashicompany2025-09-074-0/+166
| | | | | | | | | | | | Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com> Co-authored-by: Joel Challis <git@zvecr.com> Co-authored-by: jack <0x6a73@protonmail.com>
| * Refactor debounce algorithm with static allocation (#25515)フィルターペーパー2025-09-0710-397/+374
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Refactor debounce counters with direct indexing * Refactor code to use array indexing for debounce_counters * Use global MATRIX_ROW_SHIFTER macro * Refactor debounce algorithm with static allocation * Converted arrays to static allocation * Standardised use of MATRIX_ROWS_PER_HAND for array sizing * Added Doxygen comments for primary debounce functions * Removed debounce_free() * Rewrite sym_defer_pr * Modernise code using sym_defer_pk as template * Format consistency with other current algorithms * Use shorter SPDX-License-Identifier * Remove ChibiOS core memory manager guard * Keep type definition within DEBOUNCE guard * Add change log * Minor optimisation refactor * Pre-calculate row_offset in per-key matrix loops * Add inline compiler hints * Improve readability with blank lines * Limit elapsed time to the maximum debounce value * Apply suggestions from code review Declare counters with "DEBOUNCE_ELAPSED" Co-authored-by: Joel Challis <git@zvecr.com> * Update change log to new breaking change date --------- Co-authored-by: Joel Challis <git@zvecr.com>
| * Merge remote-tracking branch 'origin/master' into developQMK Bot2025-09-071-1/+1
| |\ | |/ |/|
* | Bump actions/labeler from 5 to 6 (#25604)dependabot[bot]2025-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Bumps [actions/labeler](https://github.com/actions/labeler) from 5 to 6. - [Release notes](https://github.com/actions/labeler/releases) - [Commits](https://github.com/actions/labeler/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/labeler dependency-version: '6' 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>
| * Update USBaspLoader ISP instructions (#25590)Ryan2025-09-071-6/+10
| |
| * Remove duplication of RP2040 config defaults (#25563)Joel Challis2025-09-0616-96/+4
| |
| * Simplify hue calculation in raindrops animation (#25587)フィルターペーパー2025-09-061-7/+2
| |
| * Simplify tap_code16_delay (#25595)フィルターペーパー2025-09-061-3/+1
| | | | | | | | * Replaced for-loop with single wait_ms(delay) call * Improve code consistency with tap_code_delay
| * Branch point for 2025q4 breaking changesNick Brassel2025-09-061-0/+4
| |
| * Merge branch 'master' into developNick Brassel2025-09-060-0/+0
| |\ | |/ |/|
* | Merge branch 'develop'Nick Brassel2025-09-061266-14825/+6897
|\|
| * Merge point for 2025q3 breaking changes.Nick Brassel2025-09-061-4/+0
| |
| * 2025q3 develop changelog (#25597)Joel Challis2025-09-056-53/+193
| |
| * Add cachyos as pattern when installing dependencies (#25580)Lung Sin2025-08-241-1/+1
| | | | | | chore: add cachyos as pattern when installing dependencies
| * Refactor `tweetydabird/lotus58` (#25547)Jack Sangdahl2025-08-1711-210/+120
| | | | | | | | | | | | | | | | | | | | | | | | - Update aliases accordingly - Remove unnecessary elite_c revision; an alternate bootloader or development board can easily be set by a user. The PCB is not dependant on an Elite-C pin compatible microcontroller - Remove unnecessary nanoboot revision; any user going to the trouble of using this bootloader will have no trouble manually setting the size of their bootloader - Move the promicro revision to be the "standard" for this keyboard - Remove unnecessary rp2040_ce revision; the converter feature should be used here instead
| * Swap spleeb to default GENERIC_PROMICRO_RP2040 board files (#25564)Joel Challis2025-08-172-2/+0
| |