1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-10 16:10:55 +00:00

4.0.0-rc5

* Added: Remove messages entirely using Blocked Terms.
* Fixed: Position of emotes in locally echoed chat messages containing emoji.

Added a `chat:receive-message` event for processing incoming chat messages before they're added to the buffer.
This commit is contained in:
SirStendec 2018-07-14 14:13:28 -04:00
parent 84589231c8
commit f15d3c1d4f
7 changed files with 190 additions and 52 deletions

View file

@ -3,6 +3,7 @@
<term-editor
:term="default_term"
:colored="item.colored"
:removable="item.removable"
:adding="true"
@save="new_term"
/>
@ -16,6 +17,7 @@
:key="term.id"
:term="term.v"
:colored="item.colored"
:removable="item.removable"
@remove="remove(term)"
@save="save(term, $event)"
/>
@ -39,7 +41,8 @@ export default {
default_term: {
v: '',
t: 'text',
c: ''
c: '',
remove: false
}
}
},