aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/help.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move internal eval and rename utils to coreGravatar Janine vN2021-09-05-562/+0
| | | | | | | | | Part of this restructure involves splitting out the massive evergreen folder into a `fun` folder and then a `utilities` folder. To help with that we've rename the `util` folder to `core`. The core functions to run the bot have been moved into this folder. `.source`, `.ping`, and `.int e` have been moved into this folder.
* Merge branch 'main' into android-codeblock-fixGravatar Xithrius2021-09-03-4/+4
|\
| * Fix type annotationsGravatar decorator-factory2021-08-31-4/+4
| |
* | Start and end codeblocks with newlines to avoid android rendering them inlineGravatar wookie1842021-09-01-1/+1
|/
* Replace fuzzywuzzy with rapidfuzzGravatar wookie1842021-08-06-2/+2
|
* chore: Break up the HelpSession.build_pages methodGravatar ToxicKidz2021-05-13-85/+87
|
* chore: Apply more suggested changesGravatar ToxicKidz2021-05-10-3/+9
|
* chore: Prefer double quotes over single quotesGravatar ToxicKidz2021-05-04-37/+37
|
* Add root alias support for commandsGravatar Chris2021-02-18-1/+3
|
* Remove references to old name.Gravatar Leon Sandøy2020-11-21-4/+4
| | | | | I've tried to replace this with generic references where appropriate, but a lot of the time it just doesn't make a lot of sense to do so.
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-2/+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/+554
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.