aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix 404s in pins_from and create_role routes.Rapptz2017-01-121-2/+2
|
* Make Reaction.users return an async iterator.Rapptz2017-01-112-15/+117
|
* Fix NameError inside Messageable.get_messageRapptz2017-01-111-1/+1
|
* Rename NoMoreMessages to NoMoreItems.Rapptz2017-01-114-9/+12
|
* Allow HistoryIterator to be flattened into a list.Rapptz2017-01-112-9/+36
|
* Propagate event loop in Messageable.history.Rapptz2017-01-111-3/+4
|
* Remove extraneous unneeded hash calls.Rapptz2017-01-102-2/+2
|
* Fix NameError inside HTTPClient.edit_member.Rapptz2017-01-091-1/+1
|
* Update README example.Rapptz2017-01-091-23/+22
|
* Fix HTTP.application_info 404ing.Rapptz2017-01-091-1/+1
|
* Change version info to 1.0.0a0.Rapptz2017-01-092-2/+18
|
* Implement rate limit headers.Rapptz2017-01-091-131/+185
|
* Allow Messageable.send to work with non-truthy types.Rapptz2017-01-091-1/+1
|
* Simple parser for CHANNEL_PINS_UPDATEIan Salmons2017-01-092-0/+13
|
* Use CDN URL for Guild.icon_url.Rapptz2017-01-091-1/+1
|
* Return default avatar URL if an avatar is not given for User.avatar_urlRapptz2017-01-091-4/+7
| | | | Also use the CDN URL like Jake has always requested.
* Use CDN URL for default avatars.Rapptz2017-01-092-13/+7
|
* Fix typo in Guild.invitesRapptz2017-01-091-1/+1
|
* Add Guild.create_text_channel and Guild.create_voice_channel.Rapptz2017-01-081-0/+97
|
* Add missing fields to Embed.from_data()Ian Salmons2017-01-081-1/+1
|
* Allow uploading of GIFs for users.SunDwarf2017-01-081-0/+2
| | | | | | | Discord Nitro accounts can upload GIFs as avatars, so the image mimetype checker code should check for the GIF magic number too. Signed-off-by: SunDwarf <[email protected]>
* Add ability to edit guild invite splashes.Rapptz2017-01-081-0/+16
|
* [commands] Add AutoShardedBot counterpart to AutoShardedClient.Rapptz2017-01-082-62/+70
|
* VoiceChannel.voice_members is now computed when needed.Rapptz2017-01-083-23/+17
|
* Fix bug that caused Guild instances to be in VoiceChannel.voice_membersRapptz2017-01-081-1/+1
|
* Remove extraneous prints.Rapptz2017-01-081-2/+0
|
* Allow overriding the shard_ids used for initial shard launch.Rapptz2017-01-083-6/+22
|
* Add AutoShardedClient.change_presence.Rapptz2017-01-083-16/+72
|
* Change the way shards are launched in AutoShardedClient.Rapptz2017-01-082-35/+58
|
* Add Guild.chunked property.Rapptz2017-01-081-2/+16
|
* Implement AutoShardedClient for transparent sharding.Rapptz2017-01-079-31/+341
| | | | | This allows people to run their >2,500 guild bot in a single process without the headaches of IPC/RPC or much difficulty.
* Fix variable shadowing in READY parsing.Rapptz2017-01-051-4/+3
|
* Move global user cache to a WeakValueDictionary.Rapptz2017-01-043-3/+19
|
* Update examples to match the new rewrite API.Rapptz2017-01-037-123/+112
|
* Fix Messageable.typing context manager.Rapptz2017-01-032-8/+8
|
* Fix NameError when dealing with permission resolution.Rapptz2017-01-032-5/+10
|
* Fix bug that made member roles go missing.Rapptz2017-01-033-30/+22
|
* [commands] Don't use removed is_private attribute in core decorators.Rapptz2017-01-031-19/+14
|
* [commands] Fix help command from not working with recent changes.Rapptz2017-01-031-5/+5
|
* Make User and Member messageable.Rapptz2017-01-033-2/+52
|
* Change Messageable channel getter to be a coroutine.Rapptz2017-01-034-13/+23
|
* Move message creation to a factory method inside ConnectionState.Rapptz2017-01-0314-104/+94
|
* Move away from StateContext and use ConnectionState directly.Rapptz2017-01-034-28/+22
|
* Rename MessageChannel abc to Messageable.Rapptz2017-01-034-43/+62
|
* Add permission overwrites to GuildChannel.Rapptz2017-01-032-94/+106
|
* Move GuildChannel over to abc module.Rapptz2017-01-032-302/+266
|
* Remove chunks of the voice code to redesign later.Rapptz2017-01-032-134/+3
|
* Add Role.members to get every member with a role.Rapptz2017-01-031-0/+13
|
* Add useful repr to all data classes.Rapptz2017-01-0312-1/+48
|
* Fix handling of author update and missing type attribute in Message.Rapptz2017-01-031-4/+11
|