aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/easter (follow)
Commit message (Collapse)AuthorAgeLines
...
| * | fstrings, colours, and self.botGravatar Kronifer2021-03-03-24/+24
| | |
| * | possible final updateGravatar Kronifer2021-03-03-5/+13
| | |
| * | final lint fixGravatar Kronifer2021-03-03-2/+2
| | |
| * | lintingGravatar Kronifer2021-03-03-8/+6
| | |
| * | asyncio startGravatar Kronifer2021-03-03-1/+1
| | |
| * | Update earth_photos.pyGravatar Kronifer2021-03-03-3/+11
| | |
| * | Update earth_photos.pyGravatar Kronifer2021-03-03-15/+9
| | |
| * | Fix docstringsGravatar Kronifer2021-03-03-1/+1
| | | | | | | | | Co-authored-by: Shivansh-007 <[email protected]>
| * | init to __init__Gravatar Kronifer2021-03-03-1/+1
| | | | | | | | | Co-authored-by: Shivansh-007 <[email protected]>
| * | Update bot/exts/easter/earth_photos.pyGravatar Kronifer2021-03-03-1/+0
| | | | | | | | | Co-authored-by: Shivansh-007 <[email protected]>
| * | lint fixesGravatar Kronifer2021-03-02-3/+2
| | |
| * | more linting fixesGravatar Kronifer2021-03-02-4/+2
| | |
| * | linting changesGravatar Kronifer2021-03-02-4/+4
| | |
| * | Update earth_photos.pyGravatar Kronifer2021-03-02-6/+8
| | |
| * | finished functionGravatar Kronifer2021-03-02-16/+19
| | |
| * | Update earth_photos.pyGravatar Kronifer2021-03-02-3/+13
| | |
| * | initial commit of earth_photosGravatar Kronifer2021-03-02-0/+27
| |/
* / Merge all avatar cogs into one. Also includes some in_executor and ↵Gravatar Chris2021-02-18-128/+0
|/ | | | max_concurrency code.
* 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.
* update self.winners methods for a set()Gravatar Hedy Li2020-10-15-4/+4
|
* remove duplicates in winner list .riddleGravatar Hedy Li2020-10-12-1/+1
|
* apply @Den4200's suggestionsGravatar Chris Gallardo2020-10-05-6/+4
| | | | Co-Authored-By: Dennis Pham <[email protected]>
* apply @Den4200's suggestionsGravatar Chris Gallardo2020-10-05-5/+8
| | | | Co-Authored-By: Dennis Pham <[email protected]>
* Apply suggestions from code reviewGravatar Chris Gallardo2020-10-04-1/+1
| | | Co-authored-by: gustavwilliam <[email protected]>
* Apply suggestions from @gustavwilliam's code reviewGravatar Chris Gallardo2020-10-03-4/+3
| | | Co-authored-by: gustavwilliam <[email protected]>
* @gustavwilliam's suggestionsGravatar Chris Gallardo2020-10-03-6/+7
|
* Added responsesGravatar Chris Gallardo2020-10-02-2/+2
|
* lintedGravatar Chris Gallardo2020-10-02-34/+8
|\
| * Take @thomaspet's suggestion for SaveThePlanetCogGravatar Chris Gallardo2020-10-02-2/+1
| | | | | | Co-authored-by: Thomas Petersson <[email protected]>
* | run lintGravatar Chris Gallardo2020-10-02-6/+10
|/
* Fix errorsGravatar Chris Gallardo2020-10-01-25/+24
|
* Add Cog and add a couple responsesGravatar Chris Gallardo2020-10-01-0/+51
|
* Updated to comply with reviews.Gravatar Xithrius2020-08-10-58/+0
|
* Finalized topic selection.Gravatar Xithrius2020-08-09-19/+26
|
* Edited "topic" command for fetching python channel topics.Gravatar Xithrius2020-08-09-1/+24
|
* 5/19 - bot | xmas, easter, evergreen - updated open statesments with ↵Gravatar jodth072020-05-19-3/+3
| | | | explicit encoding
* 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-9/+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/+722
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.