fix: change viewer list to chatter list (#4732)

* fix: change viewer list to chatter list

* fix: enter changelog entry
This commit is contained in:
SputNikPlop 2023-07-29 03:47:24 -07:00 committed by GitHub
parent 33fa3e0a97
commit 7079729591
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View file

@ -2,6 +2,7 @@
## Unversioned
- Minor: Changed viewer list to chatter list to more match Twitch's terminology. (#4732)
- Minor: Nicknames are now taken into consideration when searching for messages. (#4663)
- Minor: Add an icon showing when streamer mode is enabled (#4410, #4690)
- Minor: Added `/shoutout <username>` commands to shoutout specified user. (#4638)

View file

@ -114,7 +114,7 @@ inline const std::map<HotkeyCategory, ActionDefinitionMap> actionNames{
ActionDefinition{"Open stream in custom player"}},
{"openInStreamlink", ActionDefinition{"Open stream in streamlink"}},
{"openModView", ActionDefinition{"Open mod view in browser"}},
{"openViewerList", ActionDefinition{"Open viewer list"}},
{"openViewerList", ActionDefinition{"Open chatter list"}},
{"pickFilters", ActionDefinition{"Pick filters"}},
{"reconnect", ActionDefinition{"Reconnect to chat"}},
{"reloadEmotes",

View file

@ -319,7 +319,7 @@ void SplitHeader::initializeLayout()
}
});
}),
// viewer list
// chatter list
this->viewersButton_ = makeWidget<Button>([&](auto w) {
QObject::connect(w, &Button::leftClicked, this, [this]() {
this->split_->showViewerList();
@ -516,7 +516,7 @@ std::unique_ptr<QMenu> SplitHeader::createMainMenu()
if (twitchChannel)
{
moreMenu->addAction(
"Show viewer list", this->split_, &Split::showViewerList,
"Show chatter list", this->split_, &Split::showViewerList,
h->getDisplaySequence(HotkeyCategory::Split, "openViewerList"));
moreMenu->addAction("Subscribe", this->split_, &Split::openSubPage);