| Commit message (Collapse) | Author | Age | Lines | ||
|---|---|---|---|---|---|
| ... | |||||
| | * | | | | | | | | | Add `build-tools` tag | 2020-11-26 | -0/+15 | ||
| | | |_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | Infoblock tag helping people install Microsoft Visual C++ Build Tools on Windows | ||||
| | | | * | | | | | | Added infraction edit aliases | 2020-11-28 | -2/+2 | ||
| | | | | | | | | | | |||||
| | | | * | | | | | | Add default mute duration | 2020-11-28 | -2/+12 | ||
| | | | | | | | | | | |||||
| | | | * | | | | | | Remove unnecessary shadow infractions | 2020-11-28 | -30/+0 | ||
| | |_|/ / / / / / |/| | | | | | | | |||||
| * | | | | | | | | Add myself to CODEOWNERS for CI files | 2020-11-27 | -1/+1 | ||
| | | | | | | | | | |||||
| * | | | | | | | | Add @Akarys42 to the codeowners | 2020-11-27 | -7/+14 | ||
| | |/ / / / / / |/| | | | | | | |||||
| * | | | | | | | Merge pull request #1294 - Help Channel Refactor | 2020-11-26 | -943/+1001 | ||
| |\ \ \ \ \ \ \ | |||||
| | * | | | | | | | Update help channels directory for code owners | 2020-11-26 | -1/+1 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Merge branch 'master' into feat/help/refactor | 2020-11-26 | -74/+82 | ||
| | |\| | | | | | | |||||
| | * | | | | | | | Help channels: document the return value of notify() | 2020-11-26 | -0/+3 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: don't check if task is done before awaiting | 2020-11-26 | -6/+4 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Awaiting a done task is effectively a no-op, so it's redundant to check if the task is done before awaiting it. Furthermore, a task is also considered done if it was cancelled or an exception was raised. Therefore, avoiding awaiting in such cases doesn't allow the errors to be propagated and incorrectly allows the awaiter to keep executing. | ||||
| | * | | | | | | | Help channels: remove how_to_get_help from excluded channels | 2020-11-26 | -3/+1 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The channel as moved out of this category. Delete the constant too since it isn't used anywhere else. Keep the excluded channels a tuple to conveniently support excluding multiple channels in the future. | ||||
| | * | | | | | | | Help channels: merge 2 imports into 1 | 2020-11-20 | -3/+2 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The import was an outlier compared to how the other modules were imported. It's nicer to keep the imports consistent. | ||||
| | * | | | | | | | Help channels: move all caches to a separate module | 2020-11-20 | -50/+36 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some need to be shared among modules, so it became redundant to redefine them in each module. | ||||
| | * | | | | | | | Help channels: wait for cog to be ready in deleted msg listener | 2020-11-20 | -0/+4 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: replace ready event with awaiting the init task | 2020-11-20 | -6/+4 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The event is redundant since awaiting the task accomplishes the same thing. If the task is already done, the await will finish immediately. If the task gets cancelled, the error is raised but discord.py suppress it in both commands and event listeners. | ||||
| | * | | | | | | | Help channels: remove obsolete function | 2020-11-20 | -5/+0 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: move cooldown/role functions to cooldown module | 2020-11-20 | -84/+104 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: move time functions to channel module | 2020-11-20 | -31/+39 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: move message functions to message module | 2020-11-20 | -178/+191 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: move pin functions to a separate module | 2020-11-20 | -47/+59 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: rename modules to use singular tense | 2020-11-20 | -11/+11 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Plural names imply the modules contain homogenous content. For example, "channels" implies the module contains multiple kinds of channels. | ||||
| | * | | | | | | | Help channels: move validation code to __init__.py | 2020-11-20 | -27/+29 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: move name and channel funcs to separate modules | 2020-11-20 | -79/+109 | ||
| | | | | | | | | | |||||
| | * | | | | | | | Help channels: remove get_clean_channel_name | 2020-11-20 | -16/+1 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Emoji are no longer used in channel names due to harsher rate limits for renaming channels. Therefore, the function is obsolete. | ||||
| | * | | | | | | | Help channels: move to a subpackage | 2020-11-20 | -10/+17 | ||
| | | | | | | | | | |||||
| * | | | | | | | | Update CODEOWNERS | 2020-11-26 | -2/+6 | ||
| | |/ / / / / / |/| | | | | | | |||||
| * | | | | | | | Merge pull request #1307 from ↵ | 2020-11-26 | -1/+1 | ||
| |\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | | | | | | | | | | | | | | | python-discord/sebastiaan/bugs/add-voiceban-to-scheduler-types Add voice_ban to supported types of the infraction scheduler | ||||
| | * | | | | | | Add voice_ban to supported types of the scheduler | 2020-11-26 | -1/+1 | ||
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `voice_ban` infraction was not listed as a supported type for the infraction scheduler. This meant that the scheduler did not schedule the expiry of `voice_ban` infractions after a restart. Those unlucky users were voice-banned perpetually. | ||||
| * | | | | | | Add Mark as a code owner of CI and Docker files | 2020-11-24 | -0/+5 | ||
| | | | | | | | |||||
| * | | | | | | Specify code ownership for Mark | 2020-11-24 | -0/+19 | ||
| | | | | | | | |||||
| * | | | | | | Update CODEOWNERS | 2020-11-24 | -2/+2 | ||
| | | | | | | | |||||
| | | * | | | | Remove unused get_latest_infraction helper method | 2020-11-30 | -14/+0 | ||
| | | | | | | | |||||
| | | * | | | | Refactor flow for automatically adding punctuation | 2020-11-30 | -8/+5 | ||
| | | | | | | | |||||
| | | * | | | | Fix unawaited coroutine in Infraction | 2020-11-30 | -1/+1 | ||
| | | | | | | | |||||
| | | * | | | | Merge branch 'master' into pure/feature/infraction-append | 2020-11-10 | -2056/+3188 | ||
| | | |\ \ \ \ | |||||
| | | * | | | | | Automatically add periods as visual buffers | 2020-11-08 | -6/+13 | ||
| | | | | | | | | |||||
| | | * | | | | | Refactor redundant code in infraction_edit | 2020-11-08 | -5/+4 | ||
| | | | | | | | | |||||
| | | * | | | | | Raise BadArgument in the Infraction converter | 2020-11-08 | -11/+4 | ||
| | | | | | | | | |||||
| | | * | | | | | Remove unnecessary noqa pragma for flake8 | 2020-11-08 | -2/+2 | ||
| | | | | | | | | |||||
| | | * | | | | | Refactor infraction_edit and infraction_append | 2020-10-03 | -32/+15 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This refactors the infraction_edit and infraction_append commands to utilize the Infraction converter. | ||||
| | | * | | | | | Add Infraction converter | 2020-10-03 | -0/+30 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds the Infraction converter to be used in infraction_edit and infraction_append. | ||||
| | | * | | | | | Invoke infraction_edit directly with method call | 2020-10-03 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Add bold styling for vertical bar separators | 2020-10-01 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Remove prefix when appending a reason | 2020-09-27 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Make vertical bar separators escaped | 2020-09-24 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Add visual buffer for appended reason | 2020-09-24 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Add "a" alias for append | 2020-09-24 | -1/+1 | ||
| | | | | | | | | |||||
| | | * | | | | | Fix unawaited coroutine | 2020-09-24 | -2/+2 | ||
| | | | | | | | | |||||
| | | * | | | | | Refactor routine for obtaining latest infraction | 2020-09-24 | -22/+14 | ||
| | | | | | | | | |||||
