@chojs23/concord 2.3.1 → 2.3.3

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 CHANGED
@@ -2,6 +2,39 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.3.3] - 2026-07-08
6
+
7
+ ### Bug Fixes
8
+
9
+ - Upgrade CPAL to 0.18.1 for audio stream recovery (#249) in [#249](https://github.com/chojs23/concord/pull/249) by @chojs23
10
+ - Add a 60ms prebuffer and fixed 2400-frame PulseAudio output buffer by @chojs23
11
+
12
+ ### Features
13
+
14
+ - Support mouse row clicks and scroll in action menus by @chojs23
15
+
16
+ ## [2.3.2] - 2026-07-08
17
+
18
+ ### Bug Fixes
19
+
20
+ - Fix gateway backoff reset, atomic private-file writes, and remove duplicate by @chojs23
21
+
22
+ ### Features
23
+
24
+ - Promote guild/channel/member action menus to standalone modal popups by @chojs23
25
+
26
+ ### Miscellaneous Tasks
27
+
28
+ - Remove redundant sccache from CI and release workflows by @chojs23
29
+
30
+ ### Refactor
31
+
32
+ - Extract render_modal_frame helper to deduplicate popup modal boilerplate by @chojs23
33
+ - Remove legacy keymap actions by @chojs23
34
+ - Extract OnDemandRequests and CursorRequests primitives to dedupe request trackers by @chojs23
35
+ - Split message format.rs into wrap, markdown, polls, and system submodules by @chojs23
36
+ - Unify discord module layout, dedupe extra_fields by @chojs23
37
+
5
38
  ## [2.3.1] - 2026-07-07
6
39
 
7
40
  ### Features
@@ -972,9 +1005,18 @@ All notable changes to this project will be documented in this file.
972
1005
 
973
1006
  ### Bug Fixes
974
1007
 
975
- - _(flake)_ Use crane (#4) in [#4](https://github.com/chojs23/concord/pull/4) by @M4jor-Tom
976
1008
  - Keep original image width:height ratio (#6) in [#6](https://github.com/chojs23/concord/pull/6) by @chojs23
977
1009
 
1010
+ ### Cd
1011
+
1012
+ - Chain crates publish after release by @chojs23
1013
+
1014
+ ## [1.1.0] - 2026-05-09
1015
+
1016
+ ### Bug Fixes
1017
+
1018
+ - _(flake)_ Use crane (#4) in [#4](https://github.com/chojs23/concord/pull/4) by @M4jor-Tom
1019
+
978
1020
  ### Documentation
979
1021
 
980
1022
  - Add CONTRIBUTING.md by @chojs23
@@ -989,10 +1031,6 @@ All notable changes to this project will be documented in this file.
989
1031
 
990
1032
  - Enable generated github release notes by @chojs23
991
1033
 
992
- ### Cd
993
-
994
- - Chain crates publish after release by @chojs23
995
-
996
1034
  ### New Contributors
997
1035
 
998
1036
  - @M4jor-Tom made their first contribution in [#4](https://github.com/chojs23/concord/pull/4)
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. Action
339
- shortcuts are shown inside the leader popup and only run when the action is
340
- enabled. In the Messages pane, the selected message also supports these direct
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
- | `j` | Join voice | Join the selected voice channel or DM call |
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 = "j"
643
+ JoinVoice = "e"
645
644
  LeaveVoice = "l"
646
645
  ShowPinnedMessages = "p"
647
646
  ShowThreads = "t"
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.3.1"
26
+ "version": "2.3.3"
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.1"
545
+ "version": "2.3.3"
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.1"
3
+ "https://github.com/chojs23/concord/releases/download/v2.3.3"
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.1",
96
+ "version": "2.3.3",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"