mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-10 16:10:55 +00:00
4.41.0
I'm almost finished implementing a replacement for emote cards, but they aren't quite ready yet. Please wait just a bit longer. * Added: Support for modifier emote effects, as well as settings to disable them. * Changed: Update the chat types enum to match changes to Twitch's internals. * Changed: Implement a new data structure for more efficiently storing bulk user to emote set mappings. * Changed: Implement support for loading data from staging. * Experiments: Push the new chat line rendering experiment to 20%. Let's see if it works properly.
This commit is contained in:
parent
8e48021c43
commit
e433aa3340
17 changed files with 575 additions and 32 deletions
|
@ -104,9 +104,6 @@ const CHAT_TYPES = make_enum(
|
|||
'Connected',
|
||||
'Disconnected',
|
||||
'Reconnect',
|
||||
'Hosting',
|
||||
'Unhost',
|
||||
'Hosted',
|
||||
'Subscription',
|
||||
'Resubscription',
|
||||
'GiftPaidUpgrade',
|
||||
|
@ -121,7 +118,6 @@ const CHAT_TYPES = make_enum(
|
|||
'RoomState',
|
||||
'Raid',
|
||||
'Unraid',
|
||||
'Ritual',
|
||||
'Notice',
|
||||
'Info',
|
||||
'BadgesUpdated',
|
||||
|
@ -139,10 +135,16 @@ const CHAT_TYPES = make_enum(
|
|||
'InlinePrivateCallout',
|
||||
'ChannelPointsReward',
|
||||
'CommunityChallengeContribution',
|
||||
'CelebrationPurchase',
|
||||
'LiveMessageSeparator',
|
||||
'RestrictedLowTrustUserMessage',
|
||||
'CommunityIntroduction'
|
||||
'CommunityIntroduction',
|
||||
'Shoutout',
|
||||
'AnnouncementMessage',
|
||||
'MidnightSquid',
|
||||
'CharityDonation',
|
||||
'MessageIdUpdate',
|
||||
'PinnedChat',
|
||||
'ViewerMilestone'
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue