@chojs23/concord 2.3.1 → 2.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +22 -0
- package/README.md +5 -6
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [2.3.2] - 2026-07-08
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Fix gateway backoff reset, atomic private-file writes, and remove duplicate by @chojs23
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
- Promote guild/channel/member action menus to standalone modal popups by @chojs23
|
|
14
|
+
|
|
15
|
+
### Miscellaneous Tasks
|
|
16
|
+
|
|
17
|
+
- Remove redundant sccache from CI and release workflows by @chojs23
|
|
18
|
+
|
|
19
|
+
### Refactor
|
|
20
|
+
|
|
21
|
+
- Extract render_modal_frame helper to deduplicate popup modal boilerplate by @chojs23
|
|
22
|
+
- Remove legacy keymap actions by @chojs23
|
|
23
|
+
- Extract OnDemandRequests and CursorRequests primitives to dedupe request trackers by @chojs23
|
|
24
|
+
- Split message format.rs into wrap, markdown, polls, and system submodules by @chojs23
|
|
25
|
+
- Unify discord module layout, dedupe extra_fields by @chojs23
|
|
26
|
+
|
|
5
27
|
## [2.3.1] - 2026-07-07
|
|
6
28
|
|
|
7
29
|
### Features
|
package/README.md
CHANGED
|
@@ -335,10 +335,9 @@ Press `Space` to open the leader shortcut window.
|
|
|
335
335
|
|
|
336
336
|
#### Action menus
|
|
337
337
|
|
|
338
|
-
Focus a pane, then press `Space`, `a` to open actions for that pane.
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
shortcuts:
|
|
338
|
+
Focus a pane, then press `Space`, `a` to open actions for that pane. Actions
|
|
339
|
+
that do not apply to the current selection are shown dimmed and disabled. In
|
|
340
|
+
the Messages pane, the selected message also supports these direct shortcuts:
|
|
342
341
|
|
|
343
342
|
Message shortcuts:
|
|
344
343
|
|
|
@@ -389,7 +388,7 @@ Channel actions:
|
|
|
389
388
|
|
|
390
389
|
| Shortcut | Action | Description |
|
|
391
390
|
| -------- | -------------------- | -------------------------------------------- |
|
|
392
|
-
| `
|
|
391
|
+
| `e` | Join voice | Join the selected voice channel or DM call |
|
|
393
392
|
| `l` | Leave voice | Leave the current voice channel or DM call |
|
|
394
393
|
| `p` | Show pinned messages | Open the selected channel's pinned messages |
|
|
395
394
|
| `t` | Show threads | List threads for the selected channel |
|
|
@@ -641,7 +640,7 @@ LeaveServer = "l"
|
|
|
641
640
|
FolderSettings = "r"
|
|
642
641
|
|
|
643
642
|
[keymap.channel_actions]
|
|
644
|
-
JoinVoice = "
|
|
643
|
+
JoinVoice = "e"
|
|
645
644
|
LeaveVoice = "l"
|
|
646
645
|
ShowPinnedMessages = "p"
|
|
647
646
|
ShowThreads = "t"
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "GPL-3.0-only",
|
|
25
25
|
"name": "@chojs23/concord",
|
|
26
|
-
"version": "2.3.
|
|
26
|
+
"version": "2.3.2"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"engines": {
|
|
@@ -542,5 +542,5 @@
|
|
|
542
542
|
}
|
|
543
543
|
},
|
|
544
544
|
"requires": true,
|
|
545
|
-
"version": "2.3.
|
|
545
|
+
"version": "2.3.2"
|
|
546
546
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"artifactDownloadUrls": [
|
|
3
|
-
"https://github.com/chojs23/concord/releases/download/v2.3.
|
|
3
|
+
"https://github.com/chojs23/concord/releases/download/v2.3.2"
|
|
4
4
|
],
|
|
5
5
|
"bin": {
|
|
6
6
|
"concord": "run-concord.js"
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
"zipExt": ".tar.xz"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
-
"version": "2.3.
|
|
96
|
+
"version": "2.3.2",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|