Add automatic streamer mode detection to macOS (#2376)

This commit is contained in:
fanway 2021-01-30 15:11:08 +03:00 committed by GitHub
parent 73e0653a7c
commit 127598db8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -4,7 +4,7 @@
- Major: Added clip creation support. You can create clips with `/clip` command, `Alt+X` keybind or `Create a clip` option in split header's context menu. This requires a new authentication scope so re-authentication will be required to use it. (#2271, #2377)
- Major: Added "Channel Filters". See https://wiki.chatterino.com/Filters/ for how they work or how to configure them. (#1748, #2083, #2090, #2200)
- Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001, #2316, #2342)
- Major: Added Streamer Mode configuration (under `Settings -> General`), where you can select which features of Chatterino should behave differently when you are in Streamer Mode. (#2001, #2316, #2342, #2376)
- Major: Color mentions to match the mentioned users. You can disable this by unchecking "Color @usernames" under `Settings -> General -> Advanced (misc.)`. (#1963, #2284)
- Minor: Added `/chatters` command showing chatter count. (#2344)
- Minor: Added a button to the split context menu to open the moderation view for a channel when the account selected has moderator permissions. (#2321)

View file

@ -45,7 +45,7 @@ bool isInStreamerMode()
return false;
case StreamerModeSetting::DetectObs:
#ifdef Q_OS_LINUX
#if defined(Q_OS_LINUX) || defined(Q_OS_MACOS)
static bool cache = false;
static QDateTime time = QDateTime();

View file

@ -321,8 +321,8 @@ void GeneralPage::initLayout(GeneralPageView &layout)
layout.addTitle("Streamer Mode");
layout.addDescription(
"Chatterino can automatically change behavior if it detects that \"OBS "
"Studio\" is running (Automatic mode works only on Windows and "
"Linux).\nSelect which things you want to change while streaming");
"Studio\" is running.\nSelect which things you want to change while "
"streaming");
ComboBox *dankDropdown =
layout.addDropdown<std::underlying_type<StreamerModeSetting>::type>(