aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Removed 'Channels' import, unused.Gravatar xithrius2021-01-16-1/+1
|
* Merge branch 'master' into feat/F4zi/CommandSuggestionGravatar Xithrius2021-01-16-751/+58
|\
| * Merge pull request #1354 from python-discord/remove-unnomiation-reasonGravatar Xithrius2021-01-16-2/+1
| |\ | | | | | | Remove unwatch reason from the !nominate output
| | * Remove unwatch reason from the !nominate outputGravatar Matteo Bertucci2021-01-16-2/+1
| |/ | | | | | | As the watch reason can contain private information, we shouldn't share it with the whole staff.
| * Update discord.py to the 1.6 releaseGravatar MarkKoz2021-01-11-17/+27
| |
| * Merge pull request #1350 from python-discord/mbaruh/developerectomyGravatar Dennis Pham2021-01-10-720/+14
| |\ | | | | | | Annihilate all traces of Developer and Unverified roles
| | * Annihilate all traces of Developer and Unverified rolesGravatar mbaruh2021-01-11-720/+14
| |/
| * Make sure that users without the Developers role can use tag.Gravatar Matteo Bertucci2021-01-10-2/+2
| | | | | | | | | | We have a check in place to restrict tag usage to a certain role, but our default is the Developers role, and some users now don't have this code. This commit fixes this by using None as a default and adding a truth test in the check_accessibility method.
| * Upped duckpond threshold to 5Gravatar Boris Muratov2021-01-08-1/+1
| |
| * Merge pull request #1340 from python-discord/ks123/raw-fixGravatar Matteo Bertucci2021-01-04-2/+6
| |\ | | | | | | Add check does user have permission to get raw message and re-enable raw command
| | * Merge branch 'master' into ks123/raw-fixGravatar Matteo Bertucci2021-01-04-71/+131
| | |\ | | |/ | |/|
| * | Merge pull request #1152 from python-discord/Make_nomination_reason_optionalGravatar Dennis Pham2021-01-03-8/+8
| |\ \ | | | | | | | | Make nomination reason optional.
| | * \ Merge branch 'master' into Make_nomination_reason_optionalGravatar Dennis Pham2021-01-03-45/+60
| | |\ \ | | |/ / | |/| |
| * | | Merge PR #1345 - Update d.py to fix webhook message publishingGravatar Mark2021-01-03-45/+60
| |\ \ \
| | * | | Update discord.py to fix webhook message publishing.Gravatar Den42002021-01-01-45/+60
| |/ / / | | | | | | | | | | | | Related to #1342.
| | * | Removed 'Optional' import.Gravatar xithrius2021-01-02-1/+1
| | | |
| | * | Removed unnecessary debugging logs.Gravatar Xithrius2021-01-02-2/+0
| | | | | | | | | | | | Co-authored-by: Dennis Pham <[email protected]>
| | * | Set reason to default as an empty string.Gravatar Xithrius2021-01-02-5/+2
| | | | | | | | | | | | Co-authored-by: Dennis Pham <[email protected]>
| | * | No nominaton reason blank replaced by italic NoneGravatar xithrius2021-01-02-2/+4
| | | |
| | * | Rebased master into this branch.Gravatar xithrius2021-01-02-6460/+7705
| | |\ \ | | |/ / | |/| | | | | | The cogs folder no longer exists, but the merge command was able to automagically find the correct files to merge into. Nomination reason is now optional.
| | * | Fix import order to pass linting tests.Gravatar Eivind Teig2020-09-12-1/+1
| | | |
| | * | Update user cache after nomination reason edit.Gravatar Eivind Teig2020-09-12-1/+1
| | | |
| | * | Only show reason if it exist.Gravatar Eivind Teig2020-09-12-1/+4
| | | | | | | | | | | | | | | | Reduce the footer to not include reason if it does not exist.
| | * | Make nomination reason optional.Gravatar Eivind Teig2020-09-12-2/+2
| | | | | | | | | | | | | | | | | | | | We want to make the nominate command more attractive for our members of staff.
| | | * Update raw command no permission error messageGravatar ks1292020-12-28-1/+1
| | | | | | | | | | | | Co-authored-by: Xithrius <[email protected]>
| | | * Enable raw commandGravatar ks1292020-12-27-2/+2
| | | |
| | | * Add check does user can see channel in raw commandGravatar ks1292020-12-27-0/+4
| | | |
* | | | Only helpers and below now get command suggestionsGravatar xithrius2021-01-06-2/+2
| | | |
* | | | If user is a staff member, no command suggestions.Gravatar xithrius2021-01-05-6/+7
| | | |
* | | | Removed possibility of exception via walrus.Gravatar xithrius2021-01-02-16/+16
| | | |
* | | | Rebased after a long time of being abandonGravatar xithrius2021-01-02-8062/+19057
|\| | | | | | | | | | | | | | | Since the cogs folder has been removed, the error_handler and tag cogs had to be removed and transfer into their respective places in the exts folder.
| * | | Merge pull request #1334 from python-discord/bug/precommit-pycharmGravatar ks1292020-12-31-1/+1
| |\ \ \ | | | | | | | | | | Fix flake8 pre-commit hook running through PyCharm
| | * \ \ Merge branch 'master' into bug/precommit-pycharmGravatar ks1292020-12-31-297/+322
| | |\ \ \ | | |/ / / | |/| | |
| * | | | Merge pull request #1339 from python-discord/swfarnsworth/infoGravatar Dennis Pham2020-12-31-3/+3
| |\ \ \ \ | | | | | | | | | | | | `!user` command says if a user is "Verified", rather than "Pending"
| | * | | | "Pending: False" to "Verified: True" to agree with new semantics.Gravatar Steele2020-12-30-1/+1
| | | | | |
| | * | | | Merge branch 'master' of https://github.com/python-discord/bot into ↵Gravatar Steele2020-12-30-14/+59
| | |\ \ \ \ | | |/ / / / | |/| | | | | | | | | | swfarnsworth/info
| * | | | | Merge pull request #1016 from ks129/bug-fixesGravatar ks1292020-12-29-14/+59
| |\ \ \ \ \ | | |_|_|_|/ | |/| | | | Some bug fixes
| | * | | | Merge branch 'master' into bug-fixesGravatar ks1292020-12-29-554/+567
| | |\ \ \ \ | | |/ / / / | |/| | | |
| | * | | | Log info instead error for watchchannel consume task cancelGravatar ks1292020-12-17-1/+1
| | | | | |
| | * | | | Merge branch 'master' into bug-fixesGravatar ks1292020-12-17-55/+274
| | |\ \ \ \
| | * \ \ \ \ Merge branch 'master' into bug-fixesGravatar ks1292020-12-02-1079/+1215
| | |\ \ \ \ \
| | * | | | | | Remove unnecessary f-stringGravatar ks1292020-12-02-1/+1
| | | | | | | |
| | * | | | | | Fix removing extensions and cogs for bot shutdownGravatar ks1292020-12-02-3/+7
| | | | | | | |
| | * | | | | | Add failure message when applying infraction fails because user leftGravatar ks1292020-12-02-0/+2
| | | | | | | |
| | * | | | | | Remove second unnecessary parenthesisGravatar ks1292020-12-02-4/+2
| | | | | | | |
| | * | | | | | Log exception instead warning for unexpected HttpExceptionGravatar ks1292020-12-02-1/+1
| | | | | | | |
| | * | | | | | Fix user leaving from guild log grammarGravatar ks1292020-12-02-2/+4
| | | | | | | |
| | * | | | | | Merge NotFound caching with HttpException caching with status codeGravatar ks1292020-12-02-10/+4
| | | | | | | |
| | * | | | | | Merge branch 'master' into bug-fixesGravatar ks1292020-11-21-604/+931
| | |\ \ \ \ \ \
| | * | | | | | | Catch not found exception in schedulerGravatar ks1292020-11-07-15/+30
| | | | | | | | |