Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove --silent arg from chat downloader #1156

Merged
merged 1 commit into from
Jul 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions TwitchDownloaderCLI/Modes/Arguments/ChatDownloadArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ internal sealed class ChatDownloadArgs : IFileCollisionArgs, ITwitchDownloaderAr
[Option('t', "threads", Default = 4, HelpText = "Number of parallel download threads. Large values may result in IP rate limiting.")]
public int DownloadThreads { get; set; }

[Option("silent", Default = false, HelpText = "Suppresses progress console output")]
public bool Silent { get; set; }

[Option("temp-path", Default = "", HelpText = "Path to temporary folder to use for cache.")]
public string TempFolder { get; set; }

Expand Down
1 change: 0 additions & 1 deletion TwitchDownloaderCLI/Modes/DownloadChat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ private static ChatDownloadOptions GetDownloadOptions(ChatDownloadArgs inputOpti
Compression = inputOptions.Compression,
TimeFormat = inputOptions.TimeFormat,
DownloadThreads = inputOptions.DownloadThreads,
Silent = inputOptions.Silent,
BttvEmotes = (bool)inputOptions.BttvEmotes!,
FfzEmotes = (bool)inputOptions.FfzEmotes!,
StvEmotes = (bool)inputOptions.StvEmotes!,
Expand Down
1 change: 0 additions & 1 deletion TwitchDownloaderCore/Options/ChatDownloadOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public class ChatDownloadOptions
public bool FfzEmotes { get; set; }
public bool StvEmotes { get; set; }
public int DownloadThreads { get; set; } = 1;
public bool Silent { get; set; } = false;
public TimestampFormat TimeFormat { get; set; }
public string FileExtension
{
Expand Down
Loading