From afd73ea1e6948f3eef88cf219bcf8d0c94bb4700 Mon Sep 17 00:00:00 2001 From: Richard Markiewicz Date: Thu, 12 Mar 2026 17:50:03 -0400 Subject: [PATCH 1/2] fix(dgw): update cadeau native library to v2025.9.25.0 The pinned libxmf version (v2025.7.16.0) is out of sync with the cadeau Rust crate (0.5.1), which expects the newer XmfVpxEncoderConfig struct layout including the preset field added in cadeau PR #73. This ABI mismatch causes issues on recent installs. Co-Authored-By: Claude Opus 4.6 --- ci/download-cadeau.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/download-cadeau.ps1 b/ci/download-cadeau.ps1 index ae8f37401..071dd9ca7 100755 --- a/ci/download-cadeau.ps1 +++ b/ci/download-cadeau.ps1 @@ -9,7 +9,7 @@ param( [ValidateSet('x64', 'arm64')] [string] $Architecture, - [string] $VersionTag = "v2025.7.16.0" + [string] $VersionTag = "v2025.9.25.0" ) $ErrorActionPreference = "Stop" From c8e2aa0135331caae9860ee6392e3635453deea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Cortier?= <3809077+CBenoit@users.noreply.github.com> Date: Sat, 14 Mar 2026 01:11:42 +0900 Subject: [PATCH 2/2] Update ci/download-cadeau.ps1 Co-authored-by: irvingouj@Devolutions --- ci/download-cadeau.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/download-cadeau.ps1 b/ci/download-cadeau.ps1 index 071dd9ca7..8015f6694 100755 --- a/ci/download-cadeau.ps1 +++ b/ci/download-cadeau.ps1 @@ -9,7 +9,7 @@ param( [ValidateSet('x64', 'arm64')] [string] $Architecture, - [string] $VersionTag = "v2025.9.25.0" + [string] $VersionTag = "v2026.3.13.0" ) $ErrorActionPreference = "Stop"