| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Plugins: Replace IrcClient with a trait | Jokler | 2018-06-30 | 1 | -4/+6 |
| | | | | | | This is to make it simpler to replace the client in the future. | ||||
| * | Fix clippy warnings | Jokler | 2018-06-16 | 1 | -1/+1 |
| | | |||||
| * | Add usefulness rating function to url titles | Jokler | 2018-04-07 | 1 | -1/+1 |
| | | |||||
| * | Use a prefix from the config instead of the nick | Jokler | 2018-03-19 | 1 | -24/+13 |
| | | |||||
| * | Make tells caase insensitive and only check JOINs | Jokler | 2018-03-03 | 1 | -1/+1 |
| | | |||||
| * | Use Error & ErrorKind pair instead of simple enums | Jokler | 2018-03-02 | 1 | -9/+12 |
| | | | | | | | | | | | | | 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. | ||||
| * | Run rustfmt and clippy | Jokler | 2018-02-24 | 1 | -1/+1 |
| | | |||||
| * | Run latest rustfmt | Jokler | 2018-02-12 | 1 | -12/+6 |
| | | |||||
| * | Improve documentation | Jokler | 2018-02-12 | 1 | -7/+15 |
| | | |||||
| * | Replace is_allowed with a single-threaded execute function | Jokler | 2018-02-12 | 1 | -2/+8 |
| | | | | | The old execute got renamed to exeute_threaded. | ||||
| * | Upgrade dependencies | Jokler | 2018-02-10 | 1 | -5/+5 |
| | | |||||
| * | Add evaluate function to plugins | Jokler | 2018-02-10 | 1 | -0/+2 |
| | | | | | This allows plugins to be used in combination with each other. | ||||
| * | Adjust documentation | Jokler | 2017-12-15 | 1 | -1/+3 |
| | | |||||
| * | Remove needless allocation & fix typo | Jokler | 2017-12-11 | 1 | -1/+1 |
| | | |||||
| * | Rename plugin_derive to frippy_derive | Jokler | 2017-11-30 | 1 | -1/+1 |
| | | |||||
| * | Let users of the library define their own plugins | Jokler | 2017-11-28 | 1 | -96/+24 |
| | | | | | | | | This means that: - run() is now part of a Bot struct - Plugins the bot should use have to be added before calling run() - The Plugin trait and all of the included plugins are now public | ||||
| * | Remove mutexes around plugins | Jokler | 2017-11-16 | 1 | -19/+9 |
| | | | | | | | | Mutexes are supposed to only mark critical sections so locking the entire plugin is too general. Any plugins that need mutable data should use mutexes internally instead. | ||||
| * | Add debug logging | Jokler | 2017-11-03 | 1 | -1/+10 |
| | | | | | | | The log level gets set to debug or info based on the build profile automatically now. Debug messages also print their target to the console. | ||||
| * | Move help into a Plugin | Jokler | 2017-10-27 | 1 | -8/+0 |
| | | |||||
| * | Refactor plugin management | Jokler | 2017-10-27 | 1 | -0/+148 |
| | | | | | ThreadedPlugins should take care of anything Plugin related now. | ||||
| * | Create plugin_derive to replace the register_plugin macro | Jokler | 2017-10-11 | 1 | -24/+5 |
| | | |||||
| * | Only expose the run function | Jokler | 2017-10-11 | 1 | -2/+7 |
| | | |||||
| * | Add command functionality | Jokler | 2017-10-11 | 1 | -0/+2 |
| | | |||||
| * | Add the Display trait to Plugins | Jokler | 2017-10-11 | 1 | -13/+10 |
| | | |||||
| * | Initial bot source | Jokler | 2017-10-04 | 1 | -0/+35 |
