| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixed a typo in calls.py | JW | 2017-07-04 | 1 | -1/+1 |
| | | | | Suggested by libffi-dev-on on Discord. Changed Optiona into Optional | ||||
| * | Rename AsyncIterator.get to next to prevent shadowing. | Rapptz | 2017-07-04 | 4 | -13/+26 |
| | | |||||
| * | handle Game.name being None | khazhyk | 2017-07-03 | 1 | -1/+1 |
| | | | | | | | | | | re #221, Game.name can still be None, which will cause TypeError on str(game). Currently discord does not treat these weird statuses uniformly, with it showing as playing a game on mobile, but not playing a game on desktop. It may be useful to know users are in this weird state. | ||||
| * | [commands] fix unloading incorrect cogs | khazhyk | 2017-07-03 | 1 | -3/+6 |
| | | | | | | | unload_extension would incorrectly unload cogs/listeners of other extensions if the name of one was a prefix of another. | ||||
| * | [commands] clean up remove_cog documentation | khazhyk | 2017-07-03 | 1 | -3/+2 |
| | | | | remove_cog always returns None, even if the cog is found. | ||||
| * | Fix wrong order in migrating docs. | Rapptz | 2017-07-02 | 1 | -2/+2 |
| | | |||||
| * | Allow PartialReactionEmoji in add_reaction and remove_reaction. | Rapptz | 2017-07-02 | 2 | -3/+12 |
| | | |||||
| * | Fix Message.remove_reaction and Message.add_reaction taking in Reaction | Rapptz | 2017-07-02 | 1 | -4/+6 |
| | | |||||
| * | Bump requirements to aiohttp 2.2 and PyNaCl 1.1.2 | Rapptz | 2017-07-01 | 2 | -2/+2 |
| | | |||||
| * | [commands] Improve commands.when_mentioned_or documentation. | Rapptz | 2017-07-01 | 1 | -2/+19 |
| | | |||||
| * | Add when_mentioned and when_mentioned_or to the documentation. | Rapptz | 2017-07-01 | 1 | -0/+4 |
| | | |||||
| * | Add support for user flags in Profile. | Rapptz | 2017-06-30 | 4 | -6/+48 |
| | | |||||
| * | Typo in docstring for TextChannel.delete_messages | Rapptz | 2017-06-29 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in migrating page. | Rapptz | 2017-06-29 | 1 | -4/+4 |
| | | |||||
| * | Allow TextChannel.delete_messages to take lists of 0 or 1 element. | Rapptz | 2017-06-29 | 1 | -8/+22 |
| | | |||||
| * | [commands] Do not take up 'command' keyword-argument in Context.invoke. | Rapptz | 2017-06-27 | 1 | -3/+12 |
| | | | | | | It was annoying when commands would have a keyword-only argument named 'command', such as a help command or a disable command. | ||||
| * | [commands] Add parameter that failed in fall-back BadArgument error. | Rapptz | 2017-06-26 | 1 | -1/+1 |
| | | |||||
| * | Add Reaction.__str__ | Rapptz | 2017-06-26 | 1 | -1/+4 |
| | | |||||
| * | Properly sort roles and discard everyone role in Member.colour. | Rapptz | 2017-06-24 | 1 | -2/+4 |
| | | |||||
| * | Fix missing lazy logging format calls. | Rapptz | 2017-06-24 | 1 | -5/+5 |
| | | | | | Not sure how I missed these. | ||||
| * | Actually expose Message.webhook_id. | Rapptz | 2017-06-24 | 1 | -0/+1 |
| | | |||||
| * | [commands] Ensure that Context.command is the command in Command.can_run | Rapptz | 2017-06-21 | 1 | -17/+23 |
| | | | | | | | | | | Previously, Context.command was not guaranteed to be the actual command being checked if it can run. This could be troublesome when implementing help commands or when using the default help command. This new change allows at least for the guarantee that Context.command to be technically correct in Command.can_run. | ||||
| * | [commands] Add __global_check_once to list of cog functions. | Rapptz | 2017-06-20 | 2 | -0/+8 |
| | | |||||
| * | [commands] Add Bot.check_once for a global check that is called once. | Rapptz | 2017-06-20 | 2 | -12/+77 |
| | | | | | | | | There is a counterpart for this in cogs, called __global_check_once. This allows for predicates that would filter a command globally that do not necessarily require rechecking in the case of e.g. the help command such as blocking users or blocking channels. | ||||
| * | Fix passing None to afk_channel in Guild.edit. | Rapptz | 2017-06-19 | 1 | -3/+11 |
| | | |||||
| * | [commands] Try to use the proper name when conversion fails. | Rapptz | 2017-06-17 | 1 | -1/+6 |
| | | |||||
| * | Properly quote reason header so non-ASCII works in audit log reasons. | Rapptz | 2017-06-17 | 1 | -1/+2 |
| | | |||||
| * | Make checking for truth-ness of EmbedProxy easier. | Rapptz | 2017-06-16 | 1 | -0/+3 |
| | | |||||
| * | [commands] Fix cog error detection in the default global error handler. | Rapptz | 2017-06-13 | 1 | -1/+1 |
| | | |||||
| * | [commands] Don't display default error handler if a cog local exists. | Rapptz | 2017-06-12 | 1 | -2/+8 |
| | | |||||
| * | Fix format string in documentation. | Rapptz | 2017-06-12 | 1 | -1/+1 |
| | | |||||
| * | Downgrade PartialReactionEmoji to str in non-raw reaction events. | Rapptz | 2017-06-09 | 1 | -1/+4 |
| | | |||||
| * | Defer logging formatting until the logger is actually called. | Rapptz | 2017-06-09 | 6 | -19/+17 |
| | | | | | | This would cause unnecessary format calls even if you didn't have logging enabled. | ||||
| * | Implement "partial" message events. | Rapptz | 2017-06-09 | 7 | -26/+178 |
| | | | | | | These are events that get triggered regardless of the state of the message cache. Useful for getting data from before the bot was booted. | ||||
| * | Allow sending files list smaller than 2 elements in Messageable.send | BeatButton | 2017-06-07 | 1 | -4/+3 |
| | | | | | The previous restriction was unwarranted. | ||||
| * | Fix mixed order in migrating docs. | Rapptz | 2017-06-05 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add docstrings for extension loading. | Rapptz | 2017-06-05 | 1 | -0/+42 |
| | | |||||
| * | Fix AuditLogDiff.__iter__ to return an actual iterable. | Rapptz | 2017-06-04 | 1 | -1/+1 |
| | | | | | Fixes #589. | ||||
| * | Fix typing/history showing up twice in the documentation. | Rapptz | 2017-06-03 | 2 | -7/+7 |
| | | |||||
| * | Fix mistake in migrating docs. | Rapptz | 2017-06-02 | 1 | -1/+1 |
| | | |||||
| * | Log when a player's after function fails. | Rapptz | 2017-06-02 | 1 | -1/+4 |
| | | |||||
| * | Fix FAQ to showcase that there is a single parameter, the error. | Rapptz | 2017-06-02 | 1 | -1/+1 |
| | | |||||
| * | [commands] Allow inline advanced converters via classmethods. | Rapptz | 2017-06-01 | 1 | -4/+10 |
| | | | | | | That way you don't need to have, e.g. Foo and FooConverter and can do it inline via Foo instead. | ||||
| * | Minor fix in migrating page. | Rapptz | 2017-05-31 | 1 | -1/+1 |
| | | |||||
| * | Add some margin for supported operations sections. | Rapptz | 2017-05-31 | 1 | -0/+1 |
| | | |||||
| * | Support for sending a nonce. | Rapptz | 2017-05-31 | 2 | -6/+15 |
| | | |||||
| * | Don't assume the inviter is always there. | Rapptz | 2017-05-31 | 1 | -1/+4 |
| | | |||||
| * | Document Message.embeds and Message.attachments changes. | Rapptz | 2017-05-31 | 1 | -0/+3 |
| | | |||||
| * | Writing to files is 'wb' not 'rb'. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||
| * | Export Attachment class. | Rapptz | 2017-05-30 | 1 | -1/+1 |
| | | |||||