diff --git a/CHANGELOG.md b/CHANGELOG.md index cba28c29d..415c12f2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Minor: Add `Set highlight sounds` and `Open subscription page` split hotkeys. (#5856, #6030) - Minor: `/clear` messages are now stacked like timeouts. (#5806) - Minor: Treat all browsers starting with `firefox` as a Firefox browser. (#5805) +- Minor: Timestamps are now monospaced. (#6062) - Minor: Remove incognito browser support for `opera/launcher` (this should no longer be a thing). (#5805) - Minor: Remove incognito browser support for `iexplore`, because internet explorer is EOL. (#5810) - Minor: When (re-)connecting, visible channels are now joined first. (#5850) diff --git a/src/messages/MessageElement.cpp b/src/messages/MessageElement.cpp index 4dfe07a0a..5243c15ec 100644 --- a/src/messages/MessageElement.cpp +++ b/src/messages/MessageElement.cpp @@ -1026,7 +1026,7 @@ TextElement *TimestampElement::formatTime(const QTime &time) QString format = locale.toString(time, getSettings()->timestampFormat); return new TextElement(format, MessageElementFlag::Timestamp, - MessageColor::System, FontStyle::ChatMedium); + MessageColor::System, FontStyle::TimestampMedium); } QJsonObject TimestampElement::toJson() const diff --git a/src/singletons/Fonts.cpp b/src/singletons/Fonts.cpp index b75c90b0d..b733551dc 100644 --- a/src/singletons/Fonts.cpp +++ b/src/singletons/Fonts.cpp @@ -70,6 +70,7 @@ float fontSize(FontStyle style) case FontStyle::ChatMedium: case FontStyle::ChatMediumBold: case FontStyle::ChatMediumItalic: + case FontStyle::TimestampMedium: return chatSize(); case FontStyle::ChatLarge: return 1.2F * chatSize(); @@ -99,6 +100,7 @@ int fontWeight(FontStyle style) case FontStyle::ChatMediumItalic: case FontStyle::ChatLarge: case FontStyle::ChatVeryLarge: + case FontStyle::TimestampMedium: return getSettings()->chatFontWeight.getValue(); case FontStyle::ChatMediumBold: @@ -129,6 +131,7 @@ bool isItalic(FontStyle style) case FontStyle::ChatMediumBold: case FontStyle::ChatLarge: case FontStyle::ChatVeryLarge: + case FontStyle::TimestampMedium: case FontStyle::UiMedium: case FontStyle::UiMediumBold: case FontStyle::UiTabs: @@ -157,6 +160,7 @@ QString fontFamily(FontStyle style) case FontStyle::ChatMediumItalic: case FontStyle::ChatLarge: case FontStyle::ChatVeryLarge: + case FontStyle::TimestampMedium: return getSettings()->chatFontFamily.getValue(); case FontStyle::UiMedium: @@ -229,12 +233,27 @@ Fonts::FontData &Fonts::getOrCreateFontData(FontStyle type, float scale) Fonts::FontData Fonts::createFontData(FontStyle type, float scale) { - return QFont{ + QFont font{ fontFamily(type), static_cast(fontSize(type) * scale), fontWeight(type), isItalic(type), }; + + switch (type) + { + case FontStyle::TimestampMedium: { +#if QT_VERSION >= QT_VERSION_CHECK(6, 7, 0) + // Apply the OpenType feature `tnum` to timestamp fonts + // https://sparanoid.com/lab/opentype-features/#tnum + auto tag = QFont::Tag("tnum"); + font.setFeature(tag, 1); +#endif + } + break; + } + + return font; } } // namespace chatterino diff --git a/src/singletons/Fonts.hpp b/src/singletons/Fonts.hpp index dcd239505..efed3c355 100644 --- a/src/singletons/Fonts.hpp +++ b/src/singletons/Fonts.hpp @@ -24,6 +24,8 @@ enum class FontStyle : uint8_t { ChatLarge, ChatVeryLarge, + TimestampMedium, + UiMedium, UiMediumBold, UiTabs, diff --git a/tests/snapshots/EventSub/automod-message-hold/automod-category.json b/tests/snapshots/EventSub/automod-message-hold/automod-category.json index 3db21f37d..32fd96e6f 100644 --- a/tests/snapshots/EventSub/automod-message-hold/automod-category.json +++ b/tests/snapshots/EventSub/automod-message-hold/automod-category.json @@ -179,7 +179,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-hold/blocked-term-enclosed.json b/tests/snapshots/EventSub/automod-message-hold/blocked-term-enclosed.json index 2cd32fd83..244857b1a 100644 --- a/tests/snapshots/EventSub/automod-message-hold/blocked-term-enclosed.json +++ b/tests/snapshots/EventSub/automod-message-hold/blocked-term-enclosed.json @@ -191,7 +191,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-hold/blocked-term.json b/tests/snapshots/EventSub/automod-message-hold/blocked-term.json index 8eed979da..8b21e2f11 100644 --- a/tests/snapshots/EventSub/automod-message-hold/blocked-term.json +++ b/tests/snapshots/EventSub/automod-message-hold/blocked-term.json @@ -185,7 +185,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-hold/blocked-terms-4.json b/tests/snapshots/EventSub/automod-message-hold/blocked-terms-4.json index e2b7a3433..e53c2e068 100644 --- a/tests/snapshots/EventSub/automod-message-hold/blocked-terms-4.json +++ b/tests/snapshots/EventSub/automod-message-hold/blocked-terms-4.json @@ -237,7 +237,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-hold/localized-name.json b/tests/snapshots/EventSub/automod-message-hold/localized-name.json index 59022479f..e13ab9415 100644 --- a/tests/snapshots/EventSub/automod-message-hold/localized-name.json +++ b/tests/snapshots/EventSub/automod-message-hold/localized-name.json @@ -179,7 +179,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-update/approved.json b/tests/snapshots/EventSub/automod-message-update/approved.json index e07652f17..16b775816 100644 --- a/tests/snapshots/EventSub/automod-message-update/approved.json +++ b/tests/snapshots/EventSub/automod-message-update/approved.json @@ -219,7 +219,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-update/denied.json b/tests/snapshots/EventSub/automod-message-update/denied.json index 0200dcd38..0f3afc9ce 100644 --- a/tests/snapshots/EventSub/automod-message-update/denied.json +++ b/tests/snapshots/EventSub/automod-message-update/denied.json @@ -219,7 +219,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/automod-message-update/expired.json b/tests/snapshots/EventSub/automod-message-update/expired.json index 8665e2bb7..572ed5cdc 100644 --- a/tests/snapshots/EventSub/automod-message-update/expired.json +++ b/tests/snapshots/EventSub/automod-message-update/expired.json @@ -219,7 +219,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/add-blocked-term-three.json b/tests/snapshots/EventSub/channel-moderate/add-blocked-term-three.json index 270b2dfd7..929ffcd51 100644 --- a/tests/snapshots/EventSub/channel-moderate/add-blocked-term-three.json +++ b/tests/snapshots/EventSub/channel-moderate/add-blocked-term-three.json @@ -59,7 +59,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/add-blocked-term.json b/tests/snapshots/EventSub/channel-moderate/add-blocked-term.json index 3dbaac209..cdd6b82fd 100644 --- a/tests/snapshots/EventSub/channel-moderate/add-blocked-term.json +++ b/tests/snapshots/EventSub/channel-moderate/add-blocked-term.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/add-permitted-term-two.json b/tests/snapshots/EventSub/channel-moderate/add-permitted-term-two.json index b2516a7ec..bbdf82f6b 100644 --- a/tests/snapshots/EventSub/channel-moderate/add-permitted-term-two.json +++ b/tests/snapshots/EventSub/channel-moderate/add-permitted-term-two.json @@ -58,7 +58,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/add-permitted-term.json b/tests/snapshots/EventSub/channel-moderate/add-permitted-term.json index 35b36498f..9e203d74e 100644 --- a/tests/snapshots/EventSub/channel-moderate/add-permitted-term.json +++ b/tests/snapshots/EventSub/channel-moderate/add-permitted-term.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/ban-reason.json b/tests/snapshots/EventSub/channel-moderate/ban-reason.json index e935e0d26..465a1ac44 100644 --- a/tests/snapshots/EventSub/channel-moderate/ban-reason.json +++ b/tests/snapshots/EventSub/channel-moderate/ban-reason.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/ban.json b/tests/snapshots/EventSub/channel-moderate/ban.json index 13cb4be68..2b77e3632 100644 --- a/tests/snapshots/EventSub/channel-moderate/ban.json +++ b/tests/snapshots/EventSub/channel-moderate/ban.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/clear.json b/tests/snapshots/EventSub/channel-moderate/clear.json index 5df237f3f..1eaaf158f 100644 --- a/tests/snapshots/EventSub/channel-moderate/clear.json +++ b/tests/snapshots/EventSub/channel-moderate/clear.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/delete-long.json b/tests/snapshots/EventSub/channel-moderate/delete-long.json index 55519bd32..ce785951a 100644 --- a/tests/snapshots/EventSub/channel-moderate/delete-long.json +++ b/tests/snapshots/EventSub/channel-moderate/delete-long.json @@ -56,7 +56,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/delete.json b/tests/snapshots/EventSub/channel-moderate/delete.json index efa8c2000..5cd139593 100644 --- a/tests/snapshots/EventSub/channel-moderate/delete.json +++ b/tests/snapshots/EventSub/channel-moderate/delete.json @@ -56,7 +56,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/emoteonly-off.json b/tests/snapshots/EventSub/channel-moderate/emoteonly-off.json index d9a5a5ef9..f0dc8cfd5 100644 --- a/tests/snapshots/EventSub/channel-moderate/emoteonly-off.json +++ b/tests/snapshots/EventSub/channel-moderate/emoteonly-off.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/emoteonly.json b/tests/snapshots/EventSub/channel-moderate/emoteonly.json index 1f3787439..8a34773ce 100644 --- a/tests/snapshots/EventSub/channel-moderate/emoteonly.json +++ b/tests/snapshots/EventSub/channel-moderate/emoteonly.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/followers-0s.json b/tests/snapshots/EventSub/channel-moderate/followers-0s.json index a42fe8964..a988ee204 100644 --- a/tests/snapshots/EventSub/channel-moderate/followers-0s.json +++ b/tests/snapshots/EventSub/channel-moderate/followers-0s.json @@ -52,7 +52,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/followers-off.json b/tests/snapshots/EventSub/channel-moderate/followers-off.json index df97ec10d..57ec2ae28 100644 --- a/tests/snapshots/EventSub/channel-moderate/followers-off.json +++ b/tests/snapshots/EventSub/channel-moderate/followers-off.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/followers.json b/tests/snapshots/EventSub/channel-moderate/followers.json index 0613776d3..af2f6952f 100644 --- a/tests/snapshots/EventSub/channel-moderate/followers.json +++ b/tests/snapshots/EventSub/channel-moderate/followers.json @@ -52,7 +52,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/mod.json b/tests/snapshots/EventSub/channel-moderate/mod.json index 5e629fc20..1edfee1b2 100644 --- a/tests/snapshots/EventSub/channel-moderate/mod.json +++ b/tests/snapshots/EventSub/channel-moderate/mod.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/raid.json b/tests/snapshots/EventSub/channel-moderate/raid.json index b6637995a..be5e7544e 100644 --- a/tests/snapshots/EventSub/channel-moderate/raid.json +++ b/tests/snapshots/EventSub/channel-moderate/raid.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/remove-blocked-term-four.json b/tests/snapshots/EventSub/channel-moderate/remove-blocked-term-four.json index 6de2eab3c..95f7a4071 100644 --- a/tests/snapshots/EventSub/channel-moderate/remove-blocked-term-four.json +++ b/tests/snapshots/EventSub/channel-moderate/remove-blocked-term-four.json @@ -60,7 +60,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/remove-blocked-term.json b/tests/snapshots/EventSub/channel-moderate/remove-blocked-term.json index 47c1d3ab9..3c015e7d7 100644 --- a/tests/snapshots/EventSub/channel-moderate/remove-blocked-term.json +++ b/tests/snapshots/EventSub/channel-moderate/remove-blocked-term.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/remove-permitted-term-from-automod.json b/tests/snapshots/EventSub/channel-moderate/remove-permitted-term-from-automod.json index 264ce840b..de7467c3f 100644 --- a/tests/snapshots/EventSub/channel-moderate/remove-permitted-term-from-automod.json +++ b/tests/snapshots/EventSub/channel-moderate/remove-permitted-term-from-automod.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/remove-permitted-term.json b/tests/snapshots/EventSub/channel-moderate/remove-permitted-term.json index 99b500795..b12450075 100644 --- a/tests/snapshots/EventSub/channel-moderate/remove-permitted-term.json +++ b/tests/snapshots/EventSub/channel-moderate/remove-permitted-term.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-ban-reason.json b/tests/snapshots/EventSub/channel-moderate/shared-ban-reason.json index 4beae4191..e815c2366 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-ban-reason.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-ban-reason.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-ban.json b/tests/snapshots/EventSub/channel-moderate/shared-ban.json index c96afe0f2..de5d14e6e 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-ban.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-ban.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-delete-long.json b/tests/snapshots/EventSub/channel-moderate/shared-delete-long.json index 0b2f0ca7d..505809497 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-delete-long.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-delete-long.json @@ -56,7 +56,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-delete.json b/tests/snapshots/EventSub/channel-moderate/shared-delete.json index b401f239e..21291f4f3 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-delete.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-delete.json @@ -56,7 +56,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources.json b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources.json index ae0086f9b..b40250222 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources.json @@ -179,7 +179,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -322,7 +322,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -461,7 +461,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources2.json b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources2.json index ec7de7d00..4782c45d3 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources2.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking-diff-sources2.json @@ -139,7 +139,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -282,7 +282,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking.json b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking.json index 4704dcc2f..967474a18 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-timeout-stacking.json @@ -139,7 +139,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -282,7 +282,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-timeout.json b/tests/snapshots/EventSub/channel-moderate/shared-timeout.json index eb05d9e81..b821d0670 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-timeout.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-timeout.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-unban.json b/tests/snapshots/EventSub/channel-moderate/shared-unban.json index 165135462..3c0a72554 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-unban.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-unban.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/shared-untimeout.json b/tests/snapshots/EventSub/channel-moderate/shared-untimeout.json index e15ebd115..94a999768 100644 --- a/tests/snapshots/EventSub/channel-moderate/shared-untimeout.json +++ b/tests/snapshots/EventSub/channel-moderate/shared-untimeout.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/slow-off.json b/tests/snapshots/EventSub/channel-moderate/slow-off.json index 452bfb964..d5a966ac9 100644 --- a/tests/snapshots/EventSub/channel-moderate/slow-off.json +++ b/tests/snapshots/EventSub/channel-moderate/slow-off.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/slow.json b/tests/snapshots/EventSub/channel-moderate/slow.json index af8d6ad80..f8fe024d8 100644 --- a/tests/snapshots/EventSub/channel-moderate/slow.json +++ b/tests/snapshots/EventSub/channel-moderate/slow.json @@ -52,7 +52,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/subscribers-off.json b/tests/snapshots/EventSub/channel-moderate/subscribers-off.json index 05556df89..bbf9aa6db 100644 --- a/tests/snapshots/EventSub/channel-moderate/subscribers-off.json +++ b/tests/snapshots/EventSub/channel-moderate/subscribers-off.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/subscribers.json b/tests/snapshots/EventSub/channel-moderate/subscribers.json index 4816962ca..3944b2b1c 100644 --- a/tests/snapshots/EventSub/channel-moderate/subscribers.json +++ b/tests/snapshots/EventSub/channel-moderate/subscribers.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/timeout-stacking-reason.json b/tests/snapshots/EventSub/channel-moderate/timeout-stacking-reason.json index 40dc4c765..9cc9534ae 100644 --- a/tests/snapshots/EventSub/channel-moderate/timeout-stacking-reason.json +++ b/tests/snapshots/EventSub/channel-moderate/timeout-stacking-reason.json @@ -139,7 +139,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -252,7 +252,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/timeout-stacking.json b/tests/snapshots/EventSub/channel-moderate/timeout-stacking.json index 7215ac469..b7c34b5e4 100644 --- a/tests/snapshots/EventSub/channel-moderate/timeout-stacking.json +++ b/tests/snapshots/EventSub/channel-moderate/timeout-stacking.json @@ -139,7 +139,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -251,7 +251,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/timeout.json b/tests/snapshots/EventSub/channel-moderate/timeout.json index f18fd40f0..b08ecc89a 100644 --- a/tests/snapshots/EventSub/channel-moderate/timeout.json +++ b/tests/snapshots/EventSub/channel-moderate/timeout.json @@ -57,7 +57,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/unban.json b/tests/snapshots/EventSub/channel-moderate/unban.json index a3e448f53..a9e584cab 100644 --- a/tests/snapshots/EventSub/channel-moderate/unban.json +++ b/tests/snapshots/EventSub/channel-moderate/unban.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/uniquechat-off.json b/tests/snapshots/EventSub/channel-moderate/uniquechat-off.json index 8d9cefc4d..d974879a6 100644 --- a/tests/snapshots/EventSub/channel-moderate/uniquechat-off.json +++ b/tests/snapshots/EventSub/channel-moderate/uniquechat-off.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/uniquechat.json b/tests/snapshots/EventSub/channel-moderate/uniquechat.json index a4ffee101..72cb302fc 100644 --- a/tests/snapshots/EventSub/channel-moderate/uniquechat.json +++ b/tests/snapshots/EventSub/channel-moderate/uniquechat.json @@ -50,7 +50,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/unmod.json b/tests/snapshots/EventSub/channel-moderate/unmod.json index 8a770b022..ffef87f4a 100644 --- a/tests/snapshots/EventSub/channel-moderate/unmod.json +++ b/tests/snapshots/EventSub/channel-moderate/unmod.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/unraid.json b/tests/snapshots/EventSub/channel-moderate/unraid.json index d80896fd4..075138c1d 100644 --- a/tests/snapshots/EventSub/channel-moderate/unraid.json +++ b/tests/snapshots/EventSub/channel-moderate/unraid.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/untimeout.json b/tests/snapshots/EventSub/channel-moderate/untimeout.json index ef1ecc5d5..6de50041a 100644 --- a/tests/snapshots/EventSub/channel-moderate/untimeout.json +++ b/tests/snapshots/EventSub/channel-moderate/untimeout.json @@ -54,7 +54,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/warn-shared.json b/tests/snapshots/EventSub/channel-moderate/warn-shared.json index ca2f62322..6272b5c23 100644 --- a/tests/snapshots/EventSub/channel-moderate/warn-shared.json +++ b/tests/snapshots/EventSub/channel-moderate/warn-shared.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-moderate/warn.json b/tests/snapshots/EventSub/channel-moderate/warn.json index 81b185f3b..d7a5a7d46 100644 --- a/tests/snapshots/EventSub/channel-moderate/warn.json +++ b/tests/snapshots/EventSub/channel-moderate/warn.json @@ -55,7 +55,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-suspicious-user-message/restricted-emote.json b/tests/snapshots/EventSub/channel-suspicious-user-message/restricted-emote.json index 3d18b33ff..e8bf82d5b 100644 --- a/tests/snapshots/EventSub/channel-suspicious-user-message/restricted-emote.json +++ b/tests/snapshots/EventSub/channel-suspicious-user-message/restricted-emote.json @@ -131,7 +131,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-suspicious-user-message/restricted.json b/tests/snapshots/EventSub/channel-suspicious-user-message/restricted.json index 354305d73..4d0ac581f 100644 --- a/tests/snapshots/EventSub/channel-suspicious-user-message/restricted.json +++ b/tests/snapshots/EventSub/channel-suspicious-user-message/restricted.json @@ -128,7 +128,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-suspicious-user-update/monitored.json b/tests/snapshots/EventSub/channel-suspicious-user-update/monitored.json index 9d7f7bf36..89b3ee347 100644 --- a/tests/snapshots/EventSub/channel-suspicious-user-update/monitored.json +++ b/tests/snapshots/EventSub/channel-suspicious-user-update/monitored.json @@ -29,7 +29,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-suspicious-user-update/no-treatment.json b/tests/snapshots/EventSub/channel-suspicious-user-update/no-treatment.json index 08bea7f82..28a96a929 100644 --- a/tests/snapshots/EventSub/channel-suspicious-user-update/no-treatment.json +++ b/tests/snapshots/EventSub/channel-suspicious-user-update/no-treatment.json @@ -29,7 +29,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/EventSub/channel-suspicious-user-update/restricted.json b/tests/snapshots/EventSub/channel-suspicious-user-update/restricted.json index 5f8b16024..ab652dbfe 100644 --- a/tests/snapshots/EventSub/channel-suspicious-user-update/restricted.json +++ b/tests/snapshots/EventSub/channel-suspicious-user-update/restricted.json @@ -29,7 +29,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/action.json b/tests/snapshots/IrcMessageHandler/action.json index f130c2b61..639648d95 100644 --- a/tests/snapshots/IrcMessageHandler/action.json +++ b/tests/snapshots/IrcMessageHandler/action.json @@ -37,7 +37,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/all-usernames.json b/tests/snapshots/IrcMessageHandler/all-usernames.json index 1b88636c6..fcf516f93 100644 --- a/tests/snapshots/IrcMessageHandler/all-usernames.json +++ b/tests/snapshots/IrcMessageHandler/all-usernames.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/announcement.json b/tests/snapshots/IrcMessageHandler/announcement.json index 1791d3d14..fedcc7ae9 100644 --- a/tests/snapshots/IrcMessageHandler/announcement.json +++ b/tests/snapshots/IrcMessageHandler/announcement.json @@ -37,7 +37,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -167,7 +167,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/bad-emotes.json b/tests/snapshots/IrcMessageHandler/bad-emotes.json index aed8056cc..a219dd156 100644 --- a/tests/snapshots/IrcMessageHandler/bad-emotes.json +++ b/tests/snapshots/IrcMessageHandler/bad-emotes.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/bad-emotes2.json b/tests/snapshots/IrcMessageHandler/bad-emotes2.json index 6b1ddf862..528a0bdc4 100644 --- a/tests/snapshots/IrcMessageHandler/bad-emotes2.json +++ b/tests/snapshots/IrcMessageHandler/bad-emotes2.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/bad-emotes3.json b/tests/snapshots/IrcMessageHandler/bad-emotes3.json index 8a00f703a..f3ec18025 100644 --- a/tests/snapshots/IrcMessageHandler/bad-emotes3.json +++ b/tests/snapshots/IrcMessageHandler/bad-emotes3.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/bad-emotes4.json b/tests/snapshots/IrcMessageHandler/bad-emotes4.json index 977a835f8..9a67310bd 100644 --- a/tests/snapshots/IrcMessageHandler/bad-emotes4.json +++ b/tests/snapshots/IrcMessageHandler/bad-emotes4.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/badges-invalid.json b/tests/snapshots/IrcMessageHandler/badges-invalid.json index 1a2259683..52bcf446f 100644 --- a/tests/snapshots/IrcMessageHandler/badges-invalid.json +++ b/tests/snapshots/IrcMessageHandler/badges-invalid.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/badges.json b/tests/snapshots/IrcMessageHandler/badges.json index fdbfbe023..2d367f022 100644 --- a/tests/snapshots/IrcMessageHandler/badges.json +++ b/tests/snapshots/IrcMessageHandler/badges.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/bitsbadge.json b/tests/snapshots/IrcMessageHandler/bitsbadge.json index c7603f4d5..04f199d47 100644 --- a/tests/snapshots/IrcMessageHandler/bitsbadge.json +++ b/tests/snapshots/IrcMessageHandler/bitsbadge.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/cheer1.json b/tests/snapshots/IrcMessageHandler/cheer1.json index a74ae46c8..5dd1a3504 100644 --- a/tests/snapshots/IrcMessageHandler/cheer1.json +++ b/tests/snapshots/IrcMessageHandler/cheer1.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/cheer2.json b/tests/snapshots/IrcMessageHandler/cheer2.json index ee853d975..a3649ea9b 100644 --- a/tests/snapshots/IrcMessageHandler/cheer2.json +++ b/tests/snapshots/IrcMessageHandler/cheer2.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/cheer3.json b/tests/snapshots/IrcMessageHandler/cheer3.json index f248ace55..4fbc8c856 100644 --- a/tests/snapshots/IrcMessageHandler/cheer3.json +++ b/tests/snapshots/IrcMessageHandler/cheer3.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/cheer4.json b/tests/snapshots/IrcMessageHandler/cheer4.json index d2fc326e8..29622701c 100644 --- a/tests/snapshots/IrcMessageHandler/cheer4.json +++ b/tests/snapshots/IrcMessageHandler/cheer4.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/clearchat-stack-always.json b/tests/snapshots/IrcMessageHandler/clearchat-stack-always.json index 5165de2d9..ea64e0116 100644 --- a/tests/snapshots/IrcMessageHandler/clearchat-stack-always.json +++ b/tests/snapshots/IrcMessageHandler/clearchat-stack-always.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -108,7 +108,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/clearchat-stack-never.json b/tests/snapshots/IrcMessageHandler/clearchat-stack-never.json index c9a11ac4f..95d373af9 100644 --- a/tests/snapshots/IrcMessageHandler/clearchat-stack-never.json +++ b/tests/snapshots/IrcMessageHandler/clearchat-stack-never.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/clearchat-stack-no-user.json b/tests/snapshots/IrcMessageHandler/clearchat-stack-no-user.json index 375013fce..ac4ee6ac8 100644 --- a/tests/snapshots/IrcMessageHandler/clearchat-stack-no-user.json +++ b/tests/snapshots/IrcMessageHandler/clearchat-stack-no-user.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/clearchat.json b/tests/snapshots/IrcMessageHandler/clearchat.json index 2ecf8deee..acb2188f6 100644 --- a/tests/snapshots/IrcMessageHandler/clearchat.json +++ b/tests/snapshots/IrcMessageHandler/clearchat.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/custom-mod.json b/tests/snapshots/IrcMessageHandler/custom-mod.json index cbd0ed24f..7035ab71e 100644 --- a/tests/snapshots/IrcMessageHandler/custom-mod.json +++ b/tests/snapshots/IrcMessageHandler/custom-mod.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/custom-vip.json b/tests/snapshots/IrcMessageHandler/custom-vip.json index a9683fa58..9f6c7b593 100644 --- a/tests/snapshots/IrcMessageHandler/custom-vip.json +++ b/tests/snapshots/IrcMessageHandler/custom-vip.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emote-emoji.json b/tests/snapshots/IrcMessageHandler/emote-emoji.json index 011ca439d..8d1d03c45 100644 --- a/tests/snapshots/IrcMessageHandler/emote-emoji.json +++ b/tests/snapshots/IrcMessageHandler/emote-emoji.json @@ -37,7 +37,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emote.json b/tests/snapshots/IrcMessageHandler/emote.json index ceff1863d..5cb520ceb 100644 --- a/tests/snapshots/IrcMessageHandler/emote.json +++ b/tests/snapshots/IrcMessageHandler/emote.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emoteonly-on.json b/tests/snapshots/IrcMessageHandler/emoteonly-on.json index 64bcbf714..0058d45bf 100644 --- a/tests/snapshots/IrcMessageHandler/emoteonly-on.json +++ b/tests/snapshots/IrcMessageHandler/emoteonly-on.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emotes.json b/tests/snapshots/IrcMessageHandler/emotes.json index 48124fdbe..ce387835d 100644 --- a/tests/snapshots/IrcMessageHandler/emotes.json +++ b/tests/snapshots/IrcMessageHandler/emotes.json @@ -34,7 +34,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emotes2.json b/tests/snapshots/IrcMessageHandler/emotes2.json index 82b6b5b64..51c162f24 100644 --- a/tests/snapshots/IrcMessageHandler/emotes2.json +++ b/tests/snapshots/IrcMessageHandler/emotes2.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emotes3.json b/tests/snapshots/IrcMessageHandler/emotes3.json index dab2c3b8e..9121cb5b5 100644 --- a/tests/snapshots/IrcMessageHandler/emotes3.json +++ b/tests/snapshots/IrcMessageHandler/emotes3.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emotes4.json b/tests/snapshots/IrcMessageHandler/emotes4.json index 7cce268df..f40d884f7 100644 --- a/tests/snapshots/IrcMessageHandler/emotes4.json +++ b/tests/snapshots/IrcMessageHandler/emotes4.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/emotes5.json b/tests/snapshots/IrcMessageHandler/emotes5.json index e8cf39399..d4e792dc4 100644 --- a/tests/snapshots/IrcMessageHandler/emotes5.json +++ b/tests/snapshots/IrcMessageHandler/emotes5.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/first-msg.json b/tests/snapshots/IrcMessageHandler/first-msg.json index 1311151e5..949f3c732 100644 --- a/tests/snapshots/IrcMessageHandler/first-msg.json +++ b/tests/snapshots/IrcMessageHandler/first-msg.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/highlight1.json b/tests/snapshots/IrcMessageHandler/highlight1.json index 56dfc1358..3b48c9bc7 100644 --- a/tests/snapshots/IrcMessageHandler/highlight1.json +++ b/tests/snapshots/IrcMessageHandler/highlight1.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/highlight2.json b/tests/snapshots/IrcMessageHandler/highlight2.json index 97f1607cb..f5d4c4ad6 100644 --- a/tests/snapshots/IrcMessageHandler/highlight2.json +++ b/tests/snapshots/IrcMessageHandler/highlight2.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/highlight3.json b/tests/snapshots/IrcMessageHandler/highlight3.json index 1b4a3cec4..25dd93550 100644 --- a/tests/snapshots/IrcMessageHandler/highlight3.json +++ b/tests/snapshots/IrcMessageHandler/highlight3.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/hype-chat-invalid.json b/tests/snapshots/IrcMessageHandler/hype-chat-invalid.json index 85a23091c..5f4937adc 100644 --- a/tests/snapshots/IrcMessageHandler/hype-chat-invalid.json +++ b/tests/snapshots/IrcMessageHandler/hype-chat-invalid.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/hype-chat0.json b/tests/snapshots/IrcMessageHandler/hype-chat0.json index b6696d452..8b1e0f2f1 100644 --- a/tests/snapshots/IrcMessageHandler/hype-chat0.json +++ b/tests/snapshots/IrcMessageHandler/hype-chat0.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -176,7 +176,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/hype-chat1.json b/tests/snapshots/IrcMessageHandler/hype-chat1.json index a0bcffc9a..96362cfcd 100644 --- a/tests/snapshots/IrcMessageHandler/hype-chat1.json +++ b/tests/snapshots/IrcMessageHandler/hype-chat1.json @@ -38,7 +38,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -185,7 +185,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/hype-chat2.json b/tests/snapshots/IrcMessageHandler/hype-chat2.json index 2ca8fc010..4d4884ef4 100644 --- a/tests/snapshots/IrcMessageHandler/hype-chat2.json +++ b/tests/snapshots/IrcMessageHandler/hype-chat2.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -182,7 +182,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/ignore-block1.json b/tests/snapshots/IrcMessageHandler/ignore-block1.json index 23040c0f2..a13e45cf0 100644 --- a/tests/snapshots/IrcMessageHandler/ignore-block1.json +++ b/tests/snapshots/IrcMessageHandler/ignore-block1.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/ignore-infinite.json b/tests/snapshots/IrcMessageHandler/ignore-infinite.json index edc428af1..01833b77a 100644 --- a/tests/snapshots/IrcMessageHandler/ignore-infinite.json +++ b/tests/snapshots/IrcMessageHandler/ignore-infinite.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/ignore-replace.json b/tests/snapshots/IrcMessageHandler/ignore-replace.json index 1d1959529..4f365b1c4 100644 --- a/tests/snapshots/IrcMessageHandler/ignore-replace.json +++ b/tests/snapshots/IrcMessageHandler/ignore-replace.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/justinfan.json b/tests/snapshots/IrcMessageHandler/justinfan.json index e189d67af..96eb91dda 100644 --- a/tests/snapshots/IrcMessageHandler/justinfan.json +++ b/tests/snapshots/IrcMessageHandler/justinfan.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/links.json b/tests/snapshots/IrcMessageHandler/links.json index abd6b4dd5..3981d1644 100644 --- a/tests/snapshots/IrcMessageHandler/links.json +++ b/tests/snapshots/IrcMessageHandler/links.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/mentions.json b/tests/snapshots/IrcMessageHandler/mentions.json index 3be523cdc..6efcc8ce0 100644 --- a/tests/snapshots/IrcMessageHandler/mentions.json +++ b/tests/snapshots/IrcMessageHandler/mentions.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/mod.json b/tests/snapshots/IrcMessageHandler/mod.json index 97effa634..fecb35a41 100644 --- a/tests/snapshots/IrcMessageHandler/mod.json +++ b/tests/snapshots/IrcMessageHandler/mod.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/nickname.json b/tests/snapshots/IrcMessageHandler/nickname.json index 60f703688..db1697d5c 100644 --- a/tests/snapshots/IrcMessageHandler/nickname.json +++ b/tests/snapshots/IrcMessageHandler/nickname.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/no-nick.json b/tests/snapshots/IrcMessageHandler/no-nick.json index 49dea1a5f..6a8224352 100644 --- a/tests/snapshots/IrcMessageHandler/no-nick.json +++ b/tests/snapshots/IrcMessageHandler/no-nick.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/no-tags.json b/tests/snapshots/IrcMessageHandler/no-tags.json index 663528f4c..a2fa64ebb 100644 --- a/tests/snapshots/IrcMessageHandler/no-tags.json +++ b/tests/snapshots/IrcMessageHandler/no-tags.json @@ -33,7 +33,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/raid.json b/tests/snapshots/IrcMessageHandler/raid.json index 9a643b38e..53ca9601d 100644 --- a/tests/snapshots/IrcMessageHandler/raid.json +++ b/tests/snapshots/IrcMessageHandler/raid.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/redeemed-highlight.json b/tests/snapshots/IrcMessageHandler/redeemed-highlight.json index 013f454e4..89a99eee8 100644 --- a/tests/snapshots/IrcMessageHandler/redeemed-highlight.json +++ b/tests/snapshots/IrcMessageHandler/redeemed-highlight.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-action.json b/tests/snapshots/IrcMessageHandler/reply-action.json index cb425163d..d32e8722c 100644 --- a/tests/snapshots/IrcMessageHandler/reply-action.json +++ b/tests/snapshots/IrcMessageHandler/reply-action.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-block.json b/tests/snapshots/IrcMessageHandler/reply-block.json index 3ee944917..41493ad37 100644 --- a/tests/snapshots/IrcMessageHandler/reply-block.json +++ b/tests/snapshots/IrcMessageHandler/reply-block.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-blocked-user.json b/tests/snapshots/IrcMessageHandler/reply-blocked-user.json index 4fe8b75d1..598f2d129 100644 --- a/tests/snapshots/IrcMessageHandler/reply-blocked-user.json +++ b/tests/snapshots/IrcMessageHandler/reply-blocked-user.json @@ -77,7 +77,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-child.json b/tests/snapshots/IrcMessageHandler/reply-child.json index 61aaff993..6cbd30259 100644 --- a/tests/snapshots/IrcMessageHandler/reply-child.json +++ b/tests/snapshots/IrcMessageHandler/reply-child.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-ignore.json b/tests/snapshots/IrcMessageHandler/reply-ignore.json index 0d15f8ddb..8cfff05a0 100644 --- a/tests/snapshots/IrcMessageHandler/reply-ignore.json +++ b/tests/snapshots/IrcMessageHandler/reply-ignore.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-no-prev.json b/tests/snapshots/IrcMessageHandler/reply-no-prev.json index f85d7780d..5caf65994 100644 --- a/tests/snapshots/IrcMessageHandler/reply-no-prev.json +++ b/tests/snapshots/IrcMessageHandler/reply-no-prev.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-root.json b/tests/snapshots/IrcMessageHandler/reply-root.json index 6f32d4c35..536bfe882 100644 --- a/tests/snapshots/IrcMessageHandler/reply-root.json +++ b/tests/snapshots/IrcMessageHandler/reply-root.json @@ -91,7 +91,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reply-single.json b/tests/snapshots/IrcMessageHandler/reply-single.json index 907e759c1..4a2e96dac 100644 --- a/tests/snapshots/IrcMessageHandler/reply-single.json +++ b/tests/snapshots/IrcMessageHandler/reply-single.json @@ -95,7 +95,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reward-bits.json b/tests/snapshots/IrcMessageHandler/reward-bits.json index ede294971..b2a54ecdb 100644 --- a/tests/snapshots/IrcMessageHandler/reward-bits.json +++ b/tests/snapshots/IrcMessageHandler/reward-bits.json @@ -20,7 +20,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -183,7 +183,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reward-empty.json b/tests/snapshots/IrcMessageHandler/reward-empty.json index 6088f4d09..ff0ba8171 100644 --- a/tests/snapshots/IrcMessageHandler/reward-empty.json +++ b/tests/snapshots/IrcMessageHandler/reward-empty.json @@ -20,7 +20,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -133,7 +133,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reward-known.json b/tests/snapshots/IrcMessageHandler/reward-known.json index f2f819493..f3da9ad94 100644 --- a/tests/snapshots/IrcMessageHandler/reward-known.json +++ b/tests/snapshots/IrcMessageHandler/reward-known.json @@ -20,7 +20,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -129,7 +129,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/reward-unknown.json b/tests/snapshots/IrcMessageHandler/reward-unknown.json index 751bfcc9a..c83f36d52 100644 --- a/tests/snapshots/IrcMessageHandler/reward-unknown.json +++ b/tests/snapshots/IrcMessageHandler/reward-unknown.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/rm-deleted.json b/tests/snapshots/IrcMessageHandler/rm-deleted.json index efad8c4aa..d4eca658f 100644 --- a/tests/snapshots/IrcMessageHandler/rm-deleted.json +++ b/tests/snapshots/IrcMessageHandler/rm-deleted.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/shared-chat-announcement.json b/tests/snapshots/IrcMessageHandler/shared-chat-announcement.json index 09ae47693..7d2c147db 100644 --- a/tests/snapshots/IrcMessageHandler/shared-chat-announcement.json +++ b/tests/snapshots/IrcMessageHandler/shared-chat-announcement.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -200,7 +200,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/shared-chat-emotes.json b/tests/snapshots/IrcMessageHandler/shared-chat-emotes.json index f25d83310..66e9d855e 100644 --- a/tests/snapshots/IrcMessageHandler/shared-chat-emotes.json +++ b/tests/snapshots/IrcMessageHandler/shared-chat-emotes.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/shared-chat-known.json b/tests/snapshots/IrcMessageHandler/shared-chat-known.json index f4759a9dc..19e17e06c 100644 --- a/tests/snapshots/IrcMessageHandler/shared-chat-known.json +++ b/tests/snapshots/IrcMessageHandler/shared-chat-known.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/shared-chat-same-channel.json b/tests/snapshots/IrcMessageHandler/shared-chat-same-channel.json index 060c5ae28..0de4bda49 100644 --- a/tests/snapshots/IrcMessageHandler/shared-chat-same-channel.json +++ b/tests/snapshots/IrcMessageHandler/shared-chat-same-channel.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/shared-chat-unknown.json b/tests/snapshots/IrcMessageHandler/shared-chat-unknown.json index f809ce278..dac0c45bb 100644 --- a/tests/snapshots/IrcMessageHandler/shared-chat-unknown.json +++ b/tests/snapshots/IrcMessageHandler/shared-chat-unknown.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/simple.json b/tests/snapshots/IrcMessageHandler/simple.json index 9e3fe3846..6720ebd39 100644 --- a/tests/snapshots/IrcMessageHandler/simple.json +++ b/tests/snapshots/IrcMessageHandler/simple.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-first-gift.json b/tests/snapshots/IrcMessageHandler/sub-first-gift.json index 289f81fd2..0735e9f11 100644 --- a/tests/snapshots/IrcMessageHandler/sub-first-gift.json +++ b/tests/snapshots/IrcMessageHandler/sub-first-gift.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-first-time.json b/tests/snapshots/IrcMessageHandler/sub-first-time.json index fdc4dd864..700b51b42 100644 --- a/tests/snapshots/IrcMessageHandler/sub-first-time.json +++ b/tests/snapshots/IrcMessageHandler/sub-first-time.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-gift.json b/tests/snapshots/IrcMessageHandler/sub-gift.json index 2718de4d3..cc5074808 100644 --- a/tests/snapshots/IrcMessageHandler/sub-gift.json +++ b/tests/snapshots/IrcMessageHandler/sub-gift.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-message.json b/tests/snapshots/IrcMessageHandler/sub-message.json index c08801fb7..3a7c15140 100644 --- a/tests/snapshots/IrcMessageHandler/sub-message.json +++ b/tests/snapshots/IrcMessageHandler/sub-message.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -201,7 +201,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-multi-month-anon-gift.json b/tests/snapshots/IrcMessageHandler/sub-multi-month-anon-gift.json index 674c3a05b..e4c73adf0 100644 --- a/tests/snapshots/IrcMessageHandler/sub-multi-month-anon-gift.json +++ b/tests/snapshots/IrcMessageHandler/sub-multi-month-anon-gift.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-multi-month-gift-count.json b/tests/snapshots/IrcMessageHandler/sub-multi-month-gift-count.json index 8367116ec..404e2f5dc 100644 --- a/tests/snapshots/IrcMessageHandler/sub-multi-month-gift-count.json +++ b/tests/snapshots/IrcMessageHandler/sub-multi-month-gift-count.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-multi-month-gift.json b/tests/snapshots/IrcMessageHandler/sub-multi-month-gift.json index 0a8208293..cc0a23950 100644 --- a/tests/snapshots/IrcMessageHandler/sub-multi-month-gift.json +++ b/tests/snapshots/IrcMessageHandler/sub-multi-month-gift.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-multi-month-resub.json b/tests/snapshots/IrcMessageHandler/sub-multi-month-resub.json index 89d2a6624..c0990fc0e 100644 --- a/tests/snapshots/IrcMessageHandler/sub-multi-month-resub.json +++ b/tests/snapshots/IrcMessageHandler/sub-multi-month-resub.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-multi-month.json b/tests/snapshots/IrcMessageHandler/sub-multi-month.json index e28156c80..6717960f8 100644 --- a/tests/snapshots/IrcMessageHandler/sub-multi-month.json +++ b/tests/snapshots/IrcMessageHandler/sub-multi-month.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/sub-no-message.json b/tests/snapshots/IrcMessageHandler/sub-no-message.json index 27e124e34..cb9e1890d 100644 --- a/tests/snapshots/IrcMessageHandler/sub-no-message.json +++ b/tests/snapshots/IrcMessageHandler/sub-no-message.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/timeout-stack-always.json b/tests/snapshots/IrcMessageHandler/timeout-stack-always.json index 5f7c985e1..898c898ed 100644 --- a/tests/snapshots/IrcMessageHandler/timeout-stack-always.json +++ b/tests/snapshots/IrcMessageHandler/timeout-stack-always.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -118,7 +118,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/timeout-stack-never.json b/tests/snapshots/IrcMessageHandler/timeout-stack-never.json index 1d482428a..88b55cfe5 100644 --- a/tests/snapshots/IrcMessageHandler/timeout-stack-never.json +++ b/tests/snapshots/IrcMessageHandler/timeout-stack-never.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -118,7 +118,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/timeout-stack-no-user.json b/tests/snapshots/IrcMessageHandler/timeout-stack-no-user.json index b3d1ba331..ba8aef23a 100644 --- a/tests/snapshots/IrcMessageHandler/timeout-stack-no-user.json +++ b/tests/snapshots/IrcMessageHandler/timeout-stack-no-user.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -116,7 +116,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", @@ -217,7 +217,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/timeout.json b/tests/snapshots/IrcMessageHandler/timeout.json index 52d623ac9..57477f1d6 100644 --- a/tests/snapshots/IrcMessageHandler/timeout.json +++ b/tests/snapshots/IrcMessageHandler/timeout.json @@ -18,7 +18,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/username-localized.json b/tests/snapshots/IrcMessageHandler/username-localized.json index 0f59bddc0..66281f024 100644 --- a/tests/snapshots/IrcMessageHandler/username-localized.json +++ b/tests/snapshots/IrcMessageHandler/username-localized.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/username-localized2.json b/tests/snapshots/IrcMessageHandler/username-localized2.json index 4f104225f..f199dea3d 100644 --- a/tests/snapshots/IrcMessageHandler/username-localized2.json +++ b/tests/snapshots/IrcMessageHandler/username-localized2.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/username.json b/tests/snapshots/IrcMessageHandler/username.json index 6053bec01..66949582d 100644 --- a/tests/snapshots/IrcMessageHandler/username.json +++ b/tests/snapshots/IrcMessageHandler/username.json @@ -35,7 +35,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement", diff --git a/tests/snapshots/IrcMessageHandler/vip.json b/tests/snapshots/IrcMessageHandler/vip.json index 27a28148a..cdc022db1 100644 --- a/tests/snapshots/IrcMessageHandler/vip.json +++ b/tests/snapshots/IrcMessageHandler/vip.json @@ -36,7 +36,7 @@ "type": "None", "value": "" }, - "style": "ChatMedium", + "style": "TimestampMedium", "tooltip": "", "trailingSpace": true, "type": "TextElement",