aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| | | * | | | Add linter exceptionGravatar Derek2019-01-08-1/+1
| | | | | | |
| | | * | | | Update method of obtaining last message to be simplerGravatar Derek2019-01-07-2/+1
| | | | | | |
| | | * | | | Fix off by oneGravatar Derek2019-01-07-1/+1
| | | | | | |
| | | * | | | Update method for mentioning users and channels to be more idiomaticGravatar Derek2019-01-07-6/+5
| | | | | | |
| | | * | | | Merge branch 'master' of https://github.com/python-discord/botGravatar Derek2019-01-07-1/+1
| | | |\ \ \ \ | |_|_|/ / / / |/| | | | | |
* | | | | | | Merge pull request #258 from python-discord/hemlock/Reminder_Deletion_MethodsGravatar S. Co12019-01-07-1/+1
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | Fixed Reminder Deletion
| * | | | | | Corrected the delete_reminder() method to use the correct _delete_reminder ↵Gravatar Daniel Brown2019-01-07-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | method(). Signed-off-by: Daniel Brown <[email protected]>
| | * | | | Add category constantGravatar Derek2019-01-07-1/+13
| | | | | |
| | * | | | Remove unnecessary return statementGravatar Derek2019-01-07-1/+1
| | | | | |
| | * | | | Update constraint on seek so it can't be less than 1Gravatar Derek2019-01-06-1/+1
| | | | | |
| | * | | | Change single quotes to double quotes for the sake of consistencyGravatar Derek2019-01-06-2/+2
| | | | | |
| | * | | | Add free commandGravatar Derek2019-01-06-0/+91
| |/ / / / |/| | | |
| | * | | reverting the lockfile, no changes neededGravatar Leon Sandøy2019-01-13-196/+166
| | | | |
| | * | | Adressing jchrists review commentsGravatar Leon Sandøy2019-01-13-113/+122
| | | | |
| | * | | Merge branch 'master' into user_command_improvementsGravatar Leon Sandøy2018-12-27-2/+2
| | |\ \ \
| | * \ \ \ Merge branch 'master' into user_command_improvementsGravatar Leon Sandøy2018-12-27-16/+33
| | |\ \ \ \
| | * | | | | Addressing jchrists review comments.Gravatar Leon Sandøy2018-12-27-83/+107
| | | | | | |
| | * | | | | Merge branch 'master' into user_command_improvementsGravatar Leon Sandøy2018-12-18-4/+5
| | |\ \ \ \ \
| | * | | | | | Update bot/cogs/information.pyGravatar Johannes Christ2018-12-18-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: heavysaturn <[email protected]>
| | * | | | | | Merge branch 'master' into user_command_improvementsGravatar Leon Sandøy2018-12-05-1/+1
| | |\ \ \ \ \ \
| | * | | | | | | Fixed the !user command so users can still use it if they target themselves. ↵Gravatar Leon Sandøy2018-12-05-31/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also restricted it to #bot-commands for anyone except mods and up.
| | | | | | | * | Fix bbmessage emoji pointing to incorrect IDGravatar sco12019-01-07-1/+1
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Merge pull request #251 from python-discord/invite-filter-dmGravatar S. Co12019-01-05-7/+55
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Invite filter DM & DMed invite modlog
| * | | | | | | | Use explicit channel mentionGravatar sco12019-01-05-1/+1
| | | | | | | | |
| * | | | | | | | Marginally smarter filter notification logicGravatar sco12019-01-05-11/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | Only check for a user notification for "filter" type filters
| * | | | | | | | Add notification strings for remaining filtersGravatar sco12019-01-05-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | Hardcode watch words filter notification to False since it's a watchlist. This logic should be reworked eventually so we ignore user notifications for watchlist type filters.
| * | | | | | | | Merge branch 'master' into invite-filter-dmGravatar sco12019-01-05-188/+318
| |\ \ \ \ \ \ \ \ | |/ / / / / / / / |/| | | | | | | |
* | | | | | | | | Merge pull request #252 from python-discord/pre-commitGravatar Chris Goes2019-01-04-176/+255
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Add pre-commit
| * | | | | | | | | Add pre-commit dev dependency & flake8 configurationGravatar sco12019-01-03-176/+255
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Relock pipenv Add pre-commit pipenv script
* | | | | | | | | Merge pull request #249 from python-discord/hemlock/codeblock_retributionGravatar Thomas Petersson2019-01-03-1/+2
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Hopefully the final fix to the code block on-edit deletion thing
| * \ \ \ \ \ \ \ \ Merge branch 'master' into hemlock/codeblock_retributionGravatar Thomas Petersson2019-01-03-2/+24
| |\ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #247 from python-discord/fix-paginator-indexerrorGravatar Sebastiaan Zeeff2019-01-03-2/+24
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Fix for the paginator raising IndexError when provided with an empty object to paginate
| * | | | | | | | | | Adding optional kwarg to raise Exception on empty paginator embed instead of ↵Gravatar SebastiaanZ2019-01-03-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sending empty embed
| * | | | | | | | | | Clarifying log.debug messages for empty embeds for both PaginatorsGravatar SebastiaanZ2019-01-03-2/+2
| | | | | | | | | | |
| * | | | | | | | | | Fixing empty LinesPaginator and ImagePaginator with '(nothing to display)' ↵Gravatar SebastiaanZ2019-01-03-0/+8
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and '(no images to display)' when called with empty container object
| * | | | | | | | | Added a log message to go along with messages bot messages being removed.Gravatar Daniel Brown2019-01-03-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Brown <[email protected]>
| * | | | | | | | | Hopefully the final fix to the code block on-edit deletion thingGravatar Daniel Brown2019-01-03-1/+1
|/ / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Brown <[email protected]>
* | | | | | | | | Merge pull request #229 from python-discord/defcon-channel-titleGravatar Chris Goes2019-01-02-9/+37
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Defcon channel topic auto-update
| * \ \ \ \ \ \ \ \ Merge branch 'master' into defcon-channel-titleGravatar Chris Goes2019-01-02-1/+1
| |\ \ \ \ \ \ \ \ \ | |/ / / / / / / / / |/| | | | | | | | |
| * | | | | | | | | Ignore defcon title change in modlog.Gravatar scragly2019-01-02-1/+6
| | | | | | | | | |
| * | | | | | | | | Fix timedelta days referenceGravatar sco12019-01-01-2/+2
| | | | | | | | | |
| * | | | | | | | | Merge branch 'master' into defcon-channel-titleGravatar Leon Sandøy2019-01-01-9/+6
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge branch 'master' into defcon-channel-titleGravatar Johannes Christ2018-12-30-81/+215
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Add missing awaitsGravatar sco12018-12-30-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | oops
| * | | | | | | | | | | Fix channel grabbing logicGravatar sco12018-12-28-2/+3
| | | | | | | | | | | |
| * | | | | | | | | | | Add defcon channel topic updatingGravatar sco12018-12-28-1/+23
| | | | | | | | | | | |
| * | | | | | | | | | | Add #defcon to channel constantsGravatar sco12018-12-28-0/+2
| | | | | | | | | | | |
| * | | | | | | | | | | Switch local color constants to PyDis' constantsGravatar sco12018-12-28-8/+6
| | |_|_|_|_|_|_|_|/ / | |/| | | | | | | | |
| | | | * | | | | | | Fix import orderGravatar sco12019-01-03-1/+1
| | | | | | | | | | |
| | | | * | | | | | | Move user notification bools to configGravatar sco12019-01-03-5/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Intentionally hardcode token notification, this is handled by the token remover cog Signed-off-by: sco1 <[email protected]>