From 4fefc44ed05f123843e3440fac9e39467ef60cc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 25 Apr 2026 17:12:19 +0000 Subject: [PATCH 1/2] chore(deps): Bump NAudio, Whisper.net and Whisper.net.Runtime Bumps NAudio from 2.2.1 to 2.3.0 Bumps Whisper.net from 1.7.2 to 1.9.0 Bumps Whisper.net.Runtime from 1.7.2 to 1.9.0 --- updated-dependencies: - dependency-name: NAudio dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-test-minor-patch - dependency-name: Whisper.net dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-test-minor-patch - dependency-name: Whisper.net.Runtime dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-test-minor-patch ... Signed-off-by: dependabot[bot] --- voxto/voxto.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/voxto/voxto.csproj b/voxto/voxto.csproj index 3c6ad3b..dd85b91 100644 --- a/voxto/voxto.csproj +++ b/voxto/voxto.csproj @@ -19,9 +19,9 @@ - - - + + + From e0f75353f00a0e40a9af5c8faaa0f59bff162059 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:40:47 +0000 Subject: [PATCH 2/2] fix: address breaking changes in Whisper.net 1.9.0 and fix missing Xunit usings in tests Agent-Logs-Url: https://github.com/onexey/voxto/sessions/1d9c082a-6553-4d9e-8c1e-44fe644456f5 Co-authored-by: onexey <1856335+onexey@users.noreply.github.com> --- voxto.Tests/MarkdownFileOutputTests.cs | 1 + voxto.Tests/OutputManagerTests.cs | 1 + voxto.Tests/TodoAppendOutputTests.cs | 1 + voxto.Tests/TranscriptionResultTests.cs | 1 + voxto/RecorderService.cs | 2 +- 5 files changed, 5 insertions(+), 1 deletion(-) diff --git a/voxto.Tests/MarkdownFileOutputTests.cs b/voxto.Tests/MarkdownFileOutputTests.cs index a2d2a26..6152609 100644 --- a/voxto.Tests/MarkdownFileOutputTests.cs +++ b/voxto.Tests/MarkdownFileOutputTests.cs @@ -1,4 +1,5 @@ using System.IO; +using Xunit; using Voxto; namespace Voxto.Tests; diff --git a/voxto.Tests/OutputManagerTests.cs b/voxto.Tests/OutputManagerTests.cs index e4706f7..811ead1 100644 --- a/voxto.Tests/OutputManagerTests.cs +++ b/voxto.Tests/OutputManagerTests.cs @@ -1,3 +1,4 @@ +using Xunit; using Voxto; namespace Voxto.Tests; diff --git a/voxto.Tests/TodoAppendOutputTests.cs b/voxto.Tests/TodoAppendOutputTests.cs index 601db3a..b1121a2 100644 --- a/voxto.Tests/TodoAppendOutputTests.cs +++ b/voxto.Tests/TodoAppendOutputTests.cs @@ -1,4 +1,5 @@ using System.IO; +using Xunit; using Voxto; namespace Voxto.Tests; diff --git a/voxto.Tests/TranscriptionResultTests.cs b/voxto.Tests/TranscriptionResultTests.cs index e30ecec..c1ce726 100644 --- a/voxto.Tests/TranscriptionResultTests.cs +++ b/voxto.Tests/TranscriptionResultTests.cs @@ -1,3 +1,4 @@ +using Xunit; using Voxto; namespace Voxto.Tests; diff --git a/voxto/RecorderService.cs b/voxto/RecorderService.cs index 4aabeb1..216dad5 100644 --- a/voxto/RecorderService.cs +++ b/voxto/RecorderService.cs @@ -181,7 +181,7 @@ private async Task EnsureModelDownloadedAsync() ModelDownloadStarted?.Invoke(_settings.ModelType); try { - using var modelStream = await WhisperGgmlDownloader.GetGgmlModelAsync(ggmlType); + using var modelStream = await WhisperGgmlDownloader.Default.GetGgmlModelAsync(ggmlType); using var fileStream = File.OpenWrite(modelPath); await modelStream.CopyToAsync(fileStream); Log.Information("Model downloaded successfully: {Model}", _settings.ModelType);