| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-08-23 | Address review comments from @kwzrd | -19/+14 | ||
| 2020-08-20 | Disable raw commands | -2/+2 | ||
| 2020-08-20 | Make client parameter mandatory for wait_for_deletion | -15/+8 | ||
| A client instance is necessary for the core feature of this function. There is no way to obtain it from the other arguments. The previous code was wrong to think `discord.Guild.me` is an equivalent. Fixes #1112 | ||||
| 2020-08-20 | Restrict reminder methods to authors and admins. | -2/+24 | ||
| Before, any user could modify the reminders of others by the id. This restricts the behaviour to only admins and users can only modify the reminders they authored. | ||||
| 2020-08-19 | Replace stinky single-item unpacking syntax | -1/+1 | ||
| 2020-08-19 | Swap argument order in ChainMaps | -2/+2 | ||
| The defaults should be last to ensure they don't take precedence over explicitly set values. | ||||
| 2020-08-16 | Re-align status icons | -3/+3 | ||
| 2020-08-16 | msg rather than doc_embed | -2/+2 | ||
| 2020-08-16 | Use wait_for_deletion from /bot/utils/messages.py instead of doc_cleanup | -25/+3 | ||
| 2020-08-16 | Remove the !ask tag | -9/+0 | ||
| 2020-08-15 | Unnominate banned users from the talent pool | -19/+35 | ||
| Fixes #1065 | ||||
| 2020-08-15 | Escape Markdown in reddit post titles | -0/+3 | ||
| Use a Unicode look-alike character to replace square brackets, since they'd otherwise interfere with the Markdown. Fixes #1030 | ||||
| 2020-08-15 | Truncate mod log content | -0/+4 | ||
| Discord has a limit of 2000 characters for messages. | ||||
| 2020-08-15 | Don't patch ctx.message.author in antispam | -4/+5 | ||
| The modification propagated across all code that is using the same `Message` object, including all other `on_message` listeners. This caused weird bugs e.g. the filtering cog thinking the bot authored a message that triggered a filter. Patching only `ctx.author` means the implementation is more fragile. Infraction code must ensure it only retrieves the author via `ctx.author` and not through `ctx.message`. Fixes #1005 Fixes BOT-7D | ||||
| 2020-08-15 | Satisfy some of the Azure pipelines' code requirements | -3/+3 | ||
| 2020-08-15 | Add doc cleanup | -2/+26 | ||
| 2020-08-14 | Add status information to user command | -8/+13 | ||
| 2020-08-14 | Update tests for user commands | -32/+55 | ||
| 2020-08-14 | Add badges & status to user command | -28/+67 | ||
| 2020-08-14 | Add YAML values for badges | -0/+11 | ||
| 2020-08-14 | Add constants for badges | -0/+11 | ||
| 2020-08-13 | Fix typo on the traceback tag | -1/+1 | ||
| See issue #1101 | ||||
| 2020-08-12 | Filtering: ignore errors for duplicate offensive messages | -3/+11 | ||
| The error happens when a filter is triggered by a message edit. Fixes #1099 Fixes BOT-6B | ||||