- No longer displays
\s
in the display name of chatters who have spaces in their display name.
- Update documentation.
- Update from
@twemoji/api
to the newest version of@discordapp/twemoji
which supports new emoji from Unicode15.0
.
- Update
Node.js
to the minimum version22.3.0
and using22.6.0
to build the project. - Update all dependencies.
- Update documentation.
- Use new pronouns API adding support for mixed pronouns.
- Update dependencies.
- Change parsing of emotes for StreamElements custom widget to make it more robust to any future changes.
- Update documentation.
- Picks a random color for someone who does not have a name color set in the StreamElements custom widget.
- Add implementation for a StreamElements custom widget.
- Move
dist
tostreamlabs
and restructure source code.
- Update documentation.
- Mitigate a bug in Streamlabs Chat Box where the message is HTML encoded whenever
<
and>
are contained within the message and emotes where placed incorrectly. Note that the mitigation will make the message readable again and place twitch emotes correctly, however ffz, bttv and 7tv emotes are not displayed.
- Emoji are now also affected by ffz modifiers.
- Add a new setting
showFrogEmotes
which if set tofalse
will hide known global frog emotes from bttv and 7tv. Settings are set in the global variablesettings
. - Add emote
overrides
. With the global variableoverrides
you can define emote replacement or removal.
The variableoverrides
is a map which maps from:ffz
,bttv
, and7tv
. The value of the map is another map which maps from emote id to another emote id or null for removal.
For example:This would replace the bttv emoteconst overrides = { ffz: {}, bttv: { "56e9f494fff3cc5c35e5287e": "5f6bcffcc2f3a70b1ae5342f", }, "7tv": { "60e5d610a69fc8d27f2737b7": null, }, };
56e9f494fff3cc5c35e5287e
(monkaS) with5f6bcffcc2f3a70b1ae5342f
(monkaS) and remove the 7tv emote60e5d610a69fc8d27f2737b7
(Stare).
Emotes that are removed are replaced with their text.
- Fixed alignment issues for emotes that are modified by ffz modifiers.
- Update documentation.
Initial version.