From b39dd693f0e3d1c2c7ef9bee03e28632f029330c Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Thu, 5 Oct 2023 19:14:06 -0500 Subject: [PATCH] update dependencies and windows ffmpeg (#1462) * update dependencies * update windows ffmpeg version --- .github/workflows/artifacts.yml | 2 +- ErsatzTV.Core.Tests/ErsatzTV.Core.Tests.csproj | 2 +- ErsatzTV.Core/ErsatzTV.Core.csproj | 4 ++-- ErsatzTV.FFmpeg/ErsatzTV.FFmpeg.csproj | 2 +- ErsatzTV.Infrastructure.Sqlite/Data/SqliteTypeHandlers.cs | 2 +- .../ErsatzTV.Infrastructure.Sqlite.csproj | 2 +- ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj | 4 ++-- .../Health/Checks/FFmpegVersionHealthCheck.cs | 2 +- ErsatzTV.Scanner.Tests/ErsatzTV.Scanner.Tests.csproj | 2 +- ErsatzTV.Scanner/ErsatzTV.Scanner.csproj | 2 +- ErsatzTV/ErsatzTV.csproj | 4 ++-- 11 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index ad59f0384..eaf13f92a 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -208,7 +208,7 @@ jobs: id: downloadffmpeg name: Download ffmpeg with: - url: "https://github.com/GyanD/codexffmpeg/releases/download/2023-09-07-git-9c9f48e7f2/ffmpeg-2023-09-07-git-9c9f48e7f2-full_build.7z" + url: "https://github.com/GyanD/codexffmpeg/releases/download/2023-10-04-git-9078dc0c52/ffmpeg-2023-10-04-git-9078dc0c52-full_build.7z" target: ffmpeg/ - name: Build diff --git a/ErsatzTV.Core.Tests/ErsatzTV.Core.Tests.csproj b/ErsatzTV.Core.Tests/ErsatzTV.Core.Tests.csproj index 9b2e1f087..671d75ea0 100644 --- a/ErsatzTV.Core.Tests/ErsatzTV.Core.Tests.csproj +++ b/ErsatzTV.Core.Tests/ErsatzTV.Core.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/ErsatzTV.Core/ErsatzTV.Core.csproj b/ErsatzTV.Core/ErsatzTV.Core.csproj index aab3eaaee..b03bf10ca 100644 --- a/ErsatzTV.Core/ErsatzTV.Core.csproj +++ b/ErsatzTV.Core/ErsatzTV.Core.csproj @@ -12,8 +12,8 @@ - - + + diff --git a/ErsatzTV.FFmpeg/ErsatzTV.FFmpeg.csproj b/ErsatzTV.FFmpeg/ErsatzTV.FFmpeg.csproj index 169c1d629..068847e73 100644 --- a/ErsatzTV.FFmpeg/ErsatzTV.FFmpeg.csproj +++ b/ErsatzTV.FFmpeg/ErsatzTV.FFmpeg.csproj @@ -10,7 +10,7 @@ - + diff --git a/ErsatzTV.Infrastructure.Sqlite/Data/SqliteTypeHandlers.cs b/ErsatzTV.Infrastructure.Sqlite/Data/SqliteTypeHandlers.cs index 94e0299e3..b6caa2a4e 100644 --- a/ErsatzTV.Infrastructure.Sqlite/Data/SqliteTypeHandlers.cs +++ b/ErsatzTV.Infrastructure.Sqlite/Data/SqliteTypeHandlers.cs @@ -7,7 +7,7 @@ namespace ErsatzTV.Infrastructure.Sqlite.Data; public abstract class SqliteTypeHandler : SqlMapper.TypeHandler { // Parameters are converted by Microsoft.Data.Sqlite - public override void SetValue(IDbDataParameter parameter, T value) + public override void SetValue(IDbDataParameter parameter, T? value) => parameter.Value = value; } diff --git a/ErsatzTV.Infrastructure.Sqlite/ErsatzTV.Infrastructure.Sqlite.csproj b/ErsatzTV.Infrastructure.Sqlite/ErsatzTV.Infrastructure.Sqlite.csproj index 506f630f1..304bac943 100644 --- a/ErsatzTV.Infrastructure.Sqlite/ErsatzTV.Infrastructure.Sqlite.csproj +++ b/ErsatzTV.Infrastructure.Sqlite/ErsatzTV.Infrastructure.Sqlite.csproj @@ -14,7 +14,7 @@ - + diff --git a/ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj b/ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj index 768acd34f..aa675f21a 100644 --- a/ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj +++ b/ErsatzTV.Infrastructure/ErsatzTV.Infrastructure.csproj @@ -12,8 +12,8 @@ - - + + diff --git a/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs b/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs index 007e4298f..fd11ac947 100644 --- a/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs +++ b/ErsatzTV.Infrastructure/Health/Checks/FFmpegVersionHealthCheck.cs @@ -10,7 +10,7 @@ public class FFmpegVersionHealthCheck : BaseHealthCheck, IFFmpegVersionHealthChe { private const string BundledVersion = "N-112071-g00a837c70c"; private const string BundledVersionVaapi = "N-112071-g00a837c70c"; - private const string WindowsVersionPrefix = "2023-09-07-git-9c9f48e7f2"; + private const string WindowsVersionPrefix = "2023-10-04-git-9078dc0c52"; private readonly IConfigElementRepository _configElementRepository; public FFmpegVersionHealthCheck(IConfigElementRepository configElementRepository) => diff --git a/ErsatzTV.Scanner.Tests/ErsatzTV.Scanner.Tests.csproj b/ErsatzTV.Scanner.Tests/ErsatzTV.Scanner.Tests.csproj index ad30a4ca5..ba0c066fd 100644 --- a/ErsatzTV.Scanner.Tests/ErsatzTV.Scanner.Tests.csproj +++ b/ErsatzTV.Scanner.Tests/ErsatzTV.Scanner.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/ErsatzTV.Scanner/ErsatzTV.Scanner.csproj b/ErsatzTV.Scanner/ErsatzTV.Scanner.csproj index 0dbb38848..92db9621c 100644 --- a/ErsatzTV.Scanner/ErsatzTV.Scanner.csproj +++ b/ErsatzTV.Scanner/ErsatzTV.Scanner.csproj @@ -22,7 +22,7 @@ - + diff --git a/ErsatzTV/ErsatzTV.csproj b/ErsatzTV/ErsatzTV.csproj index 3eecea1e2..393b3238f 100644 --- a/ErsatzTV/ErsatzTV.csproj +++ b/ErsatzTV/ErsatzTV.csproj @@ -59,8 +59,8 @@ - - + +