aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/pride (follow)
Commit message (Collapse)AuthorAgeLines
* Move Pride to Holidays folderGravatar Janine vN2021-09-04-293/+0
| | | | | Moves the Pride features to the Holidays folder. Corrected the paths to reflect this change.
* Move Easter to Holidays FolderGravatar Janine vN2021-09-04-0/+0
| | | | | | This moves the easter seasonal features into a more cohesive holidays/easter folder. Additionally, this splits out earth day into its own holiday folder.
* Merge branch 'main' into android-codeblock-fixGravatar Xithrius2021-09-03-3/+3
|\
| * More explicit importing for `Bot`Gravatar Xithrius2021-09-02-3/+3
| |
* | Start and end codeblocks with newlines to avoid android rendering them inlineGravatar wookie1842021-09-01-1/+1
|/
* Replace fuzzywuzzy with rapidfuzzGravatar wookie1842021-08-06-1/+1
|
* Merge branch 'main' into fix/attribute-errorsGravatar ChrisJL2021-06-05-0/+117
|\
| * Fix lint issueGravatar Shivansh2021-06-04-1/+1
| |
| * Pass information dict into embed builderGravatar Shivansh2021-06-04-10/+12
| |
| * Add message to contribute instead of wiki link in error embedGravatar Shivansh2021-06-03-6/+1
| |
| * Pass pride leader name into embed generatorGravatar Shivansh2021-06-03-2/+2
| |
| * Make self.pride a constantGravatar Shivansh2021-06-03-12/+10
| |
| * Merge branch 'main' into feature/pride-leadersGravatar Kieran Siek2021-06-03-229/+32
| |\
| * | Make `setup` docstring same as other cogsGravatar Shivansh-0072021-05-18-1/+1
| | | | | | | | | Co-authored-by: ToxicKidz <[email protected]>
| * | Apply code review suggestionsGravatar Shivansh2021-05-18-3/+2
| | | | | | | | | | | | | | | * Use read_text rather a with open * Remove Redundant list comprehension
| * | Change bot typehint to bot.bot.BotGravatar Shivansh2021-05-18-2/+3
| | |
| * | Remove redundant codeGravatar Shivansh2021-04-30-8/+3
| | | | | | | | | | | | The entire `name_verifier` function can be replaced with just a dict.get
| * | Give more information in function doc-stringsGravatar Shivansh2021-04-30-1/+11
| | |
| * | Apply requested grammar changes.Gravatar Shivansh-0072021-03-14-2/+2
| | |
| * | Add link to wikipedia in error embed and information embed.Gravatar Shivansh-0072021-03-08-3/+16
| | |
| * | Add pride leader cog and resources.Gravatar Shivansh-0072021-03-08-0/+104
| | |
* | | chore: Use constants instead of instance variables that don't existGravatar ToxicKidz2021-06-05-2/+2
| |/ |/| | | | | This caused attribute errors in the prideanthem and pridefact commands.
* | chore: Make things that are only used once constantsGravatar ToxicKidz2021-05-15-27/+10
| |
* | chore: Make all aliases in commands tuplesGravatar ToxicKidz2021-05-15-3/+3
| |
* | chore: Use pathlib.Path.read_text & write_text over openGravatar ToxicKidz2021-05-13-7/+3
| |
* | chore: Apply anand's suggested changesGravatar ToxicKidz2021-05-07-1/+1
| |
* | chore: Use pathlib more often and apply other changesGravatar ToxicKidz2021-05-05-2/+2
| |
* | fix: Resolve Merge ConflictsGravatar ToxicKidz2021-05-03-177/+0
|\ \
| * | Merge all avatar cogs into one. Also includes some in_executor and ↵Gravatar Chris2021-02-18-177/+0
| |/ | | | | | | max_concurrency code.
* | fix: Don't pass bot to __init__Gravatar ToxicKidz2021-05-03-1/+1
| |
* | Clean Up Christmas SeasonGravatar ToxicKidz2021-04-20-20/+21
|/
* Merge branch 'master' into prideavatar-urlGravatar Matteo Bertucci2020-11-30-4/+4
|\
| * 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.
* | Make prideavatar support specifying the image by URLGravatar Will Da Silva2020-10-05-37/+70
|/ | | | Closes #224
* 5/19 - ext - set upen files encoding to utf8 for botsGravatar jodth072020-05-19-3/+3
|
* Transition towards `wait_until_guild_available` useGravatar kwzrd2020-04-04-3/+4
| | | | | | All calls to `wait_until_ready` are replaced with the new event. To help with static analysis, we annotate `bot` attrs as instances of our custom SeasonalBot class where necessary.
* Refactor: capitalize Month enum membersGravatar kwzrd2020-03-31-1/+1
| | | | Co-authored-by: MarkKoz <[email protected]>
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-4/+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/+343
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.