Compare commits

..

4 Commits

Author SHA1 Message Date
dependabot[bot]
04443b9536 chore(deps): bump the tree-sitter group across 1 directory with 2 updates
Bumps the tree-sitter group with 2 updates in the /docs directory: tree-sitter-devicetree and [web-tree-sitter](https://github.com/tree-sitter/tree-sitter/tree/HEAD/lib/binding_web).


Updates `tree-sitter-devicetree` from 0.12.1 to 0.15.0

Updates `web-tree-sitter` from 0.24.7 to 0.26.8
- [Release notes](https://github.com/tree-sitter/tree-sitter/releases)
- [Commits](https://github.com/tree-sitter/tree-sitter/commits/v0.26.8/lib/binding_web)

---
updated-dependencies:
- dependency-name: tree-sitter-devicetree
  dependency-version: 0.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tree-sitter
- dependency-name: web-tree-sitter
  dependency-version: 0.25.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: tree-sitter
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-05-01 05:30:57 +00:00
LostQuasar
cb615aee9a docs: Remove ZMK Twitter (#3337) 2026-04-30 10:15:20 -07:00
Peter Cock
696744d5f2 docs: Clarify combos interact with hold-tap's hold-while-undecided (#3335) 2026-04-23 20:30:59 -07:00
Pete Johanson
0331b7d16e fix(boards): Properly note ZMK compat for xiao_rp2040/zmk variant (#3326)
Add missing board Kconfig file for properly noting ZMK board compat and
enabling boot mode retention for the `xiao_rp2040//zmk` board variant.
2026-04-15 12:24:59 -06:00
6 changed files with 42 additions and 32 deletions

View File

@@ -63,7 +63,7 @@ jobs:
- name: Install @actions/artifact
run: npm install @actions/artifact@5.0.3
- name: Build
uses: actions/github-script@v9
uses: actions/github-script@v7
id: boards-list
with:
script: |
@@ -95,7 +95,7 @@ jobs:
throw new Error('Failed to build one or more configurations');
}
- name: Upload artifacts
uses: actions/github-script@v9
uses: actions/github-script@v7
continue-on-error: ${{ github.event_name == 'pull_request' }}
id: boards-upload
with:
@@ -146,7 +146,7 @@ jobs:
include-list: ${{ steps.compile-list.outputs.result }}
steps:
- name: Join build lists
uses: actions/github-script@v9
uses: actions/github-script@v7
id: compile-list
with:
script: |
@@ -196,7 +196,7 @@ jobs:
node-version: "14.x"
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v9
- uses: actions/github-script@v7
id: core-list
with:
script: |
@@ -225,7 +225,7 @@ jobs:
node-version: "14.x"
- name: Install js-yaml
run: npm install js-yaml
- uses: actions/github-script@v9
- uses: actions/github-script@v7
id: boards-list
with:
script: |
@@ -303,7 +303,7 @@ jobs:
nightly-include: ${{ steps.nightly-list.outputs.result }}
steps:
- name: Create nightly list
uses: actions/github-script@v9
uses: actions/github-script@v7
id: nightly-list
with:
script: |
@@ -356,7 +356,7 @@ jobs:
- name: Install js-yaml
run: npm install js-yaml
- name: Aggregate Metadata
uses: actions/github-script@v9
uses: actions/github-script@v7
id: aggregate-metadata
with:
script: |
@@ -374,7 +374,7 @@ jobs:
result-encoding: string
- name: Organize Metadata
uses: actions/github-script@v9
uses: actions/github-script@v7
id: organize-metadata
with:
script: |
@@ -436,7 +436,7 @@ jobs:
with:
json: true
escape_json: false
- uses: actions/github-script@v9
- uses: actions/github-script@v7
id: board-changes
with:
script: |
@@ -444,7 +444,7 @@ jobs:
const boardChanges = changedFiles.filter(f => f.startsWith('app/boards'));
return boardChanges.length ? 'true' : 'false';
result-encoding: string
- uses: actions/github-script@v9
- uses: actions/github-script@v7
id: core-changes
with:
script: |

View File

@@ -0,0 +1,10 @@
# Copyright (c) 2026 Pete Johanson
# SPDX-License-Identifier: MIT
config BOARD_XIAO_RP2040
select ZMK_BOARD_COMPAT if BOARD_XIAO_RP2040_RP2040_ZMK
imply RETAINED_MEM if BOARD_XIAO_RP2040_RP2040_ZMK
imply RETENTION if BOARD_XIAO_RP2040_RP2040_ZMK
imply RETENTION_BOOT_MODE if BOARD_XIAO_RP2040_RP2040_ZMK

View File

@@ -437,6 +437,10 @@ If enabled, the hold behavior will immediately be held on hold-tap press, and wi
};
```
:::warning[Interactions with combos]
If the key position that has the hold-tap assigned is _also_ used in any combos, the `hold-while-undecided` behavior isn't immediate with key-down, but waits until all those combo timeouts have expired.
:::
#### `hold-while-undecided-linger`
If your tap behavior activates the same modifier as the hold behavior, and you want to avoid a double tap when transitioning from the hold to the tap, you can use `hold-while-undecided-linger`. When enabled, the hold behavior will continue to be held until _after_ the tap behavior is released.

View File

@@ -152,10 +152,6 @@ module.exports = {
label: "Mastodon",
href: "https://fosstodon.org/@zmk",
},
{
label: "Twitter",
href: "https://twitter.com/ZMKFirmware",
},
],
},
{

32
docs/package-lock.json generated
View File

@@ -22,8 +22,8 @@
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^18.0.0",
"react-toastify": "^10.0.6",
"tree-sitter-devicetree": "^0.12.1",
"web-tree-sitter": "^0.24.3"
"tree-sitter-devicetree": "^0.15.0",
"web-tree-sitter": "^0.26.8"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
@@ -21837,29 +21837,29 @@
}
},
"node_modules/tree-sitter": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz",
"integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==",
"version": "0.25.0",
"resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.25.0.tgz",
"integrity": "sha512-PGZZzFW63eElZJDe/b/R/LbsjDDYJa5UEjLZJB59RQsMX+fo0j54fqBPn1MGKav/QNa0JR0zBiVaikYDWCj5KQ==",
"hasInstallScript": true,
"license": "MIT",
"peer": true,
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.0"
"node-addon-api": "^8.3.0",
"node-gyp-build": "^4.8.4"
}
},
"node_modules/tree-sitter-devicetree": {
"version": "0.12.1",
"resolved": "https://registry.npmjs.org/tree-sitter-devicetree/-/tree-sitter-devicetree-0.12.1.tgz",
"integrity": "sha512-JccTH8TmgO9B4tAaCEZ8O7yOEtoixBRRnNZYO8W9tnNsv29Y+avsN6V8li2CfwooB1eqZIEbsPLKxN/e7bG+Cg==",
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/tree-sitter-devicetree/-/tree-sitter-devicetree-0.15.0.tgz",
"integrity": "sha512-O+Wpo+3WZCvDgspXYpqRfU0euy5yMB6rV+nRF0Ytm+jbUldIf7rFtBqv7XweB/gkSLl/pbqLD1IVis+MTuOQKA==",
"hasInstallScript": true,
"license": "MIT",
"dependencies": {
"node-addon-api": "^8.2.1",
"node-gyp-build": "^4.8.2"
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
"tree-sitter": "^0.25.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
@@ -23020,9 +23020,9 @@
}
},
"node_modules/web-tree-sitter": {
"version": "0.24.7",
"resolved": "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.24.7.tgz",
"integrity": "sha512-CdC/TqVFbXqR+C51v38hv6wOPatKEUGxa39scAeFSm98wIhZxAYonhRQPSMmfZ2w7JDI0zQDdzdmgtNk06/krQ==",
"version": "0.26.8",
"resolved": "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.26.8.tgz",
"integrity": "sha512-4sUwi7ZyOrIk5KLgYLkc2A/F0LFMQnBhfb+2Cdl7ik4ePJ6JD+fk4ofI2sA5eGawBKBaK4Vntt7Ww5KcEsay4A==",
"license": "MIT"
},
"node_modules/webpack": {

View File

@@ -29,8 +29,8 @@
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^18.0.0",
"react-toastify": "^10.0.6",
"tree-sitter-devicetree": "^0.12.1",
"web-tree-sitter": "^0.24.3"
"tree-sitter-devicetree": "^0.15.0",
"web-tree-sitter": "^0.26.8"
},
"browserslist": {
"production": [