| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Implementing GET '/channels/:id' & '/guilds/:id/channels' | NCPlayz | 2019-06-07 | 1 | -0/+7 |
| | | | | | Signed-off-by: NCPlayz <[email protected]> | ||||
| * | Add support for system channel flags | Rapptz | 2019-06-06 | 1 | -1/+2 |
| | | |||||
| * | Properly handle compute_prune_count in prune members endpoint. | Rapptz | 2019-05-30 | 1 | -1/+1 |
| | | |||||
| * | Add reason to TextChannel.create_webhook | Rapptz | 2019-04-18 | 1 | -2/+3 |
| | | | | | | The reason parameter does not work with webhook deletes or edits so they're not added. Probably a Discord bug. | ||||
| * | Internal consistency with message related HTTPClient methods | Rapptz | 2019-04-14 | 1 | -7/+7 |
| | | |||||
| * | Add compute_prune_count to Guild.prune_members | Rapptz | 2019-04-14 | 1 | -2/+3 |
| | | | | | Fix #2085 | ||||
| * | allow passing 0 for logs_from parameters | khazhyk | 2019-04-07 | 1 | -3/+3 |
| | | |||||
| * | Add fetch custom emoji, all custom emojis; Add user property to Emoji | NCPlayz | 2019-04-06 | 1 | -0/+6 |
| | | |||||
| * | Redesign asset retrieval in the library. | NCPlayz | 2019-04-06 | 1 | -4/+4 |
| | | | | | | | | | | | | Most assets now return a new class named `Asset`. This allows for the assets to be consistently saved via a `save` method instead of special casing for `Attachment`. `AppInfo` is no longer a namedtuple it is a fully documented dataclass, as well as having the state attached to it. Fixes #1997 | ||||
| * | Propagate Cloudflare 429 HTML text. | Rapptz | 2019-03-31 | 1 | -0/+4 |
| | | |||||
| * | Added functionality to edit user settings | CapnS | 2019-03-28 | 1 | -0/+3 |
| | | | | | | | | | | | | | Changing docs to fit other parts of the lib Co-Authored-By: CapnS <[email protected]> Removing Type Checking Made all of Rapptz's suggested changes Removing imports that are no longer needed | ||||
| * | Double underscore HTTPClient's internal session. | Rapptz | 2019-03-24 | 1 | -8/+8 |
| | | |||||
| * | Add support for guild widget | NCPlayz | 2019-03-19 | 1 | -0/+3 |
| | | |||||
| * | Expose Metadata | NCPlayz | 2019-03-19 | 1 | -0/+18 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added access to: * `/users/@me/guilds` * `/guilds/{guild_id}` * `/guilds/{guild_id}/members/{member_id}` BREAKING CHANGE: * `get_user_info` -> `fetch_user_info` to match naming scheme. Remove useless note Remove `reverse` and corresponding documentation Update documentation to reflect #1988 Rename `get_` HTTP functions to `fetch_` Breaking Changes: * `get_message` -> `fetch_message` * `get_invite` -> `fetch_invite` * `get_user_profile` -> `fetch_user_profile` * `get_webhook_info` -> `fetch_webhook` * `get_ban` -> `fetch_ban` Fix InviteConverter, update migrating.rst Rename get_message to fetch_message | ||||
| * | Take back ownership of files from aiohttp for retrying requests. | Rapptz | 2019-03-18 | 1 | -6/+10 |
| | | | | | Fix #1809 | ||||
| * | Add support for guild banners | SnowyLuma | 2019-03-09 | 1 | -1/+1 |
| | | | | | | | | | 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 | 1 | -1/+1 |
| | | |||||
| * | Prevent AttributeError when closing HTTPClient early. | Rapptz | 2019-03-02 | 1 | -1/+2 |
| | | |||||
| * | Prepare fix for aiohttp 4.0 breaking change with session creation. | Rapptz | 2019-02-27 | 1 | -1/+3 |
| | | |||||
| * | Expose more information from partial invites, along with counts. | Rapptz | 2019-02-12 | 1 | -2/+5 |
| | | | | | | | | | | | | | | This adds the following information. * `PartialInviteGuild` to replace `Object` patching * `PartialInviteChannel` to replace `Object` patching * Invite.approximate_member_count and Invite.approximate_presence_count The new partial objects provide better documentation on what is expected when you fetch random invites. Fixes #1830 | ||||
| * | Use non-deprecated method of acquiring lock | Toby Harradine | 2019-02-06 | 1 | -1/+1 |
| | | |||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Allow additional parameters on channel creation | Tyler | 2019-01-28 | 1 | -7/+6 |
| | | |||||
| * | Log rate limit hits into WARNING instead of INFO. | Rapptz | 2018-12-27 | 1 | -2/+2 |
| | | |||||
| * | Add support for explicit_content_filter in Guild.edit | Rapptz | 2018-12-17 | 1 | -2/+3 |
| | | |||||
| * | Added User.mutual_friends() | CapnS | 2018-12-14 | 1 | -0/+3 |
| | | |||||
| * | Add support for default notification level in audit logs and Guild.edit | Rapptz | 2018-11-25 | 1 | -1/+1 |
| | | |||||
| * | [lint] Fix import order | Hornwitser | 2018-11-24 | 1 | -4/+5 |
| | | | | | | Reorder imports to be consistenly grouped by standard library, third party library, and local modules in that order thoughout the library. | ||||
| * | [lint] Remove redundant paranthesis | Hornwitser | 2018-11-24 | 1 | -1/+1 |
| | | | | | | Remove redundant parenthisis around await expressions. Left over from f25091ef. | ||||
| * | [lint] Rename exception variables to exc | Hornwitser | 2018-11-24 | 1 | -7/+7 |
| | | | | | | Use the more explicit (and common) exc instead of e as the variable holding the exception in except handlers. | ||||
| * | [lint] Remove redundant exception variables | Hornwitser | 2018-11-24 | 1 | -1/+1 |
| | | | | | | | Use bare raise statement when reraising the exception that occured, and remove unused exception variables. Also remove a pointless exception handler in discord.opus. | ||||
| * | Add support for Discord's slow mode. | Rapptz | 2018-09-14 | 1 | -1/+2 |
| | | | | | | | | Adds the following: * `slowmode_delay` for `TextChannel.edit` * `slowmode_delay` attribute for `TextChannel` | ||||
| * | Added hypesquad house functionality | mental | 2018-08-22 | 1 | -0/+7 |
| | | |||||
| * | [lint] Fix incorrect and inconsistent whitespace | Hornwitser | 2018-08-22 | 1 | -11/+8 |
| | | | | | Adjust whitespace to be consistent with the rest of the library. | ||||
| * | [lint] Remove unused imports | Hornwitser | 2018-08-22 | 1 | -1/+0 |
| | | | | | Left over from various refactoring and rewrites. | ||||
| * | Implement roles kwarg for guild.create_custom_emoji and emoji.edit | PikalaxALT | 2018-08-22 | 1 | -4/+6 |
| | | |||||
| * | Make TextChannel.create_webhook name parameter mandatory. | Rapptz | 2018-07-20 | 1 | -4/+4 |
| | | |||||
| * | Drop support for Python 3.4 and make minimum version 3.5.2. | Rapptz | 2018-06-10 | 1 | -38/+25 |
| | | |||||
| * | Add support for getting individual ban entries | slice | 2018-05-07 | 1 | -0/+3 |
| | | |||||
| * | Add missing coroutine decorator to HTTPClient.get_attachment | Rapptz | 2018-02-26 | 1 | -0/+1 |
| | | | | | Fixes #1104 | ||||
| * | Use the proper endpoint for removing your own reaction. | Rapptz | 2017-12-21 | 1 | -0/+5 |
| | | |||||
| * | Add Client.clear to clear the bot's internal state to a clean slate. | Rapptz | 2017-12-16 | 1 | -0/+4 |
| | | | | | In case you want to have some external restart loop. | ||||
| * | Fix URI quoting in Route. | Rapptz | 2017-10-24 | 1 | -1/+1 |
| | | |||||
| * | Quote all Route params | Gorialis | 2017-10-20 | 1 | -1/+1 |
| | | |||||
| * | Reimplement zlib streaming. | Rapptz | 2017-10-14 | 1 | -4/+12 |
| | | | | | | | | | | | | | | | This time with less bugs. It turned out that the crash was due to a synchronisation issue between the pending reads and the actual shard polling mechanism. Essentially the pending reads would be cancelled via a simple bool but there would still be a pass left and thus we would have a single pending read left before or after running the polling mechanism and this would cause a race condition. Now the pending read mechanism is properly waited for before returning control back to the caller. | ||||
| * | Revert "Implement zlib streaming for the gateway." | Rapptz | 2017-10-14 | 1 | -12/+4 |
| | | | | | This reverts commit 462191a08b5b2efb83f5bc32935dc546d35a744b. | ||||
| * | Implement zlib streaming for the gateway. | Rapptz | 2017-10-12 | 1 | -4/+12 |
| | | |||||
| * | Move pre-emptive message to DEBUG log level. | Rapptz | 2017-10-01 | 1 | -1/+1 |
| | | |||||
| * | Allow creating a channel with a category. | Rapptz | 2017-09-29 | 1 | -1/+4 |
| | | |||||
| * | Don't use Bulk Channel Edit endpoint if not actually moving channels. | Rapptz | 2017-09-24 | 1 | -1/+1 |
| | | | | | | | Should make the category-only edit cases more straightforward since it does not rely on other guilds in the cache, outside of the category itself. | ||||