diff --git a/Changelog.txt b/Changelog.txt index a51f74f50..790c3d45d 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -18,6 +18,8 @@ * Update Dutch translation - thx Flitskikker * Update Whisper CPP to V1.7.1 * Update ffmpeg to 7.1 + * Update Tesseract to 5.5.0 + * Update yt-dlp to 2024.11.04 * Improvements for "Beautify time codes" - thx Flitskikker * Add new options for TTS with ElevenLabs - thx cvrle77 * Add large-v3-turbo to Whisper OpenAI/CPP diff --git a/src/ui/Forms/DownloadYouTubeDl.cs b/src/ui/Forms/DownloadYouTubeDl.cs index b2ef0ff52..6ace3343c 100644 --- a/src/ui/Forms/DownloadYouTubeDl.cs +++ b/src/ui/Forms/DownloadYouTubeDl.cs @@ -11,8 +11,8 @@ namespace Nikse.SubtitleEdit.Forms { public sealed partial class DownloadYouTubeDl : Form { - public const string Url = "https://github.com/yt-dlp/yt-dlp/releases/download/2024.07.02/yt-dlp.exe"; - public const string Sha512Hash = "8aa32a8580cecce2fb733052ada22cbbd8727192b77e2f63000ccfa47aeee893a975f65eed121a85e40e894bcc671adaee36ea2f10748427d6e4109c02295703"; + public const string Url = "https://github.com/yt-dlp/yt-dlp/releases/download/2024.11.04/yt-dlp.exe"; + public const string Sha512Hash = "58d62d5265f769a944661b1b7ae4dc7bd521714758989d4fcae6ee23f577bb7b9b5cd38d4cda106646922760c1e7be0761305ba76fd49e0632c6799c27e020af"; public bool AutoClose { get; internal set; } private readonly CancellationTokenSource _cancellationTokenSource;