Update nuget

This commit is contained in:
niksedk 2023-08-15 14:46:31 +02:00
parent 5d1597c6e0
commit 3db6b1e8fb
5 changed files with 7 additions and 3 deletions

View File

@ -214,6 +214,7 @@ Read more info (web)?</WhisperNotFound>
<RemoveTemporaryFiles>Remove temporary files</RemoveTemporaryFiles> <RemoveTemporaryFiles>Remove temporary files</RemoveTemporaryFiles>
<SetCppConstMeFolder>Set CPP/Const-me models folder...</SetCppConstMeFolder> <SetCppConstMeFolder>Set CPP/Const-me models folder...</SetCppConstMeFolder>
<OnlyRunPostProcessing>Run only post-processing/adjust timings</OnlyRunPostProcessing> <OnlyRunPostProcessing>Run only post-processing/adjust timings</OnlyRunPostProcessing>
<DownloadFasterWhisperCuda>Download CUDA for Perfview's Whisper-Faster</DownloadFasterWhisperCuda>
</AudioToText> </AudioToText>
<AssaAttachments> <AssaAttachments>
<Title>Advanced Sub Station Alpha attachments</Title> <Title>Advanced Sub Station Alpha attachments</Title>

View File

@ -50,7 +50,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" /> <PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" /> <PackageReference Include="System.Drawing.Common" Version="7.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" /> <PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="UTF.Unknown" Version="2.5.1" /> <PackageReference Include="UTF.Unknown" Version="2.5.1" />
<PackageReference Include="zlib.net-mutliplatform" Version="1.0.6" /> <PackageReference Include="zlib.net-mutliplatform" Version="1.0.6" />

View File

@ -583,6 +583,9 @@ namespace Nikse.SubtitleEdit.Logic
case "AudioToText/OnlyRunPostProcessing": case "AudioToText/OnlyRunPostProcessing":
language.AudioToText.OnlyRunPostProcessing = reader.Value; language.AudioToText.OnlyRunPostProcessing = reader.Value;
break; break;
case "AudioToText/DownloadFasterWhisperCuda":
language.AudioToText.DownloadFasterWhisperCuda = reader.Value;
break;
case "AssaAttachments/Title": case "AssaAttachments/Title":
language.AssaAttachments.Title = reader.Value; language.AssaAttachments.Title = reader.Value;
break; break;

View File

@ -75,7 +75,7 @@
<HintPath>..\..\packages\ncalc.1.3.8\lib\NCalc.dll</HintPath> <HintPath>..\..\packages\ncalc.1.3.8\lib\NCalc.dll</HintPath>
</Reference> </Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> <Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath> <HintPath>..\..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference> </Reference>
<Reference Include="NHunspell, Version=1.2.5554.16953, Culture=neutral, PublicKeyToken=1ac793ea843b4366, processorArchitecture=MSIL"> <Reference Include="NHunspell, Version=1.2.5554.16953, Culture=neutral, PublicKeyToken=1ac793ea843b4366, processorArchitecture=MSIL">
<HintPath>..\..\packages\NHunspell.1.2.5554.16953\lib\net\NHunspell.dll</HintPath> <HintPath>..\..\packages\NHunspell.1.2.5554.16953\lib\net\NHunspell.dll</HintPath>

View File

@ -7,7 +7,7 @@
<package id="NAudio.Core" version="2.1.0" targetFramework="net48" /> <package id="NAudio.Core" version="2.1.0" targetFramework="net48" />
<package id="NAudio.WinMM" version="2.1.0" targetFramework="net48" /> <package id="NAudio.WinMM" version="2.1.0" targetFramework="net48" />
<package id="ncalc" version="1.3.8" targetFramework="net472" /> <package id="ncalc" version="1.3.8" targetFramework="net472" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net48" /> <package id="Newtonsoft.Json" version="13.0.3" targetFramework="net48" />
<package id="NHunspell" version="1.2.5554.16953" targetFramework="net462" /> <package id="NHunspell" version="1.2.5554.16953" targetFramework="net462" />
<package id="System.Security.AccessControl" version="6.0.0" targetFramework="net48" /> <package id="System.Security.AccessControl" version="6.0.0" targetFramework="net48" />
<package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net48" /> <package id="System.Security.Principal.Windows" version="5.0.0" targetFramework="net48" />