| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-10-06 | Use clearer variable names in list comprehensions | -2/+2 | ||
| 2020-10-06 | Merge get and pop into one conditional | -3/+1 | ||
| 2020-10-06 | Add type annotation to on_member_update listener | -1/+1 | ||
| 2020-10-06 | Support users with alternate gating methods | -0/+42 | ||
| 2020-10-04 | Sort rules before determining invalid indices. | -14/+5 | ||
| This is to avoid sorting twice - once for invalid indices and again for send the rules. | ||||
| 2020-10-03 | Use `url` argument instead of setting it outside. | -2/+1 | ||
| 2020-10-03 | Use `Greedy` converter instead of the splat operator. | -2/+2 | ||
| 2020-10-03 | Remove duplicates from given rule indices and sort them in order. | -4/+11 | ||
| 2020-10-03 | Replace `map` with a more pythonic list comprehension. | -1/+1 | ||
| 2020-10-03 | Use invite for tracking offline presences instead of `ctx` | -2/+2 | ||
| 2020-10-03 | Add trailing comma to intents | -1/+1 | ||
| 2020-10-03 | Lock: make LockGuard.locked a property | -1/+2 | ||
| 2020-10-03 | Lock: rename variable to avoid shadowing | -3/+3 | ||
| 2020-10-03 | add missing test for `user` command | -0/+5 | ||
| 2020-10-03 | Cap most_common to 25 to not go over the embed fields limit | -1/+1 | ||
| 2020-10-03 | Add a socket stats command | -5/+37 | ||
| 2020-10-02 | Reminder: no feedback message when no mention | -4/+5 | ||
| 2020-10-02 | Get rid of codeblock in souce commit | -2/+3 | ||
| Double backtick will break if argument contains a double backtick, so getting rid of the codeblock itself makes more sense in my opionion. Also fix the style issue with multiline string by storing the escaped arg in another variable | ||||
| 2020-10-02 | Update !pep 0 command | -1/+1 | ||
| 2020-10-02 | Add missing blank line to satisfy the linting gods | -0/+1 | ||
| 2020-10-02 | Remove presence stat tracking. | -35/+2 | ||
| 2020-10-02 | Remove failing unit tests | -78/+0 | ||
| Testing `information` cog seems redutant as it is not too important part of the bot. | ||||
| 2020-10-02 | fix line length in bot/exts/info/information.py | -3/+3 | ||
| 2020-10-02 | Move PEP command embed URL to title | -1/+1 | ||
| Closes #1176 | ||||
| 2020-10-02 | Linter | -1/+2 | ||
| I had flake8 turned off in my dpy env -_- | ||||
| 2020-10-02 | Escape markdown in faulty source commands | -2/+2 | ||
| Closes #1177 | ||||
| 2020-10-01 | Remove special handling for the alias cog in the !source command | -15/+3 | ||
| It's obsolete code because the cog has been removed. | ||||
| 2020-10-01 | Duck pond: ignore reaction events from other guilds | -2/+8 | ||
| 2020-10-01 | fix spelling typos in bot/ python files | -4/+4 | ||
| 2020-09-30 | Duck pond: ignore reactions in DMs | -0/+7 | ||
| Also handle the channel not being found, which may be due to a cache issue or because it got deleted. Fixes #1183 Fixes BOT-8T | ||||
| 2020-09-30 | Remove null chars before posting deleted messages | -1/+1 | ||
| Our API doesn't allow null characters in the content field. It may be present because of a self bot that is able to send such character. Fixes #1182 Fixes BOT-8E | ||||
| 2020-09-30 | Catch 404 in wait_for_deletion when reacting | -1/+5 | ||
| The message may be deleted before the bot gets a chance to react. Fixes #1181 | ||||
| 2020-09-30 | Remove alias cog | -87/+0 | ||
| Last few aliases are an anomaly since #1124 was merged. The remaining aliases are seldom used. The code isn't exactly clean and it has some maintenance costs. Resolves #1159 | ||||
| 2020-09-30 | update member status info in `server` command | -7/+6 | ||
| 2020-09-30 | Remove Custom Status and Status from `create_user_embed` | -32/+0 | ||
| 2020-09-30 | Add intents setup to the bot | -1/+9 | ||
| 2020-09-29 | Deps: bump 'discord.py' to 1.5 & re-lock | -18/+9 | ||
| This also removes a duplicate 'discord' entry from the lockfile. | ||||
| 2020-09-27 | Incidents: reduce timeout log to info level | -1/+1 | ||
| This shouldn't be a warning, as we cannot do anything about it. Fixes BOT-8X | ||||
| 2020-09-27 | Allow !role for any staff role | -2/+2 | ||
| Closes #1173 | ||||
| 2020-09-27 | Allow !eval in #code-help-voice | -1/+3 | ||
| 2020-09-27 | Verification: apply 'safe_dm' to all DM dispatches | -5/+7 | ||
| Now, when we send a DM and it fails: * Ignore if due to disabled DMs * Log exception otherwise | ||||
| 2020-09-27 | Verification: move disabled DM handling into helper | -5/+22 | ||
| Note that we were previously only catching 403. As the docstring explains, we will now catch any Discord exception and only look at the the code, rather than the status. | ||||
| 2020-09-27 | Relock Pipfile to update async-redis. | -62/+70 | ||
| This also bumps minor versions of several other packages. I've spun up the bot and played around with it, and run all unit tests. Everything still seems to be in order. | ||||
| 2020-09-27 | Add the video to the welcome DM. | -4/+7 | ||
| This rewords the welcome DM, and adds the new Welcome To Python Discord video to it. | ||||
| 2020-09-26 | Sync: update sync() docstring | -3/+1 | ||
| 2020-09-25 | Remove redundant is_valid_userid function | -33/+27 | ||
| extract_user_id(id) is not None does the same job and is not worth the extra function | ||||
| 2020-09-24 | Change the mod alert message component for the user token detection | -46/+23 | ||
| Clean up mock usage, docstrings, unnecessarily split-lined function calls | ||||
| 2020-09-24 | Add BOT vs USER token detection, properly handling bot tokens for bots in ↵ | -13/+47 | ||
| the current server Also adjust the naming and purposes of the format messages to KNOWN and UNKNOWN token messages. | ||||
| 2020-09-24 | Implement review-suggested changes | -67/+91 | ||
| userid -> user ID maybevalid -> maybe_valid remove collections import and added a new function that handles the "format user ID log message" and should_ping_everyone feature | ||||
| 2020-09-23 | Sync: remove _asdict comment | -1/+1 | ||
| The comment doesn't contribute anything. | ||||