aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/factoids/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add usefulness rating function to url titlesJokler2018-04-071-9/+15
|
* Replace every Mutex with RwLockJokler2018-03-211-22/+13
|
* Add sleep to factoidsJokler2018-03-201-1/+1
|
* Use Error & ErrorKind pair instead of simple enumsJokler2018-03-021-74/+113
| | | | | | | | | | | | 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.
* Use lossy UTF8 conversion and add a log_error functionJokler2018-03-011-1/+1
|
* Create errors with failureJokler2018-02-281-103/+71
| | | | | The plugins are mostly not using the new errors yet and the error handling in the Factoids plugin is just temporary.
* Add Mysql as a possible database to the Tell pluginJokler2018-02-251-1/+1
|
* Run rustfmt and clippyJokler2018-02-241-56/+61
|
* Use r2d2 as a ConnectionPool for dieselJokler2018-02-241-10/+10
|
* Merge branch 'dev' into factoid-pluginJokler2018-02-231-52/+60
|
* Add possibly unsafe timeout hook to factoidsJokler2018-02-231-4/+5
|
* Improve factoid error handlingJokler2018-02-171-2/+4
|
* Add download function & fromurl commandJokler2018-02-131-17/+46
|
* Add some sandboxingJokler2018-02-131-3/+3
|
* Send all factoid info responses to the channel instead of the userJokler2017-12-251-1/+1
|
* Add 'remove' command to Factoids and make the Database trait publicJokler2017-12-241-1/+19
|
* Add more info to factoids and save old versionsJokler2017-12-241-26/+120
|
* Add MySql as a possible database for the Factoids pluginJokler2017-12-241-5/+11
|
* Add Database trait to be used by the Factoids pluginJokler2017-12-241-7/+8
|
* 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-241-0/+161