aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* Add delete_after parameter to MessageChannel.sendRapptz2017-01-032-4/+18
|
* [commands] Remove send_ utility functions.Rapptz2017-01-032-184/+4
|
* [commands] First pass in making commands ext work again.Rapptz2017-01-033-10/+70
|
* Fix documentation to work.Rapptz2017-01-032-13/+31
|
* Absolute import some circular dependencies to appease Python 3.4.Rapptz2017-01-0314-88/+108
|
* Rename MessageChannel.send_message to send and unify interface.Rapptz2017-01-032-66/+44
| | | | This removes MessageChannel.upload.
* Remove no longer used functions in Client.Rapptz2017-01-031-1850/+1
|
* Add Message.clear_reactionsRapptz2017-01-031-0/+18
|
* Change dict value views into lists.Rapptz2017-01-033-27/+35
|
* Re-add support for embeds.Rapptz2017-01-032-5/+19
|
* Make Message.embeds to be based on discord.EmbedRapptz2017-01-031-5/+4
|
* Re-add support for reactions.Rapptz2017-01-036-88/+238
| | | | | We now store emojis in a global cache and make things like adding and removing reactions part of the stateful Message class.
* Rename try_insert_user to store_userRapptz2017-01-035-13/+13
|
* Make emojis and members stateful.Rapptz2017-01-036-10/+335
|
* Make roles and guilds stateful.Rapptz2017-01-033-4/+417
|
* Rename Server to Guild everywhere.Rapptz2017-01-0324-630/+632
|
* Stateful Message and remove Invite.xkcd since it is removed.Rapptz2017-01-033-16/+221
|
* Add MessageChannel.typing context manager for prolonged typing.Rapptz2017-01-032-0/+75
|
* Split channel types.Rapptz2017-01-0310-174/+715
| | | | | | | | | | | This splits them into the following: * DMChannel * GroupChannel * VoiceChannel * TextChannel This also makes the channels "stateful".
* [commands] Bot skip check now works with the new __eq__ changes.Rapptz2017-01-031-2/+5
|
* Slots use tuples instead now.Rapptz2017-01-037-8/+8
|
* Add some basic ABCs.Rapptz2017-01-032-1/+78
|
* Switch IDs to use int instead of strRapptz2017-01-0310-109/+114
|
* Remove Message.timestamp and make Message.channel_mentions lazy.Rapptz2017-01-031-46/+60
| | | | | | Message.timestamp is replaced with Message.created_at. This commit also affects how MESSAGE_UPDATE is handled by only assuming that two keys are provided rather than overwriting data with missing keys.
* Optimise VoiceState for memory.Rapptz2017-01-034-83/+76
| | | | | | Instead of storing one VoiceState per Member, only store them if necessary. This should bring down the number of instances significantly.
* Begin working on the rewrite.Rapptz2017-01-0311-242/+321
|
* Add ability to set opus encoder input signal type.Kyle Repinski2017-01-031-0/+19
|
* [commands] Bugfix on the teardown function call.PapyrusThePlant2017-01-011-1/+1
|
* Chunk every guild if it's a user bot.Rapptz2016-12-241-3/+4
| | | | | This also increases the timeout for chunking by 30 seconds for every chunk we're waiting for.