diff --git a/CHANGELOG.md b/CHANGELOG.md index cba28c29..415c12f2 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 4dfe07a0..5243c15e 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 b75c90b0..b733551d 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 dcd23950..efed3c35 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 3db21f37..32fd96e6 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 2cd32fd8..244857b1 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 8eed979d..8b21e2f1 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 e2b7a343..e53c2e06 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 59022479..e13ab941 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 e07652f1..16b77581 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 0200dcd3..0f3afc9c 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 8665e2bb..572ed5cd 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 270b2dfd..929ffcd5 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 3dbaac20..cdd6b82f 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 b2516a7e..bbdf82f6 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 35b36498..9e203d74 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 e935e0d2..465a1ac4 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 13cb4be6..2b77e363 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 5df237f3..1eaaf158 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 55519bd3..ce785951 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 efa8c200..5cd13959 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 d9a5a5ef..f0dc8cfd 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 1f378743..8a34773c 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 a42fe896..a988ee20 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 df97ec10..57ec2ae2 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 0613776d..af2f6952 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 5e629fc2..1edfee1b 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 b6637995..be5e7544 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 6de2eab3..95f7a407 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 47c1d3ab..3c015e7d 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 264ce840..de7467c3 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 99b50079..b1245007 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 4beae419..e815c236 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 c96afe0f..de5d14e6 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 0b2f0ca7..50580949 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 b401f239..21291f4f 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 ae0086f9..b4025022 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 ec7de7d0..4782c45d 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 4704dcc2..967474a1 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 eb05d9e8..b821d067 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 16513546..3c0a7255 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 e15ebd11..94a99976 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 452bfb96..d5a966ac 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 af8d6ad8..f8fe024d 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 05556df8..bbf9aa6d 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 4816962c..3944b2b1 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 40dc4c76..9cc9534a 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 7215ac46..b7c34b5e 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 f18fd40f..b08ecc89 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 a3e448f5..a9e584ca 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 8d9cefc4..d974879a 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 a4ffee10..72cb302f 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 8a770b02..ffef87f4 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 d80896fd..075138c1 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 ef1ecc5d..6de50041 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 ca2f6232..6272b5c2 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 81b185f3..d7a5a7d4 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 3d18b33f..e8bf82d5 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 354305d7..4d0ac581 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 9d7f7bf3..89b3ee34 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 08bea7f8..28a96a92 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 5f8b1602..ab652dbf 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 f130c2b6..639648d9 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 1b88636c..fcf516f9 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 1791d3d1..fedcc7ae 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 aed8056c..a219dd15 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 6b1ddf86..528a0bdc 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 8a00f703..f3ec1802 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 977a835f..9a67310b 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 1a225968..52bcf446 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 fdbfbe02..2d367f02 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 c7603f4d..04f199d4 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 a74ae46c..5dd1a350 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 ee853d97..a3649ea9 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 f248ace5..4fbc8c85 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 d2fc326e..29622701 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 5165de2d..ea64e011 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 c9a11ac4..95d373af 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 375013fc..ac4ee6ac 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 2ecf8dee..acb2188f 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 cbd0ed24..7035ab71 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 a9683fa5..9f6c7b59 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 011ca439..8d1d03c4 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 ceff1863..5cb520ce 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 64bcbf71..0058d45b 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 48124fdb..ce387835 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 82b6b5b6..51c162f2 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 dab2c3b8..9121cb5b 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 7cce268d..f40d884f 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 e8cf3939..d4e792dc 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 1311151e..949f3c73 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 56dfc135..3b48c9bc 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 97f1607c..f5d4c4ad 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 1b4a3cec..25dd9355 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 85a23091..5f4937ad 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 b6696d45..8b1e0f2f 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 a0bcffc9..96362cfc 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 2ca8fc01..4d4884ef 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 23040c0f..a13e45cf 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 edc428af..01833b77 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 1d195952..4f365b1c 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 e189d67a..96eb91dd 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 abd6b4dd..3981d164 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 3be523cd..6efcc8ce 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 97effa63..fecb35a4 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 60f70368..db1697d5 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 49dea1a5..6a822435 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 663528f4..a2fa64eb 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 9a643b38..53ca9601 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 013f454e..89a99eee 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 cb425163..d32e8722 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 3ee94491..41493ad3 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 4fe8b75d..598f2d12 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 61aaff99..6cbd3025 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 0d15f8dd..8cfff05a 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 f85d7780..5caf6599 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 6f32d4c3..536bfe88 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 907e759c..4a2e96da 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 ede29497..b2a54ecd 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 6088f4d0..ff0ba817 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 f2f81949..f3da9ad9 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 751bfcc9..c83f36d5 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 efad8c4a..d4eca658 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 09ae4769..7d2c147d 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 f25d8331..66e9d855 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 f4759a9d..19e17e06 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 060c5ae2..0de4bda4 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 f809ce27..dac0c45b 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 9e3fe384..6720ebd3 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 289f81fd..0735e9f1 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 fdc4dd86..700b51b4 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 2718de4d..cc507480 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 c08801fb..3a7c1514 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 674c3a05..e4c73adf 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 8367116e..404e2f5d 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 0a820829..cc0a2395 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 89d2a662..c0990fc0 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 e28156c8..6717960f 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 27e124e3..cb9e1890 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 5f7c985e..898c898e 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 1d482428..88b55cfe 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 b3d1ba33..ba8aef23 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 52d623ac..57477f1d 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 0f59bddc..66281f02 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 4f104225..f199dea3 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 6053bec0..66949582 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 27a28148..cdc022db 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",