aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/tell/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Tell: Fix unsent tell on PRIVMSGJokler2019-01-011-9/+12
|
* Tell: Only show error if the message was not sentJokler2018-07-061-1/+1
|
* Plugins: Replace IrcClient with a traitJokler2018-06-301-16/+18
| | | | | This is to make it simpler to replace the client in the future.
* Tell: Fix tell accept conditionJokler2018-06-161-5/+9
| | | | | This fixes a mistake from the previous commit to the tell plugin.
* Tell: Allow messages to online usersJokler2018-06-161-2/+5
| | | | | | Since the userlists desync after a while it is not guaranteed that users are actually online when they appear to be.
* Fix clippy warningsJokler2018-06-161-18/+22
|
* Add usefulness rating function to url titlesJokler2018-04-071-7/+8
|
* Fix tell helpJokler2018-03-221-2/+2
|
* Fix tell error messageJokler2018-03-211-1/+1
|
* 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