| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Document guild permission checks | Rapptz | 2020-01-07 | 1 | -0/+4 |
| | | |||||
| * | Cache member.roles access to avoid surprising performance traps | Rapptz | 2020-01-06 | 1 | -2/+12 |
| | | | | | | Without the cache, repeated access could be accidentally quadratic or worse. | ||||
| * | [commands] Add check_any check to OR together various checks | Rapptz | 2020-01-06 | 3 | -0/+93 |
| | | |||||
| * | [commands] Document the changed Command.can_run behaviour | Rapptz | 2020-01-06 | 1 | -1/+5 |
| | | |||||
| * | Fix Member.mentioned_in returning True if in separate guilds | Rapptz | 2020-01-06 | 1 | -3/+5 |
| | | |||||
| * | [commands] Make Command.can_run process disabled commands | Rapptz | 2020-01-06 | 1 | -8/+6 |
| | | |||||
| * | Add `VoiceRegion.dubai` | NCPlayz | 2020-01-06 | 2 | -1/+5 |
| | | |||||
| * | Add Attachment.to_file to easily send an attachment. | Rapptz | 2020-01-03 | 1 | -0/+27 |
| | | | | | | | | | | | | | | | | The first thing someone will ask when someone sees this method is "Why doesn't `send` just accept `Attachment`?". This question is fair but it has an issue: exception propagation becomes confusing. When we save a file and write it to memory an HTTP request is sent similar to other API calls. Like all HTTP requests, these can fail. Since these requests denote failure using HTTPException, if it were to originate within `send` then it becomes confusing to know whether the attachment saving itself failed or whether the sending failed. For that reason, and to keep in-line with only 1 type of HTTP call per method, it doesn't make sense for `send` to support `Attachment`. | ||||
| * | Document that widget members may be incomplete. | Rapptz | 2019-12-29 | 1 | -0/+8 |
| | | | | | See https://github.com/discordapp/discord-api-docs/issues/1287 | ||||
| * | Remove unnecessary pass using regex in Message.clean_content | Rapptz | 2019-12-25 | 1 | -12/+1 |
| | | | | | The utils.escape_mentions should deal with it | ||||
| * | Use discord.utils.escape_mentions as last step of | Michael H | 2019-12-25 | 1 | -1/+4 |
| | | | | | discord.Message.clean_content | ||||
| * | Typo: AuditLogActionCategory | Christian Clauss | 2019-12-23 | 1 | -1/+1 |
| | | |||||
| * | Add Profile.system and Profile.team_user to query newer flags | Rapptz | 2019-12-21 | 3 | -3/+19 |
| | | |||||
| * | Add User.system and MessageFlags.urgent | Rapptz | 2019-12-21 | 2 | -1/+14 |
| | | |||||
| * | Clean up flag code significantly. | Rapptz | 2019-12-20 | 1 | -94/+74 |
| | | | | | This also fixes the False setting bug. | ||||
| * | Implement discord.MessageFlags | NCPlayz | 2019-12-20 | 6 | -125/+284 |
| | | | | | Refactor flags placement and use it for suppression. | ||||
| * | Default the Streaming name to the one passed for user created ones. | Rapptz | 2019-12-19 | 1 | -1/+1 |
| | | |||||
| * | Add `Guild.discovery_splash_url/_as`, `Guild.rules_channel` | NCPlayz | 2019-12-19 | 1 | -1/+52 |
| | | |||||
| * | [commands] Add predicate attribute to checks to get inner function | Rapptz | 2019-12-18 | 1 | -0/+67 |
| | | |||||
| * | Add support for YouTube Streaming | NCPlayz | 2019-12-18 | 1 | -8/+13 |
| | | |||||
| * | Add `RawReactionActionEvent.member` | NCPlayz | 2019-12-17 | 2 | -2/+17 |
| | | |||||
| * | Document the exception-suppressing behaviour of Message.delete | Io Mintz | 2019-12-17 | 1 | -1/+1 |
| | | | | | | This is already documented for Messageable.send's delete_after kwarg. PR #2481 | ||||
| * | Wait 5 seconds before IDENTIFYing with an invalidated session. | Rapptz | 2019-12-17 | 1 | -0/+1 |
| | | |||||
| * | [commands] Make Greedy ignore parsing errors. | Rapptz | 2019-12-17 | 1 | -16/+16 |
| | | |||||
| * | Be more explicit in the utils.find example code. | alexandrianlibrarian | 2019-12-17 | 1 | -1/+1 |
| | | |||||
| * | Removed MEMBER_LIST_DISABLED, added PUBLIC_DISABLED | Leaf ▲ | 2019-12-17 | 1 | -1/+1 |
| | | |||||
| * | [commands] check if prefix is None in .pages | StarrFox | 2019-12-17 | 1 | -1/+1 |
| | | |||||
| * | Add support for xsalsa20_poly1305_lite | Matt Carey | 2019-12-17 | 1 | -0/+12 |
| | | |||||
| * | [commands] Add guild-based permission checks | Xua | 2019-12-17 | 1 | -0/+48 |
| | | |||||
| * | The port is a big endian unsigned short. | Lorenzo | 2019-12-06 | 1 | -3/+1 |
| | | | | See https://github.com/discordapp/discord-api-docs/pull/1244 | ||||
| * | Return 'username' instead of 'name' | Merlintor | 2019-12-05 | 1 | -1/+1 |
| | | |||||
| * | Fix KeyError for things without a created_at | Rapptz | 2019-12-05 | 1 | -6/+14 |
| | | |||||
| * | Change websockets version to >=6.0, !=7 | Stefano Pigozzi | 2019-12-04 | 1 | -1/+1 |
| | | | | | Allow the usage of newer websockets versions, as the bug preventing the upgrade was fixed in websockets 8.0, while allowing the install of discord.py on Python 3.5. | ||||
| * | Add `Activity.created_at` | NCPlayz | 2019-12-04 | 1 | -3/+21 |
| | | |||||
| * | Allow editing of overwrites in Channel.edit() | CapnS | 2019-12-04 | 2 | -2/+43 |
| | | |||||
| * | Fix more deprecation warnings for 3.8 | Rapptz | 2019-11-26 | 3 | -3/+3 |
| | | |||||
| * | Implement `Webhook.type` | NCPlayz | 2019-11-26 | 3 | -3/+28 |
| | | |||||
| * | Fix typo in help.py docs | Nelluk | 2019-11-26 | 1 | -1/+1 |
| | | | | Changed "intend" to "indent" | ||||
| * | Print exception tracebacks in voice threads | Imayhaveborkedit | 2019-11-26 | 2 | -6/+17 |
| | | | | | Errors occurring within `AudioSource.read()` and `after()` functions will now display their tracebacks as if they were unhandled exceptions. | ||||
| * | Add new audit log entry types. Fix issue with unknown entry types | Josh B | 2019-11-26 | 3 | -30/+150 |
| | | |||||
| * | Fix more deprecation warnings | Rapptz | 2019-11-20 | 3 | -3/+6 |
| | | |||||
| * | Fix one more remaining loop passing for 3.8 in a Lock | Rapptz | 2019-11-20 | 1 | -1/+1 |
| | | |||||
| * | Fix all deprecation warnings for 3.8 | Rapptz | 2019-11-20 | 9 | -43/+43 |
| | | |||||
| * | Trailing whitespace in documentation. | Rapptz | 2019-11-20 | 1 | -1/+1 |
| | | |||||
| * | Fix regression with references being overwritten from the cache. | Rapptz | 2019-11-20 | 1 | -1/+3 |
| | | | | | | | | A proper fix for this would be to just request presence information as well since the chunk request would probably be more up to date than the current cache. However this delta requires a little bit more work and will be done later. | ||||
| * | Move PartialEmoji over to a new namespace to avoid circular imports | Rapptz | 2019-11-20 | 5 | -103/+150 |
| | | |||||
| * | Revert "[tasks] Add Loop.exception for more reliable exception retrieval." | Rapptz | 2019-11-19 | 1 | -14/+1 |
| | | | | | This reverts commit 7a8c9e66d9c43a539fb78107ce3f51f16c7f30a2. | ||||
| * | Revert "[tasks] Add support for explicit time parameter when running." | Rapptz | 2019-11-19 | 1 | -92/+14 |
| | | | | | This reverts commit 9f822a1e6d904c4d7454ab77496b8a4f736073ab. | ||||
| * | Update requirements.txt for future updatefeature/ext-tasks | Taewan-P | 2019-11-19 | 1 | -2/+2 |
| | | |||||
| * | Fix OggStream "invalid header magic" at end of stream | rkevin | 2019-11-19 | 1 | -0/+2 |
| | | |||||