From b8f051d496f9ea2e21dd19dacc932a3b79513f79 Mon Sep 17 00:00:00 2001 From: iProdigy Date: Fri, 15 Dec 2023 15:33:24 -0800 Subject: [PATCH 1/2] fix: show user message on watch streak notice --- src/providers/twitch/IrcMessageHandler.cpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/providers/twitch/IrcMessageHandler.cpp b/src/providers/twitch/IrcMessageHandler.cpp index 183a483ec50..373e4f72c97 100644 --- a/src/providers/twitch/IrcMessageHandler.cpp +++ b/src/providers/twitch/IrcMessageHandler.cpp @@ -44,12 +44,13 @@ using namespace chatterino; // Message types below are the ones that might contain special user's message on USERNOTICE const QSet SPECIAL_MESSAGE_TYPES{ - "sub", // - "subgift", // - "resub", // resub messages - "bitsbadgetier", // bits badge upgrade - "ritual", // new viewer ritual - "announcement", // new mod announcement thing + "sub", // + "subgift", // + "resub", // resub messages + "bitsbadgetier", // bits badge upgrade + "ritual", // new viewer ritual + "announcement", // new mod announcement thing + "viewermilestone", // watch streak, but other categories possible in future }; MessagePtr generateBannedMessage(bool confirmedBan) From 7094009987ff9d741fc440e5f04a8db68d5f8100 Mon Sep 17 00:00:00 2001 From: iProdigy <8106344+iProdigy@users.noreply.github.com> Date: Fri, 15 Dec 2023 15:40:36 -0800 Subject: [PATCH 2/2] chore: update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd00604d3bd..820ffe0e7df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -52,6 +52,7 @@ - Bugfix: Fixed support for Windows 11 Snap layouts. (#4994) - Bugfix: Fixed some windows appearing between screens. (#4797) - Bugfix: Fixed a bug on Wayland where tooltips would spawn as separate windows instead of behaving like tooltips. (#4998) +- Bugfix: Show user text input within watch streak notices. (#5029) - Dev: Run miniaudio in a separate thread, and simplify it to not manage the device ourselves. There's a chance the simplification is a bad idea. (#4978) - Dev: Change clang-format from v14 to v16. (#4929) - Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791)