aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/keepnick.rs
Commit message (Collapse)AuthorAgeFilesLines
* Use Error & ErrorKind pair instead of simple enumsJokler2018-03-021-12/+17
| | | | | | | | | | | | Each plugin should define its own errors with a respective variant in the main ErrorKind of frippy. A new procedural macro was added to reduce the boilerplate required for new error system. It can be used by deriving "Error" and adding a name for the Error via the "error" attribute. So far non of the plugins except for Url and Factoids use their own errors yet.
* Run rustfmt and clippyJokler2018-02-241-1/+1
|
* Run latest rustfmtJokler2018-02-121-3/+4
|
* Replace is_allowed with a single-threaded execute functionJokler2018-02-121-21/+21
| | | | The old execute got renamed to exeute_threaded.
* Upgrade dependenciesJokler2018-02-101-6/+6
|
* Add evaluate function to pluginsJokler2018-02-101-0/+4
| | | | This allows plugins to be used in combination with each other.
* Remove needless allocation & fix typoJokler2017-12-111-1/+1
|
* Derive defaults where possibleJokler2017-12-111-1/+1
|
* Check who left before trying to get the nickJokler2017-12-071-3/+12
|
* Add KeepNick pluginJokler2017-12-061-0/+51