mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
There's now a new (yet another, sigh) section in Settings -> General, which lets you set streamer mode to 'enable/disable/detect obs' and there are also separate settings for each of the things that streamer mode covers. I just have to add ping sounds and PR is ready to be merged :) * Show "Streamer Mode" image as link thumbnails if applicable * Moved hideViewerCountAndDuration to streamerMode settings Set it to false by default (just how it used to be under /misc settings, also reworked live tooltip to be a bit prettier and say "<Streamer Mode>" in gray instead of "Live with <hidden> for <hidden> viewers"
10 lines
206 B
C++
10 lines
206 B
C++
#pragma once
|
|
|
|
namespace chatterino {
|
|
|
|
enum StreamerModeSetting { Disabled = 0, Enabled = 1, DetectObs = 2 };
|
|
|
|
const QStringList &broadcastingBinaries();
|
|
bool isInStreamerMode();
|
|
|
|
} // namespace chatterino
|