Skip to content

Commit

Permalink
Default readable username colors to true (#1137)
Browse files Browse the repository at this point in the history
* Default readable username colors to true

* Default WPF update time to 0.2
  • Loading branch information
ScrubN authored Jul 7, 2024
1 parent e383419 commit ccd51a0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/Modes/Arguments/ChatRenderArgs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ internal sealed class ChatRenderArgs : IFileCollisionArgs, ITwitchDownloaderArgs
[Option("alternate-backgrounds", Default = false, HelpText = "Alternates the background color of every other chat message to help tell them apart.")]
public bool AlternateMessageBackgrounds { get; set; }

[Option("readable-colors", Default = false, HelpText = "Increases the contrast of usernames against the background or outline color.")]
[Option("readable-colors", Default = true, HelpText = "Increases the contrast of usernames against the background or outline color.")]
public bool AdjustUsernameVisibility { get; set; }

[Option("offline", Default = false, HelpText = "Render completely offline using only embedded emotes, badges, and bits from the input json.")]
Expand Down
2 changes: 1 addition & 1 deletion TwitchDownloaderCLI/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ Other = `1`, Broadcaster = `2`, Moderator = `4`, VIP = `8`, Subscriber = `16`, P
(Default: `false`) Alternates the background color of every other chat message to help tell them apart.

**--readable-colors**
(Default: `false`) Increases the contrast of usernames against the background or outline color.
(Default: `true`) Increases the contrast of usernames against the background or outline color.

**--offline**
(Default: `false`) Render completely offline using only embedded emotes, badges, and bits from the input json.
Expand Down
4 changes: 2 additions & 2 deletions TwitchDownloaderWPF/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<value>700</value>
</setting>
<setting name="UpdateTime" serializeAs="String">
<value>0.1</value>
<value>0.2</value>
</setting>
<setting name="FFZEmotes" serializeAs="String">
<value>True</value>
Expand Down Expand Up @@ -230,7 +230,7 @@
<value>30</value>
</setting>
<setting name="AdjustUsernameVisibility" serializeAs="String">
<value>False</value>
<value>True</value>
</setting>
<setting name="VodTrimMode" serializeAs="String">
<value>1</value>
Expand Down
4 changes: 2 additions & 2 deletions TwitchDownloaderWPF/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions TwitchDownloaderWPF/Properties/Settings.settings
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<Value Profile="(Default)">700</Value>
</Setting>
<Setting Name="UpdateTime" Type="System.Double" Scope="User">
<Value Profile="(Default)">0.1</Value>
<Value Profile="(Default)">0.2</Value>
</Setting>
<Setting Name="FFZEmotes" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">True</Value>
Expand Down Expand Up @@ -225,7 +225,7 @@
<Value Profile="(Default)">30</Value>
</Setting>
<Setting Name="AdjustUsernameVisibility" Type="System.Boolean" Scope="User">
<Value Profile="(Default)">False</Value>
<Value Profile="(Default)">True</Value>
</Setting>
<Setting Name="VodTrimMode" Type="System.Int32" Scope="User">
<Value Profile="(Default)">1</Value>
Expand Down

0 comments on commit ccd51a0

Please sign in to comment.