| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2022-02-01 | 🚨 Make docstring more concise | -2/+2 | ||
| 2022-02-01 | 🚨 Reorder imports | -1/+1 | ||
| 2022-02-01 | ♻️Import errors from `discord` explicitly | -4/+4 | ||
| 2022-02-01 | ✨ Check for bad username when user joins or switches voice channel | -1/+7 | ||
| 2022-02-01 | 🚸 Ping moderators when a bad username is detected | -1/+2 | ||
| 2022-01-27 | Use `voice_gate_blocked` field from API for voice_gate | -2/+2 | ||
| This new field is true when the user has any voice exception, which means the user is blocked from receiving the role. | ||||
| 2022-01-27 | Add embed message mentioning help channel claimant | -2/+10 | ||
| Update docstring | ||||
| 2022-01-26 | Add missing restart-policy to metricity container | -0/+1 | ||
| 2022-01-26 | setuptools use stdlib distutils over embedded | -0/+4 | ||
| This is caused by an upstream issue with setuptools 60.* (via virtualenv) changeing the default to using the setuptools-embedded distutils rather than the stdlib distutils, which breaks within pip's isolated builds. This is explained quite well here https://github.com/pre-commit/pre-commit/issues/2178#issuecomment-1002163763 | ||||
| 2022-01-25 | Add missing arguments to `notify_infraction` call | -2/+6 | ||
| Fixes an issue caused by #1951. | ||||
| 2022-01-25 | Add voice_ban stub commands | -0/+29 | ||
| These stub commands are useful for moderators during the change over from voice_ban to voice_mute, to remind moderators that the command has been changed now. | ||||
| 2022-01-25 | Refactor voice_ban function definitions to voice_mute | -60/+60 | ||
| This changes all functions that reference voice_ban to voice_mute instead, which comes with breaking front-end changes. These front end changes are desirable, so that moderators get used to use voice_mute now, rather than voice_ban, in preparation for when we roll out real voice_bans. | ||||
| 2022-01-25 | Rename voice_ban type to voice_mute | -17/+17 | ||
| This commit changes all of the back-end so that it is in line with the new site API (see this PR https://github.com/python-discord/site/pull/608). This comes with no changes to commands, or functions definitions. | ||||
| 2022-01-25 | Rename `contributing guidelines` to `contribution guide` | -1/+1 | ||
| 2022-01-24 | Remove dev-contrib and bot-commands from features list | -2/+0 | ||
| 2022-01-17 | Fix pastebin hyperlink to use correct markdown syntax | -1/+1 | ||
| Fix format from `[link](text)` to `[text](link)` so that the link will be formatted as it should be. | ||||
| 2022-01-16 | Shorten the `TXT_EMBED_DESCRIPTION` message (#2048) | -8/+2 | ||
| 2022-01-09 | Time: revise docstrings | -7/+9 | ||
| 2022-01-09 | Scheduling: add Arrow to schedule_at's type annotations | -1/+3 | ||
| 2022-01-09 | Converters: use datetime.timezone instead of dateutil.tz | -3/+2 | ||
| They're equivalent for UTC. Get rid of the extra import. | ||||
| 2022-01-09 | Use codeblock regex from bot-core in snekbox cog | -15/+1 | ||
| 2022-01-09 | Move single-use message ID regex to inside file that uses it | -4/+2 | ||
| This moves the regex closer to the place actually using the regex, and removes the need for a regex.py file entirely. | ||||
| 2022-01-09 | use regex from bot-core for discord invites | -16/+4 | ||
| 2022-01-09 | Add bot-core as a dependancy | -76/+81 | ||
| 2022-01-08 | Fix snekbox tests with new allowed_mentions | -4/+20 | ||
| 2022-01-08 | Restrict allowed mentions for !eval results | -2/+3 | ||
| 2022-01-04 | modlog: wait for guild init before using channel cache | -0/+3 | ||
| Not doing so could cause an error where get_channel would return none for the mod logs channel. | ||||
| 2022-01-01 | Infraction mod-log improvements | -4/+5 | ||
| - Add infraction id to infraction edit modlog - Add missing colon in "infraction applied" message - Utilise defined infraction id variable instead of indexing dict again | ||||
| 2021-12-29 | Add text indicating when user fetched by message (#2013) | -16/+18 | ||
| Co-authored-by: Xithrius <[email protected]> | ||||