mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Compare commits
No commits in common. "3ecedd705a6b0cf1560db2909cbc7810230341eb" and "8ead2b9b7571de61763c67664a8ae68b71aba9fa" have entirely different histories.
3ecedd705a
...
8ead2b9b75
|
@ -56,7 +56,6 @@
|
||||||
- Bugfix: Fixed event emotes not showing up in autocomplete and popups. (#5239, #5580, #5582, #5632)
|
- Bugfix: Fixed event emotes not showing up in autocomplete and popups. (#5239, #5580, #5582, #5632)
|
||||||
- Bugfix: Fixed tab visibility being controllable in the emote popup. (#5530)
|
- Bugfix: Fixed tab visibility being controllable in the emote popup. (#5530)
|
||||||
- Bugfix: Fixed account switch not being saved if no other settings were changed. (#5558)
|
- Bugfix: Fixed account switch not being saved if no other settings were changed. (#5558)
|
||||||
- Bugfix: Fixed a crash that could occur when handling the quick switcher popup really quickly. (#5687)
|
|
||||||
- Bugfix: Fixed 7TV badges being inadvertently animated. (#5674)
|
- Bugfix: Fixed 7TV badges being inadvertently animated. (#5674)
|
||||||
- Bugfix: Fixed some tooltips not being readable. (#5578)
|
- Bugfix: Fixed some tooltips not being readable. (#5578)
|
||||||
- Bugfix: Fixed log files being locked longer than needed. (#5592)
|
- Bugfix: Fixed log files being locked longer than needed. (#5592)
|
||||||
|
@ -120,7 +119,6 @@
|
||||||
- Dev: Refactored IRC message building. (#5663)
|
- Dev: Refactored IRC message building. (#5663)
|
||||||
- Dev: Fixed some compiler warnings. (#5672)
|
- Dev: Fixed some compiler warnings. (#5672)
|
||||||
- Dev: Unified parsing of historic and live IRC messages. (#5678)
|
- Dev: Unified parsing of historic and live IRC messages. (#5678)
|
||||||
- Dev: 7TV's `entitlement.reset` is now explicitly ignored. (#5685)
|
|
||||||
|
|
||||||
## 2.5.1
|
## 2.5.1
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,8 @@ namespace linkparser {
|
||||||
|
|
||||||
struct SystemMessageTag {
|
struct SystemMessageTag {
|
||||||
};
|
};
|
||||||
|
struct RaidEntryMessageTag {
|
||||||
|
};
|
||||||
struct TimeoutMessageTag {
|
struct TimeoutMessageTag {
|
||||||
};
|
};
|
||||||
struct LiveUpdatesUpdateEmoteMessageTag {
|
struct LiveUpdatesUpdateEmoteMessageTag {
|
||||||
|
@ -67,6 +69,7 @@ struct ImageUploaderResultTag {
|
||||||
|
|
||||||
// NOLINTBEGIN(readability-identifier-naming)
|
// NOLINTBEGIN(readability-identifier-naming)
|
||||||
const SystemMessageTag systemMessage{};
|
const SystemMessageTag systemMessage{};
|
||||||
|
const RaidEntryMessageTag raidEntryMessage{};
|
||||||
const TimeoutMessageTag timeoutMessage{};
|
const TimeoutMessageTag timeoutMessage{};
|
||||||
const LiveUpdatesUpdateEmoteMessageTag liveUpdatesUpdateEmoteMessage{};
|
const LiveUpdatesUpdateEmoteMessageTag liveUpdatesUpdateEmoteMessage{};
|
||||||
const LiveUpdatesRemoveEmoteMessageTag liveUpdatesRemoveEmoteMessage{};
|
const LiveUpdatesRemoveEmoteMessageTag liveUpdatesRemoveEmoteMessage{};
|
||||||
|
|
|
@ -233,10 +233,6 @@ void SeventvEventAPI::handleDispatch(const Dispatch &dispatch)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case SubscriptionType::ResetEntitlement: {
|
|
||||||
// unhandled (not clear what we'd do here yet)
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default: {
|
default: {
|
||||||
qCDebug(chatterinoSeventvEventAPI)
|
qCDebug(chatterinoSeventvEventAPI)
|
||||||
<< "Unknown subscription type:"
|
<< "Unknown subscription type:"
|
||||||
|
|
|
@ -27,7 +27,6 @@ enum class SubscriptionType {
|
||||||
CreateEntitlement,
|
CreateEntitlement,
|
||||||
UpdateEntitlement,
|
UpdateEntitlement,
|
||||||
DeleteEntitlement,
|
DeleteEntitlement,
|
||||||
ResetEntitlement,
|
|
||||||
|
|
||||||
INVALID,
|
INVALID,
|
||||||
};
|
};
|
||||||
|
@ -120,8 +119,6 @@ constexpr magic_enum::customize::customize_t magic_enum::customize::enum_name<
|
||||||
return "entitlement.update";
|
return "entitlement.update";
|
||||||
case SubscriptionType::DeleteEntitlement:
|
case SubscriptionType::DeleteEntitlement:
|
||||||
return "entitlement.delete";
|
return "entitlement.delete";
|
||||||
case SubscriptionType::ResetEntitlement:
|
|
||||||
return "entitlement.reset";
|
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return default_tag;
|
return default_tag;
|
||||||
|
|
|
@ -141,7 +141,7 @@ void QuickSwitcherPopup::updateSuggestions(const QString &text)
|
||||||
* Timeout interval 0 means the call will be delayed until all window events
|
* Timeout interval 0 means the call will be delayed until all window events
|
||||||
* have been processed (cf. https://doc.qt.io/qt-5/qtimer.html#interval-prop).
|
* have been processed (cf. https://doc.qt.io/qt-5/qtimer.html#interval-prop).
|
||||||
*/
|
*/
|
||||||
QTimer::singleShot(0, this, [this] {
|
QTimer::singleShot(0, [this] {
|
||||||
this->adjustSize();
|
this->adjustSize();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue