From e363ab00bbe115c76be0b4adf245f846b79706bc Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Thu, 24 Jul 2025 20:43:49 -0500 Subject: [PATCH] prep for release v25.3.0 [no ci] --- CHANGELOG.md | 5 ++++- ErsatzTV.Scanner.Tests/Core/FFmpeg/TranscodingTests.cs | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3061a810..6932f2352 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] + +## [25.2.0] - 2025-07-24 ### Added - Add new channel stream (audio and subtitle) selector system - Channel editor has a new field `Stream Selector Mode` @@ -2418,7 +2420,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Initial release to facilitate testing outside of Docker. -[Unreleased]: https://github.com/ErsatzTV/ErsatzTV/compare/v25.2.0...HEAD +[Unreleased]: https://github.com/ErsatzTV/ErsatzTV/compare/v25.3.0...HEAD +[25.3.0]: https://github.com/ErsatzTV/ErsatzTV/compare/v25.2.0...v25.3.0 [25.2.0]: https://github.com/ErsatzTV/ErsatzTV/compare/v25.1.0...v25.2.0 [25.1.0]: https://github.com/ErsatzTV/ErsatzTV/compare/v0.8.8-beta...v25.1.0 [0.8.8-beta]: https://github.com/ErsatzTV/ErsatzTV/compare/v0.8.7-beta...v0.8.8-beta diff --git a/ErsatzTV.Scanner.Tests/Core/FFmpeg/TranscodingTests.cs b/ErsatzTV.Scanner.Tests/Core/FFmpeg/TranscodingTests.cs index b1e0adcea..aea240a45 100644 --- a/ErsatzTV.Scanner.Tests/Core/FFmpeg/TranscodingTests.cs +++ b/ErsatzTV.Scanner.Tests/Core/FFmpeg/TranscodingTests.cs @@ -1083,5 +1083,5 @@ public class TranscodingTests } private static string ExecutableName(string baseName) => - OperatingSystem.IsWindows() ? $"{baseName}.exe" : baseName; + OperatingSystem.IsWindows() ? $"{baseName}.exe" : $"/home/jason/Downloads/ffmpeg/ffmpeg-n7.1.1-56-gc2184b65d2-linux64-gpl-7.1/bin/{baseName}"; }