mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-07-25 03:58:30 +00:00
4.20.32
This release uses an entirely new emoji data source behind the scenes, and there may be bugs with emoji. Different names for certain emoji are also likely. Please report any issues. * Added: Support for Blob and OpenMoji emoji sets. * Changed: Update emoji to support emoji 13. * Changed: Allow searching for emoji by any of their short codes in the emote menu. * Removed: Support for the EmojiOne emoji set. * Fixed: Hover styles for certain elements. * Fixed: Sort emoji categories. * Fixed: Typo in the description of a setting. * Fixed: Do not include the same emoji multiple times in tab completion. * Fixed: Issue viewing chat messages with replies enabled when not logged in. (Closes #889) * Fixed: Twitch Style replies for highlighted messages, resubscription messages, etc. * Fixed: Badge tool-tips not appearing correctly in Firefox.
This commit is contained in:
parent
e7228d2795
commit
fd2977f899
17 changed files with 282 additions and 136 deletions
|
@ -8,6 +8,7 @@ import {sanitize, createElement} from 'utilities/dom';
|
|||
import {has, split_chars} from 'utilities/object';
|
||||
|
||||
import {TWITCH_EMOTE_BASE, EmoteTypes, REPLACEMENT_BASE, REPLACEMENTS} from 'utilities/constants';
|
||||
import {CATEGORIES} from './emoji';
|
||||
|
||||
|
||||
const EMOTE_CLASS = 'chat-image chat-line__message--emote',
|
||||
|
@ -1227,7 +1228,7 @@ export const AddonEmotes = {
|
|||
plain_name = true;
|
||||
name = `:${emoji.names[0]}:${vcode ? `:${vcode.names[0]}:` : ''}`;
|
||||
|
||||
const category = emoji.category ? this.i18n.t(`emoji.category.${emoji.category.toSnakeCase()}`, emoji.category) : null;
|
||||
const category = emoji.category ? this.i18n.t(`emoji.category.${emoji.category.toSnakeCase()}`, CATEGORIES[emoji.category] || emoji.category) : null;
|
||||
source = this.i18n.t('tooltip.emoji', 'Emoji - {category}', {category});
|
||||
|
||||
} else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue