summaryrefslogtreecommitdiffstats
path: root/src/plugins/tell/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Replace every Mutex with RwLockJokler2018-03-211-19/+10
|
* Use longer variable names in tell for readabilityJokler2018-03-191-6/+6
|
* Fix empty receivers getting accepted by TellJokler2018-03-191-5/+12
|
* Use a prefix from the config instead of the nickJokler2018-03-191-15/+9
|
* Fix continue in tell by removing the inner loopJokler2018-03-161-10/+13
|
* Improve multitell functionality and responsesJokler2018-03-151-16/+25
|
* Let tell accept multiple comma-seperated receiversJokler2018-03-121-35/+30
|
* Check NICK commands in the tell pluginJokler2018-03-091-0/+1
|
* Check for outstanding tells when a userlist is receivedJokler2018-03-051-18/+69
|
* Fix formattingJokler2018-03-051-6/+4
|
* Add Tell specific errors and improve error logging for commandsJokler2018-03-051-36/+78
|
* Correct error message on tellJokler2018-03-031-1/+1
|
* Make tells caase insensitive and only check JOINsJokler2018-03-031-18/+24
|
* Use Error & ErrorKind pair instead of simple enumsJokler2018-03-021-10/+22
| | | | | | | | | | | | 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.
* Add accidentally removed errorsJokler2018-03-021-2/+2
|
* Add time passed to tellsJokler2018-02-261-4/+14
|
* Add Mysql as a possible database to the Tell pluginJokler2018-02-251-0/+144