aboutsummaryrefslogtreecommitdiff
path: root/discord
Commit message (Collapse)AuthorAgeFilesLines
* Use non-underscore TypeVar in enum codeRapptz2021-04-061-3/+3
|
* Fix some regressions from create_task changeRapptz2021-04-062-2/+2
|
* Remove unused group functionalityRapptz2021-04-061-12/+0
|
* Reformat HTTPClient and add interaction endpointsRapptz2021-04-061-105/+484
|
* Make enum code work with typecheckersRapptz2021-04-061-12/+23
| | | | | This also makes it so invalid enum values fall back to a proxy type that still works similar to actual values.
* Add on_interaction event and Interaction class.Rapptz2021-04-064-0/+114
| | | | | This is the first pass at the functionality. It's currently a bit incomplete.
* Add support for setting application_idRapptz2021-04-062-0/+29
|
* [commands] Fix classmethod converters not working.Rapptz2021-04-051-7/+4
| | | | Protocols sure are annoying.
* [commands] Revert conversion code back to how it was originallyRapptz2021-04-051-8/+7
|
* [commands] Fix AttributeError for classes missing convert attributeToxicKidz2021-04-051-1/+1
|
* [commands] Fix logic in Cog.has_error_handler()Rapptz2021-04-051-1/+1
|
* [commands] Address incorrect use of subclass (from type perspective)Michael H2021-04-051-4/+5
| | | This is a follow up from #6641
* [commands] Add more type information to public API of convertersMichael H2021-04-051-18/+18
|
* Remove 3.6 check for `loop.shutdown_asyncgens()` Nadir Chowdhury2021-04-051-2/+1
|
* Use `asyncio.create_task` over `asyncio.ensure_future`Nadir Chowdhury2021-04-054-9/+9
|
* Remove fail-safe for retrieving all tasks Nadir Chowdhury2021-04-051-7/+1
|
* Use covariant TypeVar for protocolMichael H2021-04-051-1/+1
|
* [commands] Fix @classmethod converters Michael H2021-04-051-6/+9
|
* Fix versionadded not showing in docs for Attachment.content_typeLogan2021-04-051-1/+1
|
* Remove deprecated client methodsVaskel2021-04-051-50/+0
|
* Add discord.utils.utcnow() helper function to ease migrationRapptz2021-04-041-0/+15
|
* Remove special casing of MAX_ASYNCIO_SECONDS in sleep_untilRapptz2021-04-041-4/+0
| | | | This compatibility code goes away in Python versions greater than 3.7
* Convert datetimes to aware datetimes with UTC.Rapptz2021-04-0414-58/+80
| | | | | Naive datetimes will now be interpreted as local time throughout the library.
* Use typing.Protocol instead of abc.ABCMetaJames2021-04-043-88/+87
|
* Flatten AsyncIterator.flattenJames2021-04-041-42/+1
|
* Remove userbot functionalityRapptz2021-04-0415-1306/+59
| | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation.
* Remove asyncio.Task subclass in preference to task namesRapptz2021-04-041-17/+1
|
* Convert two missing places to f-stringsRapptz2021-04-042-2/+2
|
* Remove encoding header from generated codeRapptz2021-04-041-4/+1
|
* [commands] Use positional only parameter for Context.invokeRapptz2021-04-041-12/+2
|
* Modernize code to use f-stringsRapptz2021-04-0461-352/+237
| | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`.
* Version bump for developmentRapptz2021-04-041-2/+2
|
* Version bump to v1.7v1.7.0Rapptz2021-04-041-2/+2
|
* Add content_type to AttachmentZomatree2021-04-031-1/+6
|
* Guard for `None` in VocalGuildChannel.membersRapptz2021-04-031-1/+1
|
* [commands] Add missing versionadded on StoreChannelConverterRapptz2021-04-031-5/+7
|
* [commands] Add StoreChannelConverterDoggieLicc2021-04-031-0/+40
|
* Implement StageChannel and related methodsNadir Chowdhury2021-04-037-68/+411
|
* [docs] Add rtc_region parameter for Guild.create_voice_channelNadir Chowdhury2021-04-021-0/+5
|
* Implement voice region changing for voice channelsTarek2021-04-014-5/+34
|
* Add support for Permissions.request_to_speakRapptz2021-04-011-6/+23
|
* [docs] Fix fetch_members/guilds documentationNadir Chowdhury2021-03-312-6/+2
|
* Deprecate Client.logout apple502j2021-03-311-1/+4
|
* Raise error if position could not be resolved in GuildChannel.moveRapptz2021-03-301-3/+6
|
* Return early if no kwargs are given to GuildChannel.moveRapptz2021-03-301-0/+3
|
* Ignore moving category channels to another categoryRapptz2021-03-302-0/+6
|
* Add GuildChannel.move helper method to help with moving channelsRapptz2021-03-301-0/+114
| | | | | | Moving channels is seen as a complicated task, so hopefully this abstracts a lot of it for users. There is no bulk move helper yet since I'm unsure how the API for that should be.
* Add support for fail_if_not_exists in MessageReferenceLilly Rose Berner2021-03-301-6/+28
|
* [docs] copy signature from overridden and inherited methodsSebastian Law2021-03-294-18/+17
|
* [commands] Add support for stripping whitespace after the prefixRapptz2021-03-281-0/+10
| | | | This is configured with the strip_after_prefix option in `Bot.__init__`