Skip to content

Commit

Permalink
bump version + more sub messages
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Nov 5, 2022
1 parent a61ceec commit 611ae6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/TwitchDownloaderCLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<Version>1.50.5</Version>
<Version>1.50.6</Version>
<Platforms>AnyCPU;x64</Platforms>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>default</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/ChatRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion TwitchDownloaderWPF/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 611ae6a

Please sign in to comment.