mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Add automatic streamer mode detection to macOS (#2376)
This commit is contained in:
parent
73e0653a7c
commit
127598db8a
|
@ -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 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 "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)
|
- 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 `/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)
|
- 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)
|
||||||
|
|
|
@ -45,7 +45,7 @@ bool isInStreamerMode()
|
||||||
return false;
|
return false;
|
||||||
case StreamerModeSetting::DetectObs:
|
case StreamerModeSetting::DetectObs:
|
||||||
|
|
||||||
#ifdef Q_OS_LINUX
|
#if defined(Q_OS_LINUX) || defined(Q_OS_MACOS)
|
||||||
|
|
||||||
static bool cache = false;
|
static bool cache = false;
|
||||||
static QDateTime time = QDateTime();
|
static QDateTime time = QDateTime();
|
||||||
|
|
|
@ -321,8 +321,8 @@ void GeneralPage::initLayout(GeneralPageView &layout)
|
||||||
layout.addTitle("Streamer Mode");
|
layout.addTitle("Streamer Mode");
|
||||||
layout.addDescription(
|
layout.addDescription(
|
||||||
"Chatterino can automatically change behavior if it detects that \"OBS "
|
"Chatterino can automatically change behavior if it detects that \"OBS "
|
||||||
"Studio\" is running (Automatic mode works only on Windows and "
|
"Studio\" is running.\nSelect which things you want to change while "
|
||||||
"Linux).\nSelect which things you want to change while streaming");
|
"streaming");
|
||||||
|
|
||||||
ComboBox *dankDropdown =
|
ComboBox *dankDropdown =
|
||||||
layout.addDropdown<std::underlying_type<StreamerModeSetting>::type>(
|
layout.addDropdown<std::underlying_type<StreamerModeSetting>::type>(
|
||||||
|
|
Loading…
Reference in a new issue