@chojs23/concord 2.5.2 → 2.5.4

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,41 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [2.5.2] - 2026-08-04
5
+ ## [2.5.4] - 2026-08-06
6
+
7
+ ### Bug Fixes
8
+
9
+ - _(stream)_ Handle capture failures and linear DMA-BUF negotiation (#299) in [#299](https://github.com/chojs23/concord/pull/299) by @chojs23
10
+ - Enable windows OLE APIs for Media Foundation encoding by @chojs23
11
+ - Preserve active DAVE media during MLS epoch preparation by @chojs23
12
+ - _(stream)_ Smooth H.264 broadcast pacing by @chojs23
13
+ - _(build)_ Replace audiopus_sys with opusic-c by @chojs23
14
+ - _(linux)_ Use generic VA-API surfaces for H264 encoding by @chojs23
15
+ - _(boradcast)_ Filter macOS capture targets and show loading feedback by @chojs23
16
+
17
+ ### Features
18
+
19
+ - _(broadcast)_ Add hardware encoder by @chojs23
20
+ - _(broadcast)_ Add one-way runtime fallback from hardware H264 encoders to OpenH264 by @chojs23
21
+ - _(linux)_ Add 10-bit, multi-plane, and modifier-aware screen capture by @chojs23
22
+ - _(stream)_ Improve cross-platform hardware encoding by @chojs23
23
+
24
+ ## [2.5.3] - 2026-08-04
25
+
26
+ ### Bug Fixes
27
+
28
+ - _(stream)_ Start video-only broadcasts immediately by @chojs23
29
+ - _(stream)_ Scale stream playback for high-resolution and high-frame-rate video by @chojs23
30
+ - _(stream)_ Add UDP safeguards and recovery diagnostics by @chojs23
31
+ - _(stream)_ Preserve manual mpv window resizing and disable pause by @chojs23
32
+ - _(stream)_ Stabilize RTP recovery and live playback timing by @chojs23
33
+ - _(broadcast)_ Fix Linux screen-share startup readiness and add lifecycle diagnostics by @chojs23
34
+
35
+ ### Miscellaneous Tasks
36
+
37
+ - _(docs)_ Add debug mode instruction by @chojs23
38
+
39
+ ## [2.5.2] - 2026-08-03
6
40
 
7
41
  ### Bug Fixes
8
42
 
package/README.md CHANGED
@@ -11,6 +11,7 @@ Concord is a feature-rich TUI client for Discord, written in Rust with ratatui.
11
11
  - [Features](#features)
12
12
  - [Configuration](#configuration)
13
13
  - [Performance](#performance)
14
+ - [Debug mode](#debug-mode)
14
15
  - [FAQ](#faq)
15
16
  - [Security](#security)
16
17
  - [Contributing](#contributing)
@@ -88,16 +89,18 @@ macOS 13 or later is required. Linux release builds need these packages:
88
89
 
89
90
  ```sh
90
91
  # Fedora
91
- sudo dnf install alsa-lib opus pipewire-libs xdg-desktop-portal
92
+ sudo dnf install alsa-lib libva mesa-libEGL pipewire-libs xdg-desktop-portal
92
93
 
93
94
  # Debian or Ubuntu
94
- sudo apt install libasound2 libopus0 libpipewire-0.3-0 xdg-desktop-portal
95
+ sudo apt install libasound2 libegl1 libpipewire-0.3-0 libva-drm2 libva2 xdg-desktop-portal
95
96
 
96
97
  # Arch Linux
97
- sudo pacman -S alsa-lib opus pipewire xdg-desktop-portal
98
+ sudo pacman -S alsa-lib libva mesa pipewire xdg-desktop-portal
98
99
  ```
99
100
 
100
101
  Screen sharing requires the portal backend for your desktop environment.
102
+ Concord uses native H.264 hardware encoding when available: VA API on Linux,
103
+ VideoToolbox on macOS, and Media Foundation on Windows. If hardware encoding is unavailable, Concord falls back to software encoding.
101
104
 
102
105
  ### Build from source
103
106
 
@@ -109,17 +112,17 @@ Install the Rust stable toolchain and the native dependencies for your platform:
109
112
  ```sh
110
113
  # macOS
111
114
  xcode-select --install
112
- brew install opus pkg-config
115
+ brew install cmake pkg-config
113
116
  brew install nasm # Intel only
114
117
 
115
118
  # Fedora
116
- sudo dnf install alsa-lib-devel clang-devel gcc gcc-c++ nasm opus-devel pipewire-devel pkgconf-pkg-config
119
+ sudo dnf install alsa-lib-devel clang-devel cmake gcc gcc-c++ libva-devel nasm pipewire-devel pkgconf-pkg-config
117
120
 
118
121
  # Debian or Ubuntu
119
- sudo apt install build-essential libasound2-dev libclang-dev libopus-dev libpipewire-0.3-dev nasm pkg-config
122
+ sudo apt install build-essential cmake libasound2-dev libclang-dev libpipewire-0.3-dev libva-dev nasm pkg-config
120
123
 
121
124
  # Arch Linux
122
- sudo pacman -S alsa-lib base-devel clang nasm opus pipewire pkgconf
125
+ sudo pacman -S alsa-lib base-devel clang cmake libva mesa nasm pipewire pkgconf
123
126
  ```
124
127
 
125
128
  Windows source builds require the MSVC Rust toolchain, Visual Studio 2022 Build
@@ -998,6 +1001,11 @@ bytes need to be decoded before they can be rendered in the terminal. When many
998
1001
  images are loaded, memory can briefly rise to around 100-200 MB while decoding
999
1002
  and then drop again as work completes and caches are pruned.
1000
1003
 
1004
+ ## Debug mode
1005
+
1006
+ Run `CONCORD_DEBUG=1 concord`. Logs are written to `concord.log` in the Concord
1007
+ config directory.
1008
+
1001
1009
  ## FAQ
1002
1010
 
1003
1011
  ### Can my account be blocked?
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.2"
26
+ "version": "2.5.4"
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.2"
545
+ "version": "2.5.4"
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.2"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.4"
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.2",
96
+ "version": "2.5.4",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"