@chojs23/concord 2.5.18 → 2.5.20

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,30 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.20] - 2026-09-12
6
+
7
+ ### Bug Fixes
8
+
9
+ - _(voice)_ Adapt microphone buffering to device behavior (#361) in [#361](https://github.com/chojs23/concord/pull/361) by @chojs23
10
+ - _(voice)_ Replace adaptive microphone recovery with fixed platform buffers (#363) in [#363](https://github.com/chojs23/concord/pull/363) by @chojs23
11
+ - _(voice)_ Fix microphone frame loss caused by queue replacement by @chojs23
12
+
13
+ ## [2.5.19] - 2026-09-11
14
+
15
+ ### Bug Fixes
16
+
17
+ - _(voice)_ Use the host-default buffer for all microphone input streams (#356) in [#356](https://github.com/chojs23/concord/pull/356) by @chojs23
18
+ - _(voice)_ Enable CPAL real-time audio thread priority (#357) in [#357](https://github.com/chojs23/concord/pull/357) by @chojs23
19
+ - _(tui)_ Fix filtered channel highlight restoration after background events (#358) in [#358](https://github.com/chojs23/concord/pull/358) by @chojs23
20
+
21
+ ### Documentation
22
+
23
+ - Update debug mode instruction by @chojs23
24
+
25
+ ### Miscellaneous Tasks
26
+
27
+ - _(deps)_ Update crates and unify TLS verification by @chojs23
28
+
5
29
  ## [2.5.18] - 2026-09-09
6
30
 
7
31
  ### Bug Fixes
package/README.md CHANGED
@@ -435,6 +435,13 @@ push_to_talk_shortcut = "F8"
435
435
  # Reduce steady background microphone noise.
436
436
  noise_suppression = true
437
437
 
438
+ # Optional microphone capture buffer duration in milliseconds, from 10 to 60.
439
+ # When omitted, Concord requests 50ms on Linux and 10ms on other platforms,
440
+ # clamped to the device's supported range. It uses the host default only when
441
+ # the range is unknown or the platform fixed buffer cannot be opened.
442
+ # Setting a value forces that fixed duration.
443
+ # microphone_buffer_ms = 50
444
+
438
445
  # Voice activity threshold in dB. Lower values transmit quieter input.
439
446
  microphone_sensitivity = -30
440
447
 
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.18"
26
+ "version": "2.5.20"
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.18"
545
+ "version": "2.5.20"
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.18"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.20"
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.18",
96
+ "version": "2.5.20",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"