diff --git a/TwitchDownloaderCLI/TwitchDownloaderCLI.csproj b/TwitchDownloaderCLI/TwitchDownloaderCLI.csproj index 88078f6d..5bd9a29b 100644 --- a/TwitchDownloaderCLI/TwitchDownloaderCLI.csproj +++ b/TwitchDownloaderCLI/TwitchDownloaderCLI.csproj @@ -2,7 +2,7 @@ Exe - 1.50.5 + 1.50.6 AnyCPU;x64 net6.0 default diff --git a/TwitchDownloaderCore/ChatRenderer.cs b/TwitchDownloaderCore/ChatRenderer.cs index 1d9283c3..c9bb7c72 100644 --- a/TwitchDownloaderCore/ChatRenderer.cs +++ b/TwitchDownloaderCore/ChatRenderer.cs @@ -386,7 +386,7 @@ private CommentSection GenerateCommentSection(int commentIndex) private bool IsSubMessage(Comment comment) { //If it looks like a duck, swims like a duck, and quacks like a duck, then it probably is a duck - if (comment.message.body.StartsWith(comment.commenter.display_name + " subscribed at Tier") || comment.message.body.StartsWith(comment.commenter.display_name + " subscribed with Prime")) + if (comment.message.body.StartsWith(comment.commenter.display_name + " subscribed at Tier") || comment.message.body.StartsWith(comment.commenter.display_name + " subscribed with Prime") || comment.message.body.StartsWith(comment.commenter.display_name + " is gifting") || comment.message.body.StartsWith(comment.commenter.display_name + " gifted a Tier")) return true; return false; diff --git a/TwitchDownloaderWPF/MainWindow.xaml.cs b/TwitchDownloaderWPF/MainWindow.xaml.cs index 0e9ce00c..9fbe65c8 100644 --- a/TwitchDownloaderWPF/MainWindow.xaml.cs +++ b/TwitchDownloaderWPF/MainWindow.xaml.cs @@ -69,7 +69,7 @@ private async void Window_Loaded(object sender, RoutedEventArgs e) if (!File.Exists("ffmpeg.exe")) await FFmpegDownloader.GetLatestVersion(FFmpegVersion.Full); - Version currentVersion = new Version("1.50.5"); + Version currentVersion = new Version("1.50.6"); AutoUpdater.InstalledVersion = currentVersion; AutoUpdater.Start("https://downloader-update.twitcharchives.workers.dev");