aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Expand)AuthorAgeFilesLines
* Fix pagination of huge command help messages (> ~2,000 chars)slice2019-03-161-2/+12
* Consider news channel type as a TextChannelJeremy "EndenDragon" Zhang2019-03-161-1/+1
* Fix documentation linking issue in Messageables and ContextRapptz2019-03-162-31/+31
* [commands] Rename it to Context.send_help for consistency.Rapptz2019-03-161-2/+2
* [commands] Add Context.show_help helper to use the HelpCommand set.Rapptz2019-03-161-0/+67
* [commands] Optimise GroupMixin.get_command for the no space case.Rapptz2019-03-161-0/+4
* [commands] Assign context inside HelpCommand.prepare_help_commandRapptz2019-03-161-3/+9
* [commands] Add HelpCommand.get_bot_mapping helper.Rapptz2019-03-161-5/+11
* [commands] Return result of send_group_help and send_command_helpRapptz2019-03-161-2/+2
* Change superclass to subclass in some documentationKaeptm Blaubaer2019-03-162-5/+5
* [commands] Add back dm_help tribool for the provided HelpCommandsRapptz2019-03-161-0/+42
* [commands] Add commands.Paginator.__len__Rapptz2019-03-161-0/+10
* Fix Embed.to_dict to work with TZ aware datetime objects.Rapptz2019-03-151-1/+1
* [commands] Redesign HelpFormatter into HelpCommandRapptz2019-03-155-476/+1189
* [commands] Add Cog.description to get the clean docstring.Rapptz2019-03-141-0/+9
* [commands] Add Cog.qualified_name to query the specified cog name.Rapptz2019-03-131-0/+5
* Support path-like objects in Attachment.save.Rapptz2019-03-131-5/+6
* Add support for reading guild descriptionsNadir Chowdhury2019-03-132-3/+10
* Fix importsNadir Chowdhury2019-03-131-4/+4
* [commands] Properly handle typing.Optional as last positional parameterHarmon2019-03-131-0/+2
* Add Embed.copy to do a copy on an embed object.Rapptz2019-03-131-0/+4
* Add Embed.__len__ to query total character size of an embed.Rapptz2019-03-131-0/+31
* Expose Embed.from_data as Embed.from_dictRapptz2019-03-133-3/+17
* Handle type updates in TextChannel._update for news channels.Rapptz2019-03-121-0/+1
* [commands] Support staticmethod listeners and disallow them in commandsRapptz2019-03-121-5/+18
* Add Category.create_text_channel/Category.create_voice_channel (#1976)Nadir Chowdhury2019-03-121-0/+14
* [commands] Refactor quoted_word free function to a StringView method.Rapptz2019-03-122-88/+85
* [commands] Separate view parsing errors from BadArgument.Rapptz2019-03-122-6/+60
* Revert default parameter use_cached of Attachment.save back to False.Rapptz2019-03-101-1/+1
* Moved http.close to before _closed.setNCPlayz2019-03-091-2/+1
* Add support for guild bannersSnowyLuma2019-03-094-11/+86
* Add support for guild descriptionsTarek13372019-03-082-1/+4
* Add support for guild news channels.Rapptz2019-03-082-2/+11
* guild.py: change word in create_role's docstringnumbermaniac2019-03-081-1/+1
* Small inconsistency in documentationSkyweb2019-03-081-1/+1
* Have use_cached=True by default for Attachment.save.Rapptz2019-03-061-8/+8
* Added cached saving for attachmentsMaku2019-03-061-3/+9
* Don't reconnect during 4014/4015 in voice websocket.Rapptz2019-03-051-1/+5
* [commands] Allow passing of typing.Union into Greedy. Fix #1951Rapptz2019-03-031-1/+1
* Prevent AttributeError when closing HTTPClient early.Rapptz2019-03-021-1/+2
* Fix Signature for Greedy/Optional convertersMyst(MysterialPy)2019-03-021-1/+22
* Mock a ConnectionState object to fix wait=True errors in webhooks.Rapptz2019-03-021-6/+37
* Properly clean-up file objects when necessary instead of instantly.Rapptz2019-03-021-19/+25
* [commands] Fix name clash overwriting T.__class__.__name__Rapptz2019-02-281-2/+2
* [commands] Allow Converter instances in Greedy. Fix #1939.Rapptz2019-02-271-2/+2
* [commands] Error out when someone passes plain Cog.listener decorator.Rapptz2019-02-271-1/+5
* Fix typing for Channel.purge's limit kwarg.Steve C2019-02-271-1/+1
* Prepare fix for aiohttp 4.0 breaking change with session creation.Rapptz2019-02-271-1/+3
* Update Member.joined_at on MESSAGE_CREATE and document it can be None.Rapptz2019-02-272-3/+28
* [commands] Add support for stacking Cog.listener decorator.Rapptz2019-02-271-2/+7