| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-04-04 | Use Member.colour rather than a list comprehension for !user | -3/+1 | ||
| 2021-04-04 | Ignore colourless roles in !user embed | -1/+3 | ||
| 2021-04-04 | Blacklist staff_info for duckpond | -0/+2 | ||
| 2021-04-01 | Update policy documents | -122/+8 | ||
| 2021-03-31 | Branding: log after successful fetch | -0/+4 | ||
| Co-authored-by: Shivansh-007 <[email protected]> Co-authored-by: Joe Banks <[email protected]> | ||||
| 2021-03-31 | Branding: apply documentation improvements after review | -8/+8 | ||
| No code changes in this commit. Co-authored-by: Shivansh-007 <[email protected]> Co-authored-by: Joe Banks <[email protected]> | ||||
| 2021-03-31 | Branding: target 'main' branch | -2/+2 | ||
| With the branding-side PR merged, we can now target the production branch. | ||||
| 2021-03-30 | Use deleted reason if help channel is closed due to being empty | -1/+2 | ||
| 2021-03-30 | Fix copy & paste error in closing reason enum | -1/+1 | ||
| 2021-03-30 | Removed user event announcements from the config. | -4/+0 | ||
| 2021-03-30 | Change to an Enum for possible closing reasons | -20/+32 | ||
| 2021-03-30 | Gracefully handle failure to upload to hastebin in `!dmrelay`. | -0/+5 | ||
| 2021-03-30 | Replace usage of `textwrap.dedent` with a cleaner method. | -5/+4 | ||
| 2021-03-30 | Remove `dm_log` from channels and webhooks in the config. | -4/+0 | ||
| 2021-03-30 | Enumerate all possible values for closed_on in docstring | -1/+4 | ||
| 2021-03-30 | HelpChannels: refactor get_closing_time | -43/+43 | ||
| 2021-03-30 | HelpChannels: use aware datetimes everywhere | -27/+34 | ||
| Fix issues converting timestamps to datetimes and vice-versa. The main culprit id `datetime.timestamp()`, which always assumes naïve objects are in local time. That behaviour conflicts with discord.py, which returns naïve objects in UTC rather than local time. Switching from `utcfromtimestamp` to `fromtimestamp` was incorrect since the latter also assumes the timestamp is in local time. | ||||
| 2021-03-30 | Update arrow to 1.0.3 | -267/+336 | ||
| It has some API changes, so it's best to update now before the project starts using the library more. | ||||
| 2021-03-30 | Increase the total number of help channels to 42 | -1/+1 | ||
| We've seen an increase in help channel activity and we're running out of help channels frequently. That's why we're increasing the number of help channels from 38 to 42. Note that the old configuration said 32, but we had more channels in actual rotation due to a race condition we had in the past. The system will never delete channels that were already in rotation, meaning that those that were added over the limit in the past still existed. | ||||
| 2021-03-30 | Alphabetize configuration | -5/+5 | ||
| 2021-03-28 | Add myself to CODEOWNERS (#1489) | -9/+9 | ||
| 2021-03-28 | Update bot/exts/info/information.py | -1/+1 | ||
| Co-authored-by: Joe Banks <[email protected]> | ||||
| 2021-03-28 | Filter codeblick escapes and allow no mentions for !raw command | -5/+5 | ||
| 2021-03-28 | Reduce API calls in `!dmrelay`. | -15/+13 | ||
| 2021-03-28 | Force cache to update for user history. | -1/+8 | ||
| Before, the user would have to send a DM to the bot after startup for the bot to realize there is DM history with that specific user. Now, we force a cache refresh when a moderator invokes `!dmrelay`, so this shouldn't be an issue anymore. | ||||
| 2021-03-28 | Account for requesting the bot's DMs with itself. | -1/+1 | ||
| 2021-03-28 | Improve `DMRelay` cog description. | -1/+1 | ||
| Co-authored-by: Joe Banks <[email protected]> | ||||
| 2021-03-28 | Added a newline to space out some code. | -0/+1 | ||
| Co-authored-by: Joe Banks <[email protected]> | ||||
| 2021-03-28 | Branding: add contextual message to #changelog notifications | -9/+11 | ||
| It would be strange to just send the embed with no explanation of what it means. | ||||
| 2021-03-27 | Branding: omit notification when entering evergreen | -3/+3 | ||
| The fallback event should not produce a notification. | ||||
| 2021-03-27 | Restrict DMRelay cog to moderators only. | -2/+6 | ||