| Commit message (Collapse) | Author | Age | Lines | |
|---|---|---|---|---|
| * | Fix return type annotation | 2020-06-29 | -2/+2 | |
| | | ||||
| * | Add 'cc' alias for caesarcipher | 2020-06-28 | -1/+1 | |
| | | ||||
| * | Add UTF-8 encoding when loading embed information | 2020-06-27 | -1/+1 | |
| | | ||||
| * | Use pathlib and fix grammar in the information embed | 2020-06-27 | -1/+2 | |
| | | ||||
| * | Utilize Union[Message, str] for converting messages | 2020-06-27 | -8/+13 | |
| | | ||||
| * | Use Context.invoke instead of invoking the Help cog | 2020-06-27 | -1/+1 | |
| | | ||||
| * | Load embed data in __init__ and use Embed.from_dict | 2020-06-26 | -8/+5 | |
| | | ||||
| * | Add offset validation | 2020-06-26 | -2/+8 | |
| | | ||||
| * | Refactor translate subcommand to encrypt and decrypt | 2020-06-26 | -9/+31 | |
| | | ||||
| * | Add basic caesar cipher information embed | 2020-06-26 | -1/+12 | |
| | | ||||
| * | Make caesarcipher a command group | 2020-06-14 | -6/+19 | |
| | | ||||
| * | Add initial caesarcipher command | 2020-06-14 | -0/+34 | |
| | | ||||
| * | Deseasonify: log in `add_cog` rather than in each `setup` | 2020-03-28 | -1/+0 | |
| | | | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made. | |||
| * | Deseasonify: rename `seasons` pkg to `exts` | 2020-03-28 | -0/+148 | |
| It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality. | ||||