2017-08-19 15:29:36 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-07-04 15:15:59 +02:00
|
|
|
#include <QColor>
|
2018-06-26 17:25:24 +02:00
|
|
|
#include <QString>
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2023-01-08 13:07:06 +01:00
|
|
|
#include <vector>
|
|
|
|
|
2017-08-19 15:29:36 +02:00
|
|
|
namespace chatterino {
|
|
|
|
|
2024-09-14 14:13:12 +02:00
|
|
|
[[maybe_unused]] inline const char *const ANONYMOUS_USERNAME = "justinfan64537";
|
2020-12-26 12:42:39 +01:00
|
|
|
|
2024-09-14 14:13:12 +02:00
|
|
|
inline constexpr int TWITCH_MESSAGE_LIMIT = 500;
|
2022-12-03 12:10:11 +01:00
|
|
|
|
2017-08-19 15:29:36 +02:00
|
|
|
inline QByteArray getDefaultClientID()
|
|
|
|
{
|
2024-09-14 14:13:12 +02:00
|
|
|
return QByteArrayLiteral("7ue61iz46fz11y3cugd0l3tawb4taal");
|
2017-08-19 15:29:36 +02:00
|
|
|
}
|
|
|
|
|
2024-09-14 14:13:12 +02:00
|
|
|
extern const std::vector<QColor> TWITCH_USERNAME_COLORS;
|
2020-07-04 15:15:59 +02:00
|
|
|
|
2024-09-14 14:13:12 +02:00
|
|
|
extern const QStringList TWITCH_DEFAULT_COMMANDS;
|
2021-12-26 14:21:52 +01:00
|
|
|
|
2024-09-14 14:13:12 +02:00
|
|
|
extern const QStringList TWITCH_WHISPER_COMMANDS;
|
2021-12-26 14:21:52 +01:00
|
|
|
|
2017-08-19 15:29:36 +02:00
|
|
|
} // namespace chatterino
|