summaryrefslogtreecommitdiffstats
path: root/src/plugins
Commit message (Collapse)AuthorAgeFilesLines
* Fix escaped slashes in sed replacement textsJokler2018-03-131-8/+11
|
* Add missing plugin fileJokler2018-03-131-0/+165
|
* Add sed pluginJokler2018-03-132-2/+2
|
* Let tell accept multiple comma-seperated receiversJokler2018-03-121-35/+30
|
* Consider title tags with attributesJokler2018-03-111-4/+14
|
* Decode html encoded characters in titlesJokler2018-03-101-5/+11
|
* Check NICK commands in the tell pluginJokler2018-03-091-0/+1
|
* Use a naive search for html titles to speed it upJokler2018-03-081-12/+9
|
* Check for outstanding tells when a userlist is receivedJokler2018-03-052-18/+86
|
* Fix formattingJokler2018-03-051-6/+4
|
* Add Tell specific errors and improve error logging for commandsJokler2018-03-052-77/+109
|
* 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-0210-211/+286
| | | | | | | | | | | | 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
|
* Use lossy UTF8 conversion and add a log_error functionJokler2018-03-013-7/+4
|
* Create errors with failureJokler2018-02-283-129/+86
| | | | | The plugins are mostly not using the new errors yet and the error handling in the Factoids plugin is just temporary.
* Add time passed to tellsJokler2018-02-261-4/+14
|
* Add Mysql as a possible database to the Tell pluginJokler2018-02-254-36/+183
|
* Remove unwraps from the Url pluginJokler2018-02-251-12/+19
|
* Return zero if count_factoids could not find the factoidJokler2018-02-251-1/+4
|
* Run rustfmt and clippyJokler2018-02-246-79/+85
|
* Add temporary eval function to factoidsJokler2018-02-241-7/+20
|
* Extend Lua sandboxJokler2018-02-241-15/+37
|
* Use r2d2 as a ConnectionPool for dieselJokler2018-02-242-28/+38
|
* Use correct return typeJokler2018-02-241-1/+1
|
* Log all database errorsJokler2018-02-241-4/+13
|
* Merge branch 'dev' into factoid-pluginJokler2018-02-238-189/+365
|\
| * Replace try_option with ?Jokler2018-02-132-15/+8
| |
| * Save multiple tells per personJokler2018-02-121-9/+13
| |
| * Add Tell PluginJokler2018-02-122-0/+135
| |
| * Run latest rustfmtJokler2018-02-124-66/+65
| |
| * Replace is_allowed with a single-threaded execute functionJokler2018-02-125-71/+74
| | | | | | | | The old execute got renamed to exeute_threaded.
| * Upgrade dependenciesJokler2018-02-105-29/+29
| |
| * Add evaluate function to pluginsJokler2018-02-105-45/+77
| | | | | | | | This allows plugins to be used in combination with each other.
* | Add possibly unsafe timeout hook to factoidsJokler2018-02-233-4/+30
| |
* | Improve factoid error handlingJokler2018-02-172-4/+12
| |
* | Add download function & fromurl commandJokler2018-02-135-78/+64
| |
* | Fix function call in luaJokler2018-02-131-1/+1
| |
* | Add some sandboxingJokler2018-02-132-4/+30
| |
* | Send all factoid info responses to the channel instead of the userJokler2017-12-251-1/+1
| |
* | Log database errors and send a notice if no factoid was deletedJokler2017-12-241-4/+10
| |
* | Add 'remove' command to Factoids and make the Database trait publicJokler2017-12-243-17/+61
| |
* | Add more info to factoids and save old versionsJokler2017-12-242-63/+203
| |
* | Add MySql as a possible database for the Factoids pluginJokler2017-12-242-13/+75
| |
* | Add Database trait to be used by the Factoids pluginJokler2017-12-242-7/+26
| |
* | Add non Lua factoidsJokler2017-12-241-5/+15
| | | | | | | | | | Only factoids prefixed with '>' are run as Lua now. To escape the '>' just add another one.
* | Do not allow factoids to send newlinesJokler2017-12-241-1/+1
| |
* | Move the Factoids plugin into a subfolderJokler2017-12-242-0/+0
| |
* | Prepare environment for the SandboxJokler2017-12-242-13/+40
| |