BREAKING CHANGE
Regular expression handling has been updated to be more flexible.
When a filter is a regular expression, we now test the whole message, not each word as it did previously.
That means that all your regex filters will break. To have them work exactly as before, replace:
/pog/
with
/.*pog.*/i
NEW FEATURE
There's a new configuration in the form for "allow words".
Messages containing any of the configured words will be allowed, overriding any other filters.
This is useful, for example, to always display messages @'ing you.