aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* [tasks] Add support for explicit time parameterSebastian Law2021-05-092-32/+215
|
* Typehint WidgetJosh2021-05-093-40/+131
|
* [commands] Fix a minor grammar error in MaxConcurrencyReachedJay33322021-05-071-1/+1
|
* [commands] Add GuildChannelConvertersudosnok2021-05-073-11/+38
|
* Explicitly ignore legacy file reference errors in sphinx -n modeJosh2021-05-062-0/+30
|
* Simplify SnowflakeList type hintsRapptz2021-05-061-10/+2
|
* Typehint FileRapptz2021-05-061-7/+20
|
* Fix various reference issues in documentationJosh2021-05-0624-52/+106
| | | | Co-Authored-By: Riley Shaw <[email protected]>
* Typehint emoji classesRapptz2021-05-054-56/+89
|
* Fix SnowflakeList typingsRapptz2021-05-051-1/+16
|
* Fix typings in message.pyRapptz2021-05-051-5/+5
|
* Add Guild.fetch_channelRapptz2021-05-051-0/+45
|
* Add Permissions.manage_eventsRapptz2021-05-051-0/+8
|
* Type hint GuildChannel and don't make it a ProtocolRapptz2021-05-052-32/+153
| | | | This reverts GuildChannel back into a base class mixin.
* Type-hint object.pyJosh2021-05-051-3/+15
|
* Type hint colour.pyJosh2021-05-051-39/+51
|
* Make GuildChannel inherit SnowflakeJosh2021-05-051-1/+1
|
* Add discovery_splash and community field to Guild.editNadir Chowdhury2021-05-052-6/+76
|
* Fix AuditLogEntry.target being incorrect for bulk message deleteRapptz2021-05-041-0/+2
| | | | Fixes #6851
* [docs] remove mentions of bot only usabilitySebastian Law2021-05-043-12/+6
|
* Add get_user to the things intents.members affectspikaninja2021-05-031-0/+1
|
* Replace uses of Ellipsis as sentinels with utils.MISSINGJosh2021-05-034-11/+15
|
* Add changelog for v1.7.2Rapptz2021-05-021-0/+12
|
* Clarify Webhook.send return value documentationNoName2021-05-022-4/+4
|
* Add classproperty helper utilityRapptz2021-05-021-0/+9
| | | | This is apparently a 3.9+ only addition
* Add Client.create_dmRapptz2021-05-011-0/+28
|
* Fix supressing messages leading a 400 errorRapptz2021-05-011-1/+1
| | | | | This only makes it so allowed_mentions are passed if the message is authored by the bot itself.
* Reformat message.py fileRapptz2021-05-011-21/+71
|
* Add types to PartialMessageRapptz2021-05-011-23/+15
|
* Fix typings for utils._parse_ratelimit_headerRapptz2021-05-011-1/+2
| | | | A CIMultiDict is not a Dict but a Mapping
* Fix SyncWebhook exception case causing attribute errorsRapptz2021-05-011-0/+3
|
* Fix sending multipart data with SyncWebhookRapptz2021-05-011-4/+8
| | | | Fixes #6825
* Add typings for message related classesZomatree2021-05-012-89/+117
|
* Add fetch_invite with with_expirationNadir Chowdhury2021-05-013-20/+37
|
* Fix guild application command endpointsJoey van Langen2021-05-011-6/+6
|
* Add AuditLogChanges.rules_channel/public_updates_channelNadir Chowdhury2021-05-012-0/+26
|
* Add types for ApplicationCommandPermissions & coNadir Chowdhury2021-05-012-2/+70
|
* Clarify ClientUser.verified docsDavid2021-04-301-1/+1
|
* Fix grammar in the Guild.edit docstringMrKomodoDragon2021-04-301-2/+2
|
* [commands] Remove Flag related delimiter and prefix errorRapptz2021-04-301-3/+0
|
* [commands] Fix Generics causing other typing converters to failRapptz2021-04-301-3/+14
|
* Fix utils.MISSING not evaluating to True in implicit bool contextsRapptz2021-04-301-0/+3
|
* [commands] Fix Generic subcalsses used as a converterRapptz2021-04-291-0/+4
|
* fix AttributeError in Sticker.imageNadir Chowdhury2021-04-291-1/+1
|
* Add utils.MISSINGNadir Chowdhury2021-04-295-24/+20
|
* [commands] Update error message for Literal float/complexOlivia2021-04-271-1/+1
|
* [docs] Update notes for get_user and get_member pikaninja2021-04-272-2/+2
|
* Fix AttributeError in examplesapple502j2021-04-272-2/+2
|
* Split annotation resolution to discord.utilsRapptz2021-04-273-100/+106
|
* [commands] Disallow float/complex in Literal but allow NoneRapptz2021-04-271-1/+1
| | | | Type checkers (both mypy and pydantic) apparently don't like it