Chatters from recent-messages are now tab-completable (#5116)

This commit is contained in:
nerix
2024-01-21 11:57:14 +01:00
committed by GitHub
parent 84a61fdad2
commit 075a7c5af0
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -25,6 +25,7 @@
- Minor: Improved Streamlink documentation in the settings dialog. (#5076) - Minor: Improved Streamlink documentation in the settings dialog. (#5076)
- Minor: Normalized the input padding between light & dark themes. (#5095) - Minor: Normalized the input padding between light & dark themes. (#5095)
- Minor: Add `--activate <channel>` (or `-a`) command line option to activate or add a Twitch channel. (#5111) - Minor: Add `--activate <channel>` (or `-a`) command line option to activate or add a Twitch channel. (#5111)
- Minor: Chatters from recent-messages are now added to autocompletion. (#5116)
- Bugfix: Fixed an issue where certain emojis did not send to Twitch chat correctly. (#4840) - Bugfix: Fixed an issue where certain emojis did not send to Twitch chat correctly. (#4840)
- Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848) - Bugfix: Fixed capitalized channel names in log inclusion list not being logged. (#4848)
- Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834) - Bugfix: Trimmed custom streamlink paths on all platforms making sure you don't accidentally add spaces at the beginning or end of its path. (#4834)
+2
View File
@@ -1214,6 +1214,8 @@ void TwitchChannel::loadRecentMessages()
{ {
msgs.push_back(msg); msgs.push_back(msg);
} }
tc->addRecentChatter(msg->displayName);
} }
getApp()->twitch->mentionsChannel->fillInMissingMessages(msgs); getApp()->twitch->mentionsChannel->fillInMissingMessages(msgs);