@chojs23/concord 2.5.17 → 2.5.19

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,7 +2,45 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.5.17] - 2026-09-08
5
+ ## [2.5.19] - 2026-09-12
6
+
7
+ ### Bug Fixes
8
+
9
+ - _(voice)_ Use the host-default buffer for all microphone input streams (#356) in [#356](https://github.com/chojs23/concord/pull/356) by @chojs23
10
+ - _(voice)_ Enable CPAL real-time audio thread priority (#357) in [#357](https://github.com/chojs23/concord/pull/357) by @chojs23
11
+ - _(tui)_ Fix filtered channel highlight restoration after background events (#358) in [#358](https://github.com/chojs23/concord/pull/358) by @chojs23
12
+
13
+ ### Documentation
14
+
15
+ - Update debug mode instruction by @chojs23
16
+
17
+ ### Miscellaneous Tasks
18
+
19
+ - _(deps)_ Update crates and unify TLS verification by @chojs23
20
+
21
+ ## [2.5.18] - 2026-09-09
22
+
23
+ ### Bug Fixes
24
+
25
+ - Show only current-process logs in the debug panel by @chojs23
26
+ - _(media)_ Preserve active images and retire stale work by @chojs23
27
+ - Gate packed capture helper to supported platforms by @chojs23
28
+ - _(tui)_ Prioritize fixed arrow selection in selectable contexts (#353) in [#353](https://github.com/chojs23/concord/pull/353) by @chojs23
29
+ - _(message)_ Fix channel actions to use the highlighted filtered entry (#354) in [#354](https://github.com/chojs23/concord/pull/354) by @chojs23
30
+
31
+ ### Features
32
+
33
+ - _(presence)_ Automatic client switching (#349) in [#349](https://github.com/chojs23/concord/pull/349) by @oneshinyboi
34
+
35
+ ### Refactor
36
+
37
+ - Reduce duplication and simplify shared logic by @chojs23
38
+
39
+ ### New Contributors
40
+
41
+ - @oneshinyboi made their first contribution in [#349](https://github.com/chojs23/concord/pull/349)
42
+
43
+ ## [2.5.17] - 2026-09-07
6
44
 
7
45
  ### Bug Fixes
8
46
 
package/README.md CHANGED
@@ -219,9 +219,16 @@ Linux screen capture depends on the active X11 or Wayland support.
219
219
 
220
220
  ### Rich Presence
221
221
 
222
- - Concord serves the local `discord-ipc` socket, detects connected apps, and
223
- lets you pick which one to share from your profile's activity picker
222
+ - Concord serves the local `discord-ipc` socket and relays Rich Presence from
223
+ connected apps automatically, like the native client: the most recently
224
+ updated app becomes your activity, your custom status is kept alongside it,
225
+ and the activity clears when the app disconnects
226
+ - The profile settings activity picker can pin a specific app, switch back to
227
+ automatic, or set a manual activity RPC will not override
224
228
  - Only apps that speak Discord's Rich Presence (RPC/IPC) protocol are detected.
229
+ - RPC apps connect to the first `discord-ipc` socket that answers, so a running
230
+ native desktop client (or Vesktop/LegCord/arRPC) receives them instead of
231
+ concord; concord shows a warning toast when it detects this
225
232
  - Toggle with `share_rich_presence` under `[presence]` in `config.toml`
226
233
 
227
234
  ### Notifications
@@ -379,7 +386,8 @@ emojis_as_links = false
379
386
  # favorite_emojis = ["🔥", "👍", "❤️", "😂", "🎉", "😮", "😢", "🙏", "👀", "💯"]
380
387
 
381
388
  [presence]
382
- # Relay Rich Presence from local apps as your activity.
389
+ # Relay Rich Presence from local apps as your activity (most recent app wins,
390
+ # like the native client).
383
391
  share_rich_presence = true
384
392
 
385
393
  [credentials]
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.17"
26
+ "version": "2.5.19"
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.5.17"
545
+ "version": "2.5.19"
546
546
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "artifactDownloadUrls": [
3
- "https://github.com/chojs23/concord/releases/download/v2.5.17"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.19"
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.5.17",
96
+ "version": "2.5.19",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"