aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Use actual viewport tag with initial-scale set to 1Rapptz2020-12-181-1/+1
|
* Add fixed header links, fix some parts of mobile UIJens Reidel2020-12-181-5/+23
| | | | | | | | Dynamic content width equal to old one if on 1080p Fix mobile view Disable fixed header on mobile
* Bump Sphinx to 3.0.3Rapptz2020-12-181-2/+2
|
* make documentation sphinx 3.x compatibleRiley Shaw2020-12-181-1/+2
|
* Move table JS outside of scrollingRapptz2020-12-181-7/+8
|
* Bump Sphinx to 2.4.4Rapptz2020-12-181-1/+1
|
* Add attributetable and add some class-level sections.Rapptz2020-12-185-4/+440
| | | | | The extensions have yet to receive this treatment and CSS needs work, but for now this is fine.
* Add support for Member.pending boolean attributeRapptz2020-12-181-1/+13
|
* [commands] max_concurrency comes before cooldownsRapptz2020-12-171-3/+3
| | | | Fix #6172
* Add versionadded string for Emoji.url_asRapptz2020-12-171-2/+4
|
* Add Emoji.url_asDaggy12342020-12-172-4/+50
|
* [tasks] Fix a typo in documentationRapptz2020-12-141-1/+1
|
* [tasks] Add support for manually calling the wrapped coroutineRapptz2020-12-141-0/+20
|
* Update Windows opus binaries from 1.2.1 to 1.3.1 Devon R2020-12-122-0/+0
|
* Add in DecoderDevon R2020-12-121-36/+176
|
* Make File docstring raw for Python 3.9 compatibilityTicClick2020-12-111-1/+1
|
* Allow PartialMessage to work with DM channels as wellRapptz2020-12-112-9/+31
|
* Export to_message_reference_dict to make PartialMessage.reply workRapptz2020-12-111-0/+1
|
* Add operations you can do to a Message and PartialMessage to docsRapptz2020-12-111-1/+27
|
* Add PartialMessage to allow working with channel/message_id pairs.Rapptz2020-12-113-21/+147
| | | | Fix #5905
* Fix WebhookMessages docstrings Steve C2020-12-101-2/+2
| | | Silly danno
* Add support for editing and deleting webhook messages.Rapptz2020-12-094-15/+241
| | | | Fix #6058
* Revert Message.edit logic that deals with allowed_mentionsRapptz2020-12-081-26/+11
| | | | It made no sense here.
* Fix embed suppression when using client-wide allowed_mentions Lilly Rose Berner2020-12-081-1/+1
|
* [commands] Added in missing channel linksBen Skerritt2020-12-071-1/+1
|
* Fix wrong documented permission for GuildChannel.invites()Misa2020-12-071-1/+1
| | | | | | | I tested it just now, and manage_guild is not the permission you need to fetch invites from a given channel. You need manage_channels. Note that this isn't the same as Guild.invites(), which DOES use manage_guild.
* Add created_at property to PartialEmojiSteve C2020-12-061-1/+12
| | | Also fixed docstring for PartialEmoji.url
* [commands] Cog unload failures are swallowed.Rapptz2020-12-031-1/+4
| | | | Fix #6113
* Add support for chunking AsyncIterator objectsJosh2020-12-032-0/+45
|
* Update documentation for rules/updates channelsRocketRace2020-12-031-3/+3
|
* Add reaction roles exampleKippiii2020-12-031-0/+83
|
* Fix Team.icon_url_as format argument default valueBryan Forbes2020-11-281-1/+1
|
* [bug] call super constructor for `CustomActivity` to fix `created_at`Nadir Chowdhury2020-11-281-0/+1
|
* [chore] Remove redundant importsNadir Chowdhury2020-11-2810-22/+6
| | | This also removes the historical patch for NullHandler implemented in bbf1c54, as it has been available since Python 3.1.
* Fix `UnboundLocalError` for editing `public_updates_channel`Nadir Chowdhury2020-11-281-3/+3
|
* Change reply example to use repliesSNVMK2020-11-281-1/+1
|
* Fix Message.to_reference from the MessageReference changesRapptz2020-11-271-1/+3
|
* Correct docstring missing ]Rapptz2020-11-271-1/+1
|
* Added MessageReference.resolved attribute to get replied to messageRapptz2020-11-273-3/+73
|
* Allow MessageReference to be constructible by usersRapptz2020-11-272-11/+28
|
* Code cleanup involving enums and message repliesRapptz2020-11-274-101/+80
|
* Implement discord.Message.replyPikalaxALT2020-11-266-60/+229
|
* Fix `discord.RoleTags` resolutionNadir Chowdhury2020-11-261-1/+1
|
* Add a way to check if the websocket is rate limited.Rapptz2020-11-262-0/+35
| | | | | | | | | This is mainly for low level decision making for utilities that need to know whether to fetch a member by HTTP or to query through the websocket. The library already does this trick in some places so it's only fair that end users possess the same ability as well.
* Implement role tags.Rapptz2020-11-263-4/+108
| | | | | | | | | | | This comes with: * The RoleTags class * Role.is_premium_subscriber() * Role.is_bot_managed() * Role.is_integration() * Guild.self_role * Guild.premium_subscriber_role
* [commands] Allow setting description of cogsSebbyLaw2020-11-261-5/+15
|
* Fix preview_asset key name in StickerRapptz2020-11-231-1/+1
|
* [commands] Fetch user if an ID is passed and cache lookup fails.Rapptz2020-11-231-18/+29
|
* Sticker implementation cleanupRapptz2020-11-232-6/+11
|
* Ensure member key is not overwritten by author key in MESSAGE_UPDATERapptz2020-11-232-7/+17
| | | | | | | This also coerces the older message to take the member data from the newer message so the types are not incompatible. Fix #5999