1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-07 23:00:54 +00:00
* Added: Add a `Reset` button to the headers of the badge visibility controls.
* Changed: Move some Twitch badges into a new `Twitch: Other` category.
* Changed: Do not display the badges in a category when the category is hidden to save space.
* Changed: Expose more data on emotes/emoji to tab completion.
* Fixed: Missing localization for certain items in Chat > Actions > Rooms.
* API Fixed: Ensure that emote set and badge IDs are cast to strings for consistent comparisons.
* API Fixed: Fix reference counting issues for emote sets when a set or badge is added from multiple providers.
* API Changed: Newly loaded emote sets are automatically scheduled for garbage collection if they have no users.
* API Changed: Added `removeAllSets(provider)` method to `Room`s and `Users`s.
* API Changed: Standardize `addSet(provider, set_id, data)` to allow passing set data in `Room` and `User`.
* API Changed: `addSet(...)` and `removeSet(...)` now return a boolean of whether or not the set was added or removed.
This commit is contained in:
SirStendec 2021-06-10 18:53:16 -04:00
parent a74faa95d3
commit 2a57ecb8a7
9 changed files with 188 additions and 59 deletions

View file

@ -472,6 +472,7 @@ export default {
if ( ! this.item.inline ) {
out.push({
title: 'New Line',
title_i18n: 'setting.new-line',
value: {
v: {type: 'new-line'}
}
@ -479,6 +480,7 @@ export default {
out.push({
title: 'Space (Small)',
title_i18n: 'setting.space-small',
value: {
v: {type: 'space-small'}
}
@ -486,6 +488,7 @@ export default {
out.push({
title: 'Space (Expanding)',
title_i18n: 'setting.space',
value: {
v: {type: 'space'}
}