aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/fun.py (follow)
Commit message (Collapse)AuthorAgeLines
* Fix return type annotationGravatar PureFunctor2020-06-29-2/+2
|
* Add 'cc' alias for caesarcipherGravatar PureFunctor2020-06-28-1/+1
|
* Add UTF-8 encoding when loading embed informationGravatar PureFunctor2020-06-27-1/+1
|
* Use pathlib and fix grammar in the information embedGravatar PureFunctor2020-06-27-1/+2
|
* Utilize Union[Message, str] for converting messagesGravatar PureFunctor2020-06-27-8/+13
|
* Use Context.invoke instead of invoking the Help cogGravatar PureFunctor2020-06-27-1/+1
|
* Load embed data in __init__ and use Embed.from_dictGravatar PureFunctor2020-06-26-8/+5
|
* Add offset validationGravatar PureFunctor2020-06-26-2/+8
|
* Refactor translate subcommand to encrypt and decryptGravatar PureFunctor2020-06-26-9/+31
|
* Add basic caesar cipher information embedGravatar PureFunctor2020-06-26-1/+12
|
* Make caesarcipher a command groupGravatar PureFunctor2020-06-14-6/+19
|
* Add initial caesarcipher commandGravatar PureFunctor2020-06-14-0/+34
|
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-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`Gravatar kwzrd2020-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.