| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2020-04-05 | Reduce span of hyperlink in AVAILABLE_MSG and DORMANT_MSG | -2/+2 | ||
| 2020-04-02 | Fixed missed rename for token removal method name change | -1/+1 | ||
| 2020-04-01 | Add TCD to whitelist | -0/+1 | ||
| The Coding Den is a language agnostic community that's been around for years with over 12000 members. I think we can allow that invite in our community. | ||||
| 2020-03-31 | (Infraction Edit): Changed already expired and no reason provided sentence. | -3/+1 | ||
| Co-Authored-By: Mark <[email protected]> | ||||
| 2020-03-31 | (Infraction Edit): Don't change infraction when user try modify duration of ↵ | -0/+5 | ||
| infraction that is already expired and reason not specified. | ||||
| 2020-03-31 | (Tags): Removed unnecessary `send_embed_with_trashcan` function due using ↵ | -23/+1 | ||
| existing function. | ||||
| 2020-03-31 | (Tags): Moved to existing `wait_for_deletion` function instead using ↵ | -5/+17 | ||
| custom/new one. | ||||
| 2020-03-31 | (Tags): Added blank line between check function and `try:` block on ↵ | -0/+1 | ||
| `send_embed_with_trashcan` function. | ||||
| 2020-03-31 | (Tags): Fixed `TimeoutError` shadowing with `asyncio.TimeoutError`. | -2/+2 | ||
| 2020-03-31 | (Tags): Modified helper function `handle_trashcan_react` to ↵ | -7/+6 | ||
| `send_embed_with_trashcan`, applied to docstring and to command. | ||||
| 2020-03-30 | HelpChannels: set to enabled by default | -1/+1 | ||
| 2020-03-30 | ModLog: ignore update channel events for help channels | -1/+7 | ||
| The edit causes two channel update events to dispatch simultaneously: one for the channel topic changing and one for the category changing. The ModLog cog currently doesn't support ignoring multiple events of the same type for the same channel. Therefore, the ignore was hard coded rather than using the typical ignore mechanism. This is intended to be a temporary solution; it should be removed once the ModLog is changed to support this situation. | ||||
| 2020-03-30 | HelpChannels: use constant names instead of default values in docstring | -6/+5 | ||
| 2020-03-30 | HelpChannels: fix typos in docstrings | -2/+2 | ||
| Co-Authored-By: Leon Sandøy <[email protected]> | ||||
| 2020-03-30 | Set unsilence permissions to inherit instead of true | -2/+2 | ||
| The "unsilence" action of the silence/hush command used `send_messages=True` when unsilencing a hushed channel. This had the side effect of also enabling send messages permissions for those with the Muted rule, as an explicit True permission apparently overwrites an explicit False permission, even if the latter was set for a higher top-role. The solution is to revert back to the `Inherit` permission by assigning `None`. This is what we normally use when Developers are allowed to send messages to a channel. | ||||
| 2020-03-30 | (Tags): Fixed trashcan handling check. | -2/+2 | ||
| 2020-03-30 | (Tags): Added trashcan handling to `!tags get` command. | -2/+4 | ||
| 2020-03-30 | (Tags): Added helper function `handle_trashcan_react` for tag response ↵ | -1/+21 | ||
| deletion handling. | ||||
| 2020-03-29 | HelpChannels: fix typo in docstring | -1/+1 | ||
| 2020-03-29 | BotCog: fix AttributeError getting a category for a DMChannel | -1/+1 | ||
| 2020-03-29 | HelpChannels: remove positions from element names | -127/+125 | ||
| There is no longer a reliance on static alphabetical position numbers. | ||||
| 2020-03-29 | HelpChannels: fix alphabetical sorting of dormant channels | -13/+22 | ||
| When a channel is moved, all channels below have their positions incremented by 1. This threw off the previous implementation which relied on position numbers being static. Co-authored-by: Sebastiaan Zeeff <[email protected]> | ||||
| 2020-03-29 | (Infraction Edit): Don't let change expiration when infraction already expired. | -1/+3 | ||
| 2020-03-29 | (PEP Command): Fixed comment about PEP 0 separately handling. | -2/+1 | ||
| 2020-03-29 | (PEP Command): Moved PEP 0 information to hard-coded strings from constants, ↵ | -18/+14 | ||
| moved PEP 0 sending to function. | ||||
| 2020-03-29 | (PEP Command): Moved icon URL to constant instead hard-coded string. | -2/+4 | ||
| 2020-03-28 | Increase syncer logging level | -1/+1 | ||
| 2020-03-28 | (Webhook Detection): Fixed grouping of regex, alert message content, ↵ | -9/+9 | ||
| docstrings, string formatting and URL hiding to show in logs. Co-Authored-By: Mark <[email protected]> | ||||
| 2020-03-28 | Use debug log level instead of warning in `post_user` | -1/+1 | ||
| 2020-03-28 | (PEP Command): Fixed comment of explanation of PEP 0 different processing. | -1/+2 | ||
| 2020-03-28 | (Webhook Detection): Renamed `url` variable to `redacted_url` to avoid ↵ | -2/+2 | ||
| confusion in `delete_and_respond` function. | ||||
| 2020-03-28 | (Webhook Detection): Fixed docstrings. | -2/+2 | ||
| 2020-03-28 | (Webhook Detection): Removed unnecessary URL hiding in `delete_and_respond`. | -5/+0 | ||
| 2020-03-28 | (Webhook Detection): Added grouping to RegEx compilation, removed ↵ | -13/+4 | ||
| unnecessary function `scan_message`, moved this content to `on_message` event. | ||||
| 2020-03-28 | Logging severity pass from review | -4/+4 | ||
| 2020-03-28 | (Webhook Detection): Call `on_message` instead repeating code. | -3/+1 | ||
| 2020-03-28 | (Webhook Detection): Fixed order of cog loading. | -1/+1 | ||
| 2020-03-28 | (Webhook Detection): Added `on_message_edit` listener for Discord Webhooks ↵ | -0/+7 | ||
| detecting. | ||||
| 2020-03-28 | (Webhook Detection): Alert message formatting changes, added `on_message` ↵ | -2/+9 | ||
| listener. | ||||
| 2020-03-28 | (Webhook Detection): Added URL returning to `scan_message` helper function. | -3/+4 | ||
| 2020-03-28 | (Webhook Detection): Created `delete_and_respond` helper function to handle ↵ | -2/+41 | ||
| Webhook URLs. | ||||
| 2020-03-28 | (Webhook Detection): Added `ModLog` fetching property. | -0/+6 | ||
| 2020-03-28 | (Webhook Detection): Added cog loading to __main__.py, created ↵ | -0/+10 | ||
| `scan_message` helper function to detect Webhook URL. | ||||
| 2020-03-28 | (Webhook Detection): Added webhook match regex. | -0/+4 | ||
