Correctly implement IrcAction and bugfixes
This release focusses mostly on fixing bugs, but it also contains a new analyzer implementation and a rewrite of the IrcAction, which did not work previously.
1.3.0 - 2020-03-03
Added
- Implemented base64analyzer, which matches if a found base64 string decodes to valid ascii (b535781)
- Implemented IrcAction - the previous implementation was not working (546b87f)
Changed
- SaveFileAction now got a parameter to set the file ending and a template (c3d75f7)
Fixed
- Analyzers now check if a passed action is a subclass of BasicAction, which prevents issues such as #175
- The DiscordAction now also uses the templating engine - it was forgotten in a previous update (#176)
- The SyslogAction now also uses the templating engine - it was forgotten in a previous update (54d3652)
- The SaveFileAction does now store each paste in a different file as it should be (#179)
- The IrcAction did not send the correct data. This was fixed and eventually the action was rewritten from scratch (see "Added")