@chojs23/concord 2.5.3 → 2.5.5

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,31 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.5.5] - 2026-08-06
6
+
7
+ ### Bug Fixes
8
+
9
+ - Fix libva 2.24.1 compatible crates (#302) in [#302](https://github.com/chojs23/concord/pull/302) by @chojs23
10
+
11
+ ## [2.5.4] - 2026-08-06
12
+
13
+ ### Bug Fixes
14
+
15
+ - _(stream)_ Handle capture failures and linear DMA-BUF negotiation (#299) in [#299](https://github.com/chojs23/concord/pull/299) by @chojs23
16
+ - Enable windows OLE APIs for Media Foundation encoding by @chojs23
17
+ - Preserve active DAVE media during MLS epoch preparation by @chojs23
18
+ - _(stream)_ Smooth H.264 broadcast pacing by @chojs23
19
+ - _(build)_ Replace audiopus_sys with opusic-c by @chojs23
20
+ - _(linux)_ Use generic VA-API surfaces for H264 encoding by @chojs23
21
+ - _(boradcast)_ Filter macOS capture targets and show loading feedback by @chojs23
22
+
23
+ ### Features
24
+
25
+ - _(broadcast)_ Add hardware encoder by @chojs23
26
+ - _(broadcast)_ Add one-way runtime fallback from hardware H264 encoders to OpenH264 by @chojs23
27
+ - _(linux)_ Add 10-bit, multi-plane, and modifier-aware screen capture by @chojs23
28
+ - _(stream)_ Improve cross-platform hardware encoding by @chojs23
29
+
5
30
  ## [2.5.3] - 2026-08-04
6
31
 
7
32
  ### Bug Fixes
package/README.md CHANGED
@@ -89,16 +89,18 @@ macOS 13 or later is required. Linux release builds need these packages:
89
89
 
90
90
  ```sh
91
91
  # Fedora
92
- 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
93
93
 
94
94
  # Debian or Ubuntu
95
- 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
96
96
 
97
97
  # Arch Linux
98
- sudo pacman -S alsa-lib opus pipewire xdg-desktop-portal
98
+ sudo pacman -S alsa-lib libva mesa pipewire xdg-desktop-portal
99
99
  ```
100
100
 
101
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.
102
104
 
103
105
  ### Build from source
104
106
 
@@ -110,17 +112,17 @@ Install the Rust stable toolchain and the native dependencies for your platform:
110
112
  ```sh
111
113
  # macOS
112
114
  xcode-select --install
113
- brew install opus pkg-config
115
+ brew install cmake pkg-config
114
116
  brew install nasm # Intel only
115
117
 
116
118
  # Fedora
117
- 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
118
120
 
119
121
  # Debian or Ubuntu
120
- 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
121
123
 
122
124
  # Arch Linux
123
- 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
124
126
  ```
125
127
 
126
128
  Windows source builds require the MSVC Rust toolchain, Visual Studio 2022 Build
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "GPL-3.0-only",
25
25
  "name": "@chojs23/concord",
26
- "version": "2.5.3"
26
+ "version": "2.5.5"
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.3"
545
+ "version": "2.5.5"
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.3"
3
+ "https://github.com/chojs23/concord/releases/download/v2.5.5"
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.3",
96
+ "version": "2.5.5",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"