Changed some default settings (#2024)
Colorized nicknames now enabled by default Show channels live now enabled by default Bold usernames enabled by default
This commit is contained in:
@@ -10,6 +10,9 @@
|
|||||||
- Minor: Changed the English in two rate-limited system messages (#1878)
|
- Minor: Changed the English in two rate-limited system messages (#1878)
|
||||||
- Minor: Added image for streamer mode in the user popup icon.
|
- Minor: Added image for streamer mode in the user popup icon.
|
||||||
- Minor: Added vip and unvip buttons.
|
- Minor: Added vip and unvip buttons.
|
||||||
|
- Minor: Colorized nicknames now enabled by default
|
||||||
|
- Minor: Show channels live now enabled by default
|
||||||
|
- Minor: Bold usernames enabled by default
|
||||||
- Bugfix: Fix bug preventing users from setting the highlight color of the second entry in the "User" highlights tab (#1898)
|
- Bugfix: Fix bug preventing users from setting the highlight color of the second entry in the "User" highlights tab (#1898)
|
||||||
- Bugfix: Fix bug where the "check user follow state" event could trigger a network request requesting the user to follow or unfollow a user. By itself its quite harmless as it just repeats to Twitch the same follow state we had, so no follows should have been lost by this but it meant there was a rogue network request that was fired that could cause a crash (#1906)
|
- Bugfix: Fix bug where the "check user follow state" event could trigger a network request requesting the user to follow or unfollow a user. By itself its quite harmless as it just repeats to Twitch the same follow state we had, so no follows should have been lost by this but it meant there was a rogue network request that was fired that could cause a crash (#1906)
|
||||||
- Bugfix: /usercard command will now respect the "Automatically close user popup" setting (#1918)
|
- Bugfix: /usercard command will now respect the "Automatically close user popup" setting (#1918)
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ public:
|
|||||||
BoolSetting hideModerationActions = {
|
BoolSetting hideModerationActions = {
|
||||||
"/appearance/messages/hideModerationActions", false};
|
"/appearance/messages/hideModerationActions", false};
|
||||||
BoolSetting colorizeNicknames = {"/appearance/messages/colorizeNicknames",
|
BoolSetting colorizeNicknames = {"/appearance/messages/colorizeNicknames",
|
||||||
false};
|
true};
|
||||||
|
|
||||||
IntSetting tabDirection = {"/appearance/tabDirection",
|
IntSetting tabDirection = {"/appearance/tabDirection",
|
||||||
NotebookTabDirection::Horizontal};
|
NotebookTabDirection::Horizontal};
|
||||||
@@ -92,14 +92,14 @@ public:
|
|||||||
"/appearance/messages/alternateMessageBackground", false};
|
"/appearance/messages/alternateMessageBackground", false};
|
||||||
FloatSetting boldScale = {"/appearance/boldScale", 63};
|
FloatSetting boldScale = {"/appearance/boldScale", 63};
|
||||||
BoolSetting showTabCloseButton = {"/appearance/showTabCloseButton", true};
|
BoolSetting showTabCloseButton = {"/appearance/showTabCloseButton", true};
|
||||||
BoolSetting showTabLive = {"/appearance/showTabLiveButton", false};
|
BoolSetting showTabLive = {"/appearance/showTabLiveButton", true};
|
||||||
BoolSetting hidePreferencesButton = {"/appearance/hidePreferencesButton",
|
BoolSetting hidePreferencesButton = {"/appearance/hidePreferencesButton",
|
||||||
false};
|
false};
|
||||||
BoolSetting hideUserButton = {"/appearance/hideUserButton", false};
|
BoolSetting hideUserButton = {"/appearance/hideUserButton", false};
|
||||||
BoolSetting enableSmoothScrolling = {"/appearance/smoothScrolling", true};
|
BoolSetting enableSmoothScrolling = {"/appearance/smoothScrolling", true};
|
||||||
BoolSetting enableSmoothScrollingNewMessages = {
|
BoolSetting enableSmoothScrollingNewMessages = {
|
||||||
"/appearance/smoothScrollingNewMessages", false};
|
"/appearance/smoothScrollingNewMessages", false};
|
||||||
BoolSetting boldUsernames = {"/appearance/messages/boldUsernames", false};
|
BoolSetting boldUsernames = {"/appearance/messages/boldUsernames", true};
|
||||||
BoolSetting findAllUsernames = {"/appearance/messages/findAllUsernames",
|
BoolSetting findAllUsernames = {"/appearance/messages/findAllUsernames",
|
||||||
false};
|
false};
|
||||||
// BoolSetting customizable splitheader
|
// BoolSetting customizable splitheader
|
||||||
|
|||||||
@@ -634,7 +634,7 @@ void GeneralPage::initLayout(SettingsLayout &layout)
|
|||||||
|
|
||||||
layout.addCheckbox("Show moderation messages", s.hideModerationActions,
|
layout.addCheckbox("Show moderation messages", s.hideModerationActions,
|
||||||
true);
|
true);
|
||||||
layout.addCheckbox("Random username color for users who never set a color",
|
layout.addCheckbox("Colorize users without color set (gray names)",
|
||||||
s.colorizeNicknames);
|
s.colorizeNicknames);
|
||||||
layout.addCheckbox("Mention users with a comma (User,)",
|
layout.addCheckbox("Mention users with a comma (User,)",
|
||||||
s.mentionUsersWithComma);
|
s.mentionUsersWithComma);
|
||||||
|
|||||||
Reference in New Issue
Block a user