| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-06-26 | Refactor translate subcommand to encrypt and decrypt | -9/+31 | ||
| 2020-06-26 | Add basic caesar cipher information embed | -1/+16 | ||
| 2020-06-14 | Make caesarcipher a command group | -6/+19 | ||
| 2020-06-14 | Add initial caesarcipher command | -0/+34 | ||
| 2020-05-25 | Remove accidental extra word from docstring | -1/+1 | ||
| 2020-05-24 | 5/24 - bot utils - added encoding, and notes for persist | -1/+4 | ||
| 2020-05-24 | 5/24 - bot exts - updated writing with utf8 encoding | -4/+4 | ||
| 2020-05-19 | 5/19 - ext - set upen files encoding to utf8 for bots | -14/+14 | ||
| 2020-05-19 | 5/19 - bot | xmas, easter, evergreen - updated open statesments with ↵ | -11/+11 | ||
| explicit encoding | ||||
| 2020-05-19 | 5/19 - evergreen | triva - fixed utf-8 bugs for windows | -1/+1 | ||
| 2020-05-17 | Set ayncio event loop to Selector on windows. | -0/+6 | ||
| Python 3.8 set the default asyncio event loop on windows to Proactor, which is not supported in aiodns. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-05-11 | Update halloweenify error message to make it more readable and restructure ↵ | -6/+6 | ||
| the flow | ||||
| 2020-05-08 | F i x e d S p a c e | -1/+1 | ||
| 2020-05-08 | Show bot prefix in rich presence | -1/+4 | ||
| This emulates the main bot's message for consistency. | ||||
| 2020-05-07 | Lint limit | -1/+2 | ||
| 2020-05-07 | Updated Prefix and Website | -3/+4 | ||
| 2020-05-04 | exit minesweeper early if DM disabled | -11/+11 | ||
| If user has DMs disabled then don't initialize board and don't start a game. | ||||
| 2020-05-04 | Handle staff users and DMs in the halloweenify cog | -2/+17 | ||
| The bot doesn't have enough rights to modify staff nicknames, and can't change it when it is invoked through DM neither. | ||||
| 2020-04-29 | update minesweeper dm error message | -1/+1 | ||
| 2020-04-26 | handle disabled DMs when starting Minesweeper | -5/+10 | ||
| If the user trying to start Minesweeper has DMs disabled then warn him in the channel where the command was invoked. | ||||
| 2020-04-19 | Fix import order | -1/+1 | ||
| 2020-04-19 | Allow issue command in #dev-contrib | -2/+2 | ||
| 2020-04-19 | Add #dev-contrib to channel constants | -0/+1 | ||
| 2020-04-08 | (Error Handler): Added `UserNotPlayingError` catching to error handler. | -1/+5 | ||
| 2020-04-08 | (Minesweeper): Moved `UserNotPlayingError` to `bot.utils.exceptions`, ↵ | -14/+7 | ||
| removed definition in extensions. Removed custom error handler. | ||||
| 2020-04-08 | (Minesweeper): Added raising `UserNotPlayingError`, attached flag command to ↵ | -0/+7 | ||
| error handler. | ||||
| 2020-04-08 | (Minesweeper): Renamed user not playing error handler, changed `error` type ↵ | -2/+2 | ||
| hint from `typing.Any` to `Exception`, changed handling `KeyError` to handling `UserNotPlayingError`. | ||||
| 2020-04-08 | (Minesweeper): Created new exception `UserNotPlayingError`. | -0/+6 | ||
| 2020-04-07 | (Minesweeper): Reverted KeyError catching in reveal command, made error ↵ | -5/+8 | ||
| handler that catch it instead and attached reveal and end command to it. | ||||
| 2020-04-07 | (Space): Moved APOD command min date to constant, made changes in error ↵ | -3/+5 | ||
| message when date is going out of range. | ||||
| 2020-04-06 | (Space): Fixed formatting of try-except block. | -5/+7 | ||
| 2020-04-06 | (Space): Added check is date in range 16th June 1995 and today. | -1/+6 | ||
| 2020-04-06 | (Minesweeper): Added try-except block to reveal command. | -1/+5 | ||
| 2020-04-04 | Transition towards `wait_until_guild_available` use | -11/+14 | ||
| 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. | ||||
| 2020-04-04 | Add `wait_until_guild_available` coroutine | -0/+34 | ||
| See docstring for explanation & comparison to the `on_ready` event. This is taken from the Python bot repository. Originally implemented by Mark. The `on_guild_available` callback was adapted and simplified from the original implementation, as with Sentry in place, it is believed that dispatching an error webhook is unnecessary. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-04-04 | Try to fetch devlog channel if not found in cache | -2/+6 | ||
| 2020-04-03 | Remove redundant task assignment | -1/+1 | ||
| 2020-04-03 | Send greeting message to devlog channel on bot start-up | -0/+1 | ||
| Previously, this was done by the SeasonManager cog, which was removed during our deseasonification efforts. | ||||
| 2020-04-03 | Ensure cache is ready before grabbing devlog channel | -0/+1 | ||
| 2020-04-01 | Docstring: remove dots from list entries | -8/+8 | ||
| 2020-04-01 | Deseasonify: remove redundant log level setter | -1/+0 | ||
| 2020-04-01 | Deseasonify: implement __str__ for Month enum | -15/+21 | ||
| This way, we can standardize the way Months are shown to both the user and the developer. Note that if passing a Month member to an f-string, the `!s` format code must be specified to ensure our __str__ is used. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: yield ints representing days since cycle | -15/+14 | ||
| Previously, the `should_cycle` iterator would signal that it is time to cycle by yielding True. As per Mark's suggestion, this is adjusted to yield either None, or ints representing days since last cycle. This is more transparent, as the daemon can now perform the comparison against the configured cycle frequency itself, rather than relying on being fed the correct value from a "black box". See `_reset_should_cycle` docstring for further clarification. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: validate season setup | -3/+22 | ||
| Add a static check confirming that no seasons overlap. This avoids having to deal with ambiguities in `get_current_season` at runtime, as we can now rely on `len(active_seasons)` always being 0 or 1. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: adjust 'Merrybot' to 'MerryBot' | -1/+1 | ||
| For the sake of consistency - all other seasonal bot names have the B capitalized. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: set target branch to master | -1/+1 | ||
| With the 'seasonal-structure' branch being merged in the branding repository, we can start polling master. | ||||
| 2020-03-31 | Deseasonify: title-case month names in frontend | -2/+2 | ||
| After 00af207de3087a41270f216ad86e06ba7dbf9d42, we should ensure that the month names aren't shown to the user in all caps. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: turn helpers into regular functions | -5/+5 | ||
| It is not necessary for these to be coroutines. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: `pop` from remaining icons rather than unpack | -1/+1 | ||
| This should be more readable. Co-authored-by: MarkKoz <[email protected]> | ||||
| 2020-03-31 | Deseasonify: delegate refresh to dedicated command | -3/+1 | ||
| Reduces code duplication. Co-authored-by: MarkKoz <[email protected]> | ||||
