aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add User.system and MessageFlags.urgentRapptz2019-12-212-1/+14
|
* Clean up flag code significantly.Rapptz2019-12-201-94/+74
| | | | This also fixes the False setting bug.
* Implement discord.MessageFlagsNCPlayz2019-12-206-125/+284
| | | | Refactor flags placement and use it for suppression.
* Default the Streaming name to the one passed for user created ones.Rapptz2019-12-191-1/+1
|
* Add `Guild.discovery_splash_url/_as`, `Guild.rules_channel`NCPlayz2019-12-191-1/+52
|
* [commands] Add predicate attribute to checks to get inner functionRapptz2019-12-181-0/+67
|
* Add support for YouTube StreamingNCPlayz2019-12-181-8/+13
|
* Add `RawReactionActionEvent.member`NCPlayz2019-12-172-2/+17
|
* Document the exception-suppressing behaviour of Message.deleteIo Mintz2019-12-171-1/+1
| | | | | This is already documented for Messageable.send's delete_after kwarg. PR #2481
* Wait 5 seconds before IDENTIFYing with an invalidated session.Rapptz2019-12-171-0/+1
|
* [commands] Make Greedy ignore parsing errors.Rapptz2019-12-171-16/+16
|
* Be more explicit in the utils.find example code.alexandrianlibrarian2019-12-171-1/+1
|
* Removed MEMBER_LIST_DISABLED, added PUBLIC_DISABLEDLeaf ▲2019-12-171-1/+1
|
* [commands] check if prefix is None in .pagesStarrFox2019-12-171-1/+1
|
* Add support for xsalsa20_poly1305_liteMatt Carey2019-12-171-0/+12
|
* [commands] Add guild-based permission checksXua2019-12-171-0/+48
|
* The port is a big endian unsigned short.Lorenzo2019-12-061-3/+1
| | | See https://github.com/discordapp/discord-api-docs/pull/1244
* Return 'username' instead of 'name'Merlintor2019-12-051-1/+1
|
* Fix KeyError for things without a created_atRapptz2019-12-051-6/+14
|
* Change websockets version to >=6.0, !=7Stefano Pigozzi2019-12-041-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`NCPlayz2019-12-041-3/+21
|
* Allow editing of overwrites in Channel.edit()CapnS2019-12-042-2/+43
|
* Fix more deprecation warnings for 3.8Rapptz2019-11-263-3/+3
|
* Implement `Webhook.type`NCPlayz2019-11-263-3/+28
|
* Fix typo in help.py docsNelluk2019-11-261-1/+1
| | | Changed "intend" to "indent"
* Print exception tracebacks in voice threadsImayhaveborkedit2019-11-262-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 typesJosh B2019-11-263-30/+150
|
* Fix more deprecation warningsRapptz2019-11-203-3/+6
|
* Fix one more remaining loop passing for 3.8 in a LockRapptz2019-11-201-1/+1
|
* Fix all deprecation warnings for 3.8Rapptz2019-11-209-43/+43
|
* Trailing whitespace in documentation.Rapptz2019-11-201-1/+1
|
* Fix regression with references being overwritten from the cache.Rapptz2019-11-201-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 importsRapptz2019-11-205-103/+150
|
* Revert "[tasks] Add Loop.exception for more reliable exception retrieval."Rapptz2019-11-191-14/+1
| | | | This reverts commit 7a8c9e66d9c43a539fb78107ce3f51f16c7f30a2.
* Revert "[tasks] Add support for explicit time parameter when running."Rapptz2019-11-191-92/+14
| | | | This reverts commit 9f822a1e6d904c4d7454ab77496b8a4f736073ab.
* Update requirements.txt for future updatefeature/ext-tasksTaewan-P2019-11-191-2/+2
|
* Fix OggStream "invalid header magic" at end of streamrkevin2019-11-191-0/+2
|
* Update regex to fetch URLs to match the official client.Rapptz2019-11-181-1/+1
| | | | Fixes #2420.
* Document that PartialEmoji.name can be NoneRapptz2019-11-181-2/+3
|
* Manually trigger GC in cases of large deallocations.Rapptz2019-11-181-0/+10
|
* Add changelog for 1.2.5Rapptz2019-11-181-0/+10
|
* animation field in reaction objects are not consistently availableRapptz2019-11-151-7/+7
|
* [commands] Add Command/Group.add/remove_checkRiley Shaw2019-11-151-0/+34
|
* Adjust BASE urls to have no trailing slash (consistency)Devon R2019-11-156-15/+15
|
* Return invites as https, various URL normalizationDevon R2019-11-158-18/+23
|
* Add view_guild_insights permissionJosh B2019-11-151-3/+13
|
* Added Optional to ClientUser.premium_type type hintWilly2019-11-151-1/+1
|
* Added Optional to VoiceState.channel typeWilly2019-11-151-1/+1
|
* Fix 'purge' method docstring.Naegin2019-11-151-1/+1
|
* macOS instead of OS XSoheab Malik2019-11-151-2/+2
| | | | | | | | | | | | | | | | ### Summary "In 2016, with the release of macOS 10.12 Sierra, the name was changed from OS X to macOS" source :: https://en.wikipedia.org/wiki/MacOS#macOS ### Checklist - [ ] If code changes were made then they have been tested. - [ ] I have updated the documentation to reflect the changes. - [ ] This PR fixes an issue. - [ ] This PR adds something new (e.g. new method or parameters). - [ ] This PR is a breaking change (e.g. methods or parameters removed/renamed) - [X] This PR is **not** a code change (e.g. documentation, README, ...)