1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-09-17 02:16:54 +00:00

4.0.0-rc3. Display a warning for complex or invalid filtering terms, using the safe-regex NPM module. Add a separate Regex (Word) filtering mode. Fix channel hosting control. Fix hide extensions. Add a fix for bad local echo emote indices for chat. Position the color picker above rather than below for filter terms. Apply a dark theme to the color picker. Rewrite the filter terms editor to use the term editor component for adding a new term.

This commit is contained in:
SirStendec 2018-06-27 14:13:59 -04:00
parent 2a790ad7cd
commit 038270d232
23 changed files with 669 additions and 423 deletions

View file

@ -305,10 +305,10 @@ export const CustomHighlights = {
out.push({
type: 'highlight',
text: match[1]
text: match[0]
});
idx = nix + match[1].length;
idx = nix + match[0].length;
}
if ( idx < text.length )
@ -376,10 +376,10 @@ export const BlockedTerms = {
out.push({
type: 'blocked',
text: match[1]
text: match[0]
});
idx = nix + match[1].length;
idx = nix + match[0].length;
}
if ( idx < text.length )