| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | [commands] Add Cog.description to get the clean docstring. | Rapptz | 2019-03-14 | 1 | -0/+9 | |
| | | ||||||
| * | [commands] Add Cog.qualified_name to query the specified cog name. | Rapptz | 2019-03-13 | 1 | -0/+5 | |
| | | ||||||
| * | Support path-like objects in Attachment.save. | Rapptz | 2019-03-13 | 1 | -5/+6 | |
| | | | | | Fix #1958 | |||||
| * | Add support for reading guild descriptions | Nadir Chowdhury | 2019-03-13 | 2 | -3/+10 | |
| | | | | Added `Guild.description` and `PartialInviteGuild.description`. | |||||
| * | Fix imports | Nadir Chowdhury | 2019-03-13 | 1 | -4/+4 | |
| | | | | | Removed unnecessary Object import. Added `snowflake_time` and `InvalidArgument` | |||||
| * | [commands] Properly handle typing.Optional as last positional parameter | Harmon | 2019-03-13 | 1 | -0/+2 | |
| | | ||||||
| * | Add Embed.copy to do a copy on an embed object. | Rapptz | 2019-03-13 | 1 | -0/+4 | |
| | | ||||||
| * | Add Embed.__len__ to query total character size of an embed. | Rapptz | 2019-03-13 | 1 | -0/+31 | |
| | | ||||||
| * | Expose Embed.from_data as Embed.from_dict | Rapptz | 2019-03-13 | 3 | -3/+17 | |
| | | | | | This is a breaking change. | |||||
| * | Handle type updates in TextChannel._update for news channels. | Rapptz | 2019-03-12 | 1 | -0/+1 | |
| | | ||||||
| * | [commands] Support staticmethod listeners and disallow them in commands | Rapptz | 2019-03-12 | 1 | -5/+18 | |
| | | ||||||
| * | Add Category.create_text_channel/Category.create_voice_channel (#1976) | Nadir Chowdhury | 2019-03-12 | 1 | -0/+14 | |
| | | | | Fixes #1971 | |||||
| * | [commands] Refactor quoted_word free function to a StringView method. | Rapptz | 2019-03-12 | 2 | -88/+85 | |
| | | | | | | Technically a breaking change, however this interface was not documented or guaranteed to exist. | |||||
| * | [commands] Separate view parsing errors from BadArgument. | Rapptz | 2019-03-12 | 3 | -6/+76 | |
| | | | | | | | | | This causes them to be raised from a new exception named ArgumentParsingError with 3 children for ease with i18n. This is technically a breaking change since it no longer derives from BadArgument, though catching UserInputError will prevent this change from affecting the user. | |||||
| * | Add exception hierarchy to the documentation. | Rapptz | 2019-03-12 | 5 | -3/+85 | |
| | | ||||||
| * | Revert default parameter use_cached of Attachment.save back to False. | Rapptz | 2019-03-10 | 1 | -1/+1 | |
| | | | | | Fix #1973 | |||||
| * | Fix volume command in basic voice example | Geroyuni | 2019-03-09 | 1 | -1/+1 | |
| | | | | source.volume takes floating point percentages, e.g. 1.0 for 100% | |||||
| * | Moved http.close to before _closed.set | NCPlayz | 2019-03-09 | 1 | -2/+1 | |
| | | ||||||
| * | Add support for guild banners | SnowyLuma | 2019-03-09 | 4 | -11/+86 | |
| | | | | | | | | | Document banner attribute of Guild and Invite Update discord/utils.py Co-Authored-By: SnowyLuma <[email protected]> | |||||
| * | Add support for guild descriptions | Tarek1337 | 2019-03-08 | 2 | -1/+4 | |
| | | ||||||
| * | Add support for guild news channels. | Rapptz | 2019-03-08 | 3 | -2/+14 | |
| | | ||||||
| * | Bump websockets version to 7.0 | Rapptz | 2019-03-08 | 1 | -1/+1 | |
| | | | | | Should be fine. Hopefully. Fix #1787 | |||||
| * | Remove outdated playlist.py example. | Rapptz | 2019-03-08 | 1 | -246/+0 | |
| | | | | | Fixes #1870 | |||||
| * | guild.py: change word in create_role's docstring | numbermaniac | 2019-03-08 | 1 | -1/+1 | |
| | | ||||||
| * | Small inconsistency in documentation | Skyweb | 2019-03-08 | 1 | -1/+1 | |
| | | | | :) | |||||
| * | Add github templates and CONTRIBUTING.md file. | Rapptz | 2019-03-08 | 5 | -0/+131 | |
| | | | | | Fix for #1685 | |||||
| * | Have use_cached=True by default for Attachment.save. | Rapptz | 2019-03-06 | 1 | -8/+8 | |
| | | | | | Also touch up the documentation a bit. | |||||
| * | Added cached saving for attachments | Maku | 2019-03-06 | 1 | -3/+9 | |
| | | | | | Updated docstring | |||||
| * | Fix non-working example in commands documentation. | Rapptz | 2019-03-06 | 1 | -1/+1 | |
| | | ||||||
| * | Don't reconnect during 4014/4015 in voice websocket. | Rapptz | 2019-03-05 | 1 | -1/+5 | |
| | | ||||||
| * | [commands] Allow passing of typing.Union into Greedy. Fix #1951 | Rapptz | 2019-03-03 | 1 | -1/+1 | |
| | | ||||||
| * | Add project URLs to setup.py | Rapptz | 2019-03-02 | 1 | -0/+4 | |
| | | ||||||
| * | Prevent AttributeError when closing HTTPClient early. | Rapptz | 2019-03-02 | 1 | -1/+2 | |
| | | ||||||
| * | Fix Signature for Greedy/Optional converters | Myst(MysterialPy) | 2019-03-02 | 1 | -1/+22 | |
| | | | | | Change Greedy to `[a]...` | `[a=1]...` | |||||
| * | Mock a ConnectionState object to fix wait=True errors in webhooks. | Rapptz | 2019-03-02 | 1 | -6/+37 | |
| | | | | | Fixes #1898 | |||||
| * | Properly clean-up file objects when necessary instead of instantly. | Rapptz | 2019-03-02 | 1 | -19/+25 | |
| | | | | | Fix #1770 | |||||
| * | [commands] Fix name clash overwriting T.__class__.__name__ | Rapptz | 2019-02-28 | 1 | -2/+2 | |
| | | | | | Fixes #1944 | |||||
| * | [commands] Allow Converter instances in Greedy. Fix #1939. | Rapptz | 2019-02-27 | 1 | -2/+2 | |
| | | ||||||
| * | [commands] Error out when someone passes plain Cog.listener decorator. | Rapptz | 2019-02-27 | 1 | -1/+5 | |
| | | | | | Should make this error easier to catch rather than silent failure. | |||||
| * | Fix typing for Channel.purge's limit kwarg. | Steve C | 2019-02-27 | 1 | -1/+1 | |
| | | | | PyCharm was throwing a fit when I set it to None. 😒 | |||||
| * | Prepare fix for aiohttp 4.0 breaking change with session creation. | Rapptz | 2019-02-27 | 1 | -1/+3 | |
| | | ||||||
| * | Update Member.joined_at on MESSAGE_CREATE and document it can be None. | Rapptz | 2019-02-27 | 2 | -3/+28 | |
| | | | | | Fixes #1638 | |||||
| * | [commands] Add support for stacking Cog.listener decorator. | Rapptz | 2019-02-27 | 1 | -2/+7 | |
| | | | | | Fix #1926 | |||||
| * | Fix Emoji.__hash__ being None. | Rapptz | 2019-02-26 | 1 | -2/+4 | |
| | | | | | | | When a type defines __eq__, Python removes its __hash__ function. Fixes #1933 | |||||
| * | Add new cog methods | NCPlayz | 2019-02-26 | 1 | -9/+17 | |
| | | | | | | | | | Added two new arguments to the parser, and updated defunct cog code. Remove debug remove print statement | |||||
| * | Update Japanese .po files. | Rapptz | 2019-02-24 | 4 | -192/+821 | |
| | | ||||||
| * | [commands] Fix special method detection for regular function objects. | Rapptz | 2019-02-24 | 1 | -3/+12 | |
| | | | | | Fixes #1920 | |||||
| * | [commands] Remove Bot.get_cog_commands | Rapptz | 2019-02-23 | 1 | -25/+0 | |
| | | ||||||
| * | [commands] Fix bug in behaviour in the cog inspection methods. | Rapptz | 2019-02-23 | 2 | -6/+11 | |
| | | ||||||
| * | Better jpeg detection in utils._get_mime_type_for_image | Rapptz | 2019-02-23 | 1 | -1/+1 | |
| | | | | | Fixes #1901 | |||||