| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Added VoiceClient.latency and VoiceClient.average_latency | Fwf | 2020-04-04 | 2 | -5/+39 | |
| | | | | | | This also implements the heartbeating a bit more consistent to the official Discord client. | |||||
| * | [commands] Implement `commands.before/after_invoke` | NCPlayz | 2020-04-04 | 2 | -8/+101 | |
| | | ||||||
| * | Fix documentation problem with color | Saurabh Chaturvedi | 2020-04-04 | 1 | -1/+4 | |
| | | | | | At readthedocs.io, for role `color`, it says "Returns the role colour. An alias exists under `color`". This PR fixes that to say "Returns the role color. An alias exists under `colour`". | |||||
| * | Version bump to v1.3.3v1.3.3 | Rapptz | 2020-04-04 | 1 | -2/+2 | |
| | | ||||||
| * | Add changelog for v1.3.3 | Rapptz | 2020-04-04 | 1 | -0/+13 | |
| | | ||||||
| * | Change default close code to 4000 instead of 1000. | Rapptz | 2020-04-04 | 3 | -3/+3 | |
| | | | | | | | | | | | This prevents our sessions from being invalidated by Discord which caused a lot of failures when resuming. This caused an unnecessary amount of IDENTIFYs to happen depending on the circumstances. Closes #2631 See also discord/discord-api-docs#1472 | |||||
| * | Fixed missing awaits in subclassed coros | DevilXD | 2020-04-04 | 1 | -1/+1 | |
| | | ||||||
| * | Don't add None to Member.activities tuple | jack1142 | 2020-04-04 | 2 | -2/+4 | |
| | | ||||||
| * | Add "FEATURABLE" in guild features. | PredaaA | 2020-04-04 | 1 | -0/+1 | |
| | | ||||||
| * | [commands] Fix a typo in the docstring of the internal _Semaphore class | s0lst1ce | 2020-04-04 | 1 | -1/+1 | |
| | | ||||||
| * | fixing the BaseActivity links | Glazed_Belmont | 2020-04-04 | 1 | -3/+3 | |
| | | ||||||
| * | Change package manager yum to dnf | Peter Levart | 2020-03-01 | 2 | -2/+2 | |
| | | ||||||
| * | Capitalize Python for consistency | Peter Levart | 2020-03-01 | 1 | -1/+1 | |
| | | ||||||
| * | Bump version to v1.3.2v1.3.2 | Rapptz | 2020-02-22 | 1 | -2/+2 | |
| | | ||||||
| * | Add changelog for v1.3.2 | Rapptz | 2020-02-22 | 1 | -0/+18 | |
| | | ||||||
| * | Suppress missing Content-Type headers when fetching content | Rapptz | 2020-02-22 | 1 | -2/+7 | |
| | | | | | Fixes #2572 | |||||
| * | Fix invalid format specifier in PartialWebhookState.__getattr__ | Sebastiaan Zeeff | 2020-02-22 | 1 | -1/+1 | |
| | | | | | | | | | | The message for the AttributeError raised by the __getattr__ method of the PartialWebhookState class is formatted using `str.format`. However, the placeholder contained a stray ":" before the !r specifier. This caused a ValueError("Invalid format specifier") to be raised whenever this method was called in lieu of the AttributeError that is intended to be raised. | |||||
| * | on_invite_create requires Manage Channels | the-white-light | 2020-02-22 | 1 | -0/+2 | |
| | | | | | Event on_invite_create (and presumably _delete) require Manage Channels permission. | |||||
| * | Fix Webhook.send returning an empty string when wait=False | Rapptz | 2020-02-16 | 1 | -2/+4 | |
| | | ||||||
| * | Fix crashes when Message.guild is Object | Rapptz | 2020-02-16 | 1 | -2/+2 | |
| | | ||||||
| * | Add discord.ChannelType.category to documentation | Deniz | 2020-02-16 | 1 | -0/+3 | |
| | | ||||||
| * | [commands] Raise when passing invalid permission keys in their checks | Rapptz | 2020-02-02 | 1 | -4/+24 | |
| | | ||||||
| * | Guard against the member data not being available in VOICE_STATE_UPDATE | Rapptz | 2020-02-01 | 1 | -1/+4 | |
| | | ||||||
| * | Better detection for Cloudflare related 429s. | Rapptz | 2020-02-01 | 1 | -1/+1 | |
| | | | | | | | | At some point Cloudflare started returning some JSON. I don't know how this JSON looks like. See #2544 | |||||
| * | Use member data from VOICE_STATE_UPDATE if not found in cache | Rapptz | 2020-02-01 | 1 | -0/+3 | |
| | | ||||||
| * | Bump waiting time of GUILD_CREATE stream by number of shards waited. | Rapptz | 2020-01-28 | 2 | -2/+4 | |
| | | | | | | 2 seconds might be too short and cause it to finish waiting while other shards are still IDENTIFYing. | |||||
| * | Version bump to v1.3.1v1.3.1 | Rapptz | 2020-01-26 | 1 | -2/+2 | |
| | | ||||||
| * | Add changelog for v1.3.1 | Rapptz | 2020-01-26 | 1 | -0/+19 | |
| | | ||||||
| * | Downgrade unknown event logging to DEBUG rather than WARNING | Rapptz | 2020-01-26 | 1 | -1/+1 | |
| | | | | | It's too noisy | |||||
| * | Explicitly check for guild object | Merlintor | 2020-01-26 | 1 | -1/+2 | |
| | | ||||||
| * | Document the new opus loading behaviour | Rapptz | 2020-01-25 | 1 | -0/+1 | |
| | | ||||||
| * | Import ABC from collections.abc instead of collections | Karthikeyan Singaravelan | 2020-01-25 | 1 | -1/+1 | |
| | | | | | This is for Python 3.9 compatibility. | |||||
| * | Fix warnings regarding invalid escape sequences. | Karthikeyan Singaravelan | 2020-01-25 | 1 | -1/+1 | |
| | | ||||||
| * | Add Python 3.8 classifier to setup.py | Myst(MysterialPy) | 2020-01-25 | 1 | -0/+1 | |
| | | | | | | Added `Programming Language :: Python :: 3.8` classifier to setup.py since Discord.py fully supports it without error or warning. | |||||
| * | Fix fetching invites on guilds the user is not in | Rapptz | 2020-01-25 | 1 | -1/+1 | |
| | | ||||||
| * | Remove extra backtick in CustomActivity docs | Snaptraks | 2020-01-24 | 1 | -1/+1 | |
| | | ||||||
| * | Documentation fixes (#2531) | Harmon | 2020-01-24 | 2 | -8/+8 | |
| | | | | | | * Fix indentation for versionadded for Team.members * Replace tabs with spaces in API Reference documentation | |||||
| * | Version bump to v1.3v1.3.0 | Rapptz | 2020-01-24 | 1 | -2/+2 | |
| | | ||||||
| * | Add example on subclassing commands.Context | Xua | 2020-01-24 | 1 | -0/+51 | |
| | | ||||||
| * | Mention that you can create Permissions via kwargs now | Rapptz | 2020-01-23 | 2 | -0/+5 | |
| | | ||||||
| * | Fixes and improvements for v1.3 documentation | Harmon | 2020-01-22 | 14 | -28/+122 | |
| | | | | | | | | | | * Add missing versionadded strings for v1.3 * Add missing versionchanged string for Message.edit * Consistently use versionadded for attributes * Consistently use versionchanged for parameters * Use versionchanged for Bot.is_owner * Fix references in v1.3 changelog * Improve grammar in v1.3 changelog | |||||
| * | 1.3.0 changelog: fetch_roles fetches roles, not members | Io Mintz | 2020-01-22 | 1 | -1/+1 | |
| | | ||||||
| * | One last superfluous .0 in versionadded | Rapptz | 2020-01-22 | 2 | -2/+2 | |
| | | ||||||
| * | Fix up some links and mention IDENTIFY change | Rapptz | 2020-01-22 | 1 | -1/+2 | |
| | | ||||||
| * | Add changelog for v1.3 | Rapptz | 2020-01-22 | 2 | -0/+117 | |
| | | ||||||
| * | Fix out of order files being sent in webhooks when there are 10 files. | Rapptz | 2020-01-22 | 1 | -1/+1 | |
| | | ||||||
| * | Minor documentation fixes | Rapptz | 2020-01-21 | 2 | -3/+3 | |
| | | ||||||
| * | Add missing coroutine header for sleep_until | Rapptz | 2020-01-21 | 1 | -1/+3 | |
| | | ||||||
| * | Improve usability of utils.sleep_until | Josh B | 2020-01-21 | 3 | -8/+9 | |
| | | | | | | | | | | Fix issue where sleeping for an extended period on python 3.5 would cause an exception Add sleep_until to API docs Add result argument to sleep_until | |||||
| * | [commands] Only clean semaphore when there are no waiters | Rapptz | 2020-01-21 | 1 | -1/+4 | |
| | | ||||||