aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
Commit message (Collapse)AuthorAgeFilesLines
* Remind: Add Mysql as a possible databaseJokler2018-05-141-2/+1
| | | | | | | | The bot also responds with the id and time of a reminder after creation to allow the creator to delete them. Furthermore the InvalidCommand message was fixed and the unnecessary dotenv dependency was removed.
* Remind: Add initial remind pluginJokler2018-05-121-0/+6
| | | | Mysql is not supported yet.
* Main: Replace the logger with log4rsJokler2018-04-271-41/+10
|
* Add usefulness rating function to url titlesJokler2018-04-071-10/+10
|
* Use a prefix from the config instead of the nickJokler2018-03-191-1/+4
|
* Add sed pluginJokler2018-03-131-7/+9
|
* Use Error & ErrorKind pair instead of simple enumsJokler2018-03-021-20/+31
| | | | | | | | | | | | 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-8/+1
|
* Create errors with failureJokler2018-02-281-8/+20
| | | | | 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-2/+8
|
* Run rustfmt and clippyJokler2018-02-241-19/+15
|
* Use r2d2 as a ConnectionPool for dieselJokler2018-02-241-6/+13
|
* Merge branch 'dev' into factoid-pluginJokler2018-02-231-1/+50
|
* Run latest rustfmtJokler2018-02-121-25/+25
|
* Replace is_allowed with a single-threaded execute functionJokler2018-02-121-4/+8
| | | | The old execute got renamed to exeute_threaded.
* Move main file into the src directoryJokler2018-02-121-0/+113