@chojs23/concord 2.5.3 → 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 +19 -0
- package/README.md +9 -7
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
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
|
+
|
|
5
24
|
## [2.5.3] - 2026-08-04
|
|
6
25
|
|
|
7
26
|
### 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
|
|
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
|
|
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
|
|
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
|
|
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++
|
|
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
|
|
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
|
|
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
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "GPL-3.0-only",
|
|
25
25
|
"name": "@chojs23/concord",
|
|
26
|
-
"version": "2.5.
|
|
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.
|
|
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.
|
|
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.
|
|
96
|
+
"version": "2.5.4",
|
|
97
97
|
"volta": {
|
|
98
98
|
"node": "18.14.1",
|
|
99
99
|
"npm": "9.5.0"
|