mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Compare commits
1 commit
aec648c3bc
...
3409a3ae37
Author | SHA1 | Date | |
---|---|---|---|
3409a3ae37 |
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
- Major: Add option to show pronouns in user card. (#5442, #5583)
|
- Major: Add option to show pronouns in user card. (#5442, #5583)
|
||||||
- Major: Release plugins alpha. (#5288)
|
- Major: Release plugins alpha. (#5288)
|
||||||
- Major: Improve high-DPI support on Windows. (#4868, #5391, #5664)
|
- Major: Improve high-DPI support on Windows. (#4868, #5391)
|
||||||
- Major: Added transparent overlay window (default keybind: <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>N</kbd>). (#4746, #5643, #5659)
|
- Major: Added transparent overlay window (default keybind: <kbd>CTRL</kbd> + <kbd>ALT</kbd> + <kbd>N</kbd>). (#4746, #5643, #5659)
|
||||||
- Minor: Removed the Ctrl+Shift+L hotkey for toggling the "live only" tab visibility state. (#5530)
|
- Minor: Removed the Ctrl+Shift+L hotkey for toggling the "live only" tab visibility state. (#5530)
|
||||||
- Minor: Add support for Shared Chat messages. Shared chat messages can be filtered with the `flags.shared` filter variable, or with search using `is:shared`. Some messages like subscriptions are filtered on purpose to avoid confusion for the broadcaster. If you have both channels participating in Shared Chat open, only one of the message triggering your highlight will trigger. (#5606, #5625, #5661)
|
- Minor: Add support for Shared Chat messages. Shared chat messages can be filtered with the `flags.shared` filter variable, or with search using `is:shared`. Some messages like subscriptions are filtered on purpose to avoid confusion for the broadcaster. If you have both channels participating in Shared Chat open, only one of the message triggering your highlight will trigger. (#5606, #5625, #5661)
|
||||||
|
|
|
@ -53,12 +53,8 @@ public:
|
||||||
std::optional<QString> getOrPopulateChannelCache(
|
std::optional<QString> getOrPopulateChannelCache(
|
||||||
const QString &channelId) override
|
const QString &channelId) override
|
||||||
{
|
{
|
||||||
if (channelId == "11148817")
|
assert(false &&
|
||||||
return "pajlada";
|
"unimplemented getOrPopulateChannelCache in mock irc server");
|
||||||
if (channelId == "141981764")
|
|
||||||
return "twitchdev";
|
|
||||||
if (channelId == "1025594235")
|
|
||||||
return "shared_chat_test_01";
|
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2 KiB |
|
@ -876,14 +876,6 @@ bool BaseWindow::nativeEvent(const QByteArray &eventType, void *message,
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case WM_DPICHANGED: {
|
|
||||||
// wait for Qt to process this message
|
|
||||||
postToThread([] {
|
|
||||||
getApp()->getWindows()->invalidateChannelViewBuffers();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case WM_NCLBUTTONDOWN:
|
case WM_NCLBUTTONDOWN:
|
||||||
case WM_NCLBUTTONUP: {
|
case WM_NCLBUTTONUP: {
|
||||||
// WM_NCLBUTTON{DOWN, UP} gets called when the left mouse button
|
// WM_NCLBUTTON{DOWN, UP} gets called when the left mouse button
|
||||||
|
|
|
@ -64,24 +64,6 @@
|
||||||
"trailingSpace": true,
|
"trailingSpace": true,
|
||||||
"type": "TwitchModerationElement"
|
"type": "TwitchModerationElement"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"emote": {
|
|
||||||
"homePage": "https://link.twitch.tv/SharedChatViewer",
|
|
||||||
"images": {
|
|
||||||
"1x": ""
|
|
||||||
},
|
|
||||||
"name": "SharedChat_shared_chat_test_01",
|
|
||||||
"tooltip": "Shared Message from shared_chat_test_01"
|
|
||||||
},
|
|
||||||
"flags": "BadgeSharedChannel",
|
|
||||||
"link": {
|
|
||||||
"type": "UserInfo",
|
|
||||||
"value": "shared_chat_test_01"
|
|
||||||
},
|
|
||||||
"tooltip": "Shared Message from shared_chat_test_01",
|
|
||||||
"trailingSpace": true,
|
|
||||||
"type": "BadgeElement"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"emote": {
|
"emote": {
|
||||||
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
||||||
|
|
|
@ -64,24 +64,6 @@
|
||||||
"trailingSpace": true,
|
"trailingSpace": true,
|
||||||
"type": "TwitchModerationElement"
|
"type": "TwitchModerationElement"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"emote": {
|
|
||||||
"homePage": "https://link.twitch.tv/SharedChatViewer",
|
|
||||||
"images": {
|
|
||||||
"1x": ""
|
|
||||||
},
|
|
||||||
"name": "SharedChat_twitchdev",
|
|
||||||
"tooltip": "Shared Message from twitchdev"
|
|
||||||
},
|
|
||||||
"flags": "BadgeSharedChannel",
|
|
||||||
"link": {
|
|
||||||
"type": "UserInfo",
|
|
||||||
"value": "twitchdev"
|
|
||||||
},
|
|
||||||
"tooltip": "Shared Message from twitchdev",
|
|
||||||
"trailingSpace": true,
|
|
||||||
"type": "BadgeElement"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"color": "#ffff0000",
|
"color": "#ffff0000",
|
||||||
"flags": "Username",
|
"flags": "Username",
|
||||||
|
|
|
@ -64,24 +64,6 @@
|
||||||
"trailingSpace": true,
|
"trailingSpace": true,
|
||||||
"type": "TwitchModerationElement"
|
"type": "TwitchModerationElement"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"emote": {
|
|
||||||
"homePage": "https://link.twitch.tv/SharedChatViewer",
|
|
||||||
"images": {
|
|
||||||
"1x": ""
|
|
||||||
},
|
|
||||||
"name": "SharedChat_twitchdev",
|
|
||||||
"tooltip": "Shared Message from twitchdev"
|
|
||||||
},
|
|
||||||
"flags": "BadgeSharedChannel",
|
|
||||||
"link": {
|
|
||||||
"type": "UserInfo",
|
|
||||||
"value": "twitchdev"
|
|
||||||
},
|
|
||||||
"tooltip": "Shared Message from twitchdev",
|
|
||||||
"trailingSpace": true,
|
|
||||||
"type": "BadgeElement"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"emote": {
|
"emote": {
|
||||||
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
||||||
|
|
|
@ -64,24 +64,6 @@
|
||||||
"trailingSpace": true,
|
"trailingSpace": true,
|
||||||
"type": "TwitchModerationElement"
|
"type": "TwitchModerationElement"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"emote": {
|
|
||||||
"homePage": "https://link.twitch.tv/SharedChatViewer",
|
|
||||||
"images": {
|
|
||||||
"1x": ""
|
|
||||||
},
|
|
||||||
"name": "SharedChat_shared_chat_test_01",
|
|
||||||
"tooltip": "Shared Message from shared_chat_test_01"
|
|
||||||
},
|
|
||||||
"flags": "BadgeSharedChannel",
|
|
||||||
"link": {
|
|
||||||
"type": "UserInfo",
|
|
||||||
"value": "shared_chat_test_01"
|
|
||||||
},
|
|
||||||
"tooltip": "Shared Message from shared_chat_test_01",
|
|
||||||
"trailingSpace": true,
|
|
||||||
"type": "BadgeElement"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"emote": {
|
"emote": {
|
||||||
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
"homePage": "https://www.twitch.tv/jobs?ref=chat_badge",
|
||||||
|
|
Loading…
Reference in a new issue