aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Version bump to v0.9.2legacyRapptz2016-01-131-2/+2
* Fix warning message.v0.9.2Rapptz2016-01-131-6/+7
* Attempt to fix compressed READY to work in both Python2 and Python3.Rapptz2016-01-131-2/+7
* Warn that async is loomingKhazhismel2016-01-121-0/+10
* Use unordered kwargs when constructing member, don't provide duplicate value ...Khazhismel2016-01-122-8/+8
* Update README.mdRed_M2016-01-051-10/+10
* Compressed READYKhazhismel2016-01-011-0/+6
* Version bumped to v0.9.1v0.9.1Rapptz2015-12-241-2/+2
* Game information is now represented in a Game objectSamSchlegel2015-12-246-15/+73
* Don't silently swallow ValueError thrown from on_channel_delete.Rapptz2015-11-301-1/+2
* Fix multiple CHANNEL_DELETE. Fixes #51.Rapptz2015-11-301-2/+5
* Use copy.copy instead of copy.deepcopy for on_message_edit.Rapptz2015-11-301-1/+1
* on_member_update now takes in the older member state as a parameter.Rapptz2015-11-302-7/+15
* on_status event now has the old game ID and old status as parameters.Rapptz2015-11-302-2/+6
* Miscellaneous documentation fixes.Rapptz2015-11-302-2/+2
* Provide server/channel id/name as Object if client not joined to server.Khazhismel2015-11-291-6/+13
* Version bump to v0.9.0v0.9.0Rapptz2015-11-281-2/+2
* Message.channel's Object instance has an is_private attribute now.Rapptz2015-11-281-1/+4
* Add caveat note about Message.mention_everyoneRapptz2015-11-281-0/+7
* Switch to Sphinx RTD theme.Rapptz2015-11-281-1/+1
* Add some badges to the README.Rapptz2015-11-281-0/+6
* Add note about data classes instances.Rapptz2015-11-281-1/+15
* Add warning for Message.mentions order being non-deterministic.Rapptz2015-11-281-0/+6
* "An array" -> "A list" for documentation purposes.Rapptz2015-11-282-5/+5
* Remove afk_channel_id and replace it with afk_channel.Rapptz2015-11-281-3/+4
* Member.roles array now has the default role as the first element.Rapptz2015-11-283-4/+6
* Move server parsing code from Client to Server.Rapptz2015-11-282-57/+59
* Add new_member.py example to showcase messaging new members.Rapptz2015-11-271-0/+18
* discord.Server is a valid destination in Client.send_message & co.Rapptz2015-11-271-5/+7
* reply.py example now checks for self-authoringRapptz2015-11-271-0/+4
* Document supported operations in discord.UserRapptz2015-11-271-0/+12
* Update to the new colours.Rapptz2015-11-271-58/+58
* Performance improvements in on_typing event.Rapptz2015-11-272-10/+10
* Add LoginFailure exception for a clearer failure in Client.loginRapptz2015-11-273-2/+14
* Client.edit_message no longer checks for private channel.Rapptz2015-11-271-4/+2
* Add the message to the exception output.Rapptz2015-11-271-0/+9
* Document Client.run reconnection idiosyncrasy.Rapptz2015-11-261-1/+8
* Revert "GIF support for avatars"Rapptz2015-11-261-2/+0
* GIF support for avatarsRapptz2015-11-261-0/+2
* Add support for uploading avatars.Rapptz2015-11-262-2/+27
* Move _null_event and _verify_successful_response to utilsRapptz2015-11-262-39/+40
* Simplify examples to no longer use logging or Client.is_logged_inRapptz2015-11-264-32/+0
* Add Client.get_invite to turn a URL to an Invite object.Rapptz2015-11-262-2/+31
* Client.accept_invite and Client.register now accept invite IDs.Rapptz2015-11-261-4/+5
* Handle TYPING_START event.Rapptz2015-11-242-2/+34
* Merge send_raw_file and send_fileRapptz2015-11-211-35/+32
* Fix annoying lack of parenthesis at end of HTTPExceptionRapptz2015-11-201-1/+1
* Use try-except instead of checking for membership.Rapptz2015-11-202-9/+18
* Allow sending raw file objects in memory with client.send_raw_fileRed_M2015-11-201-0/+32
* Add send_typing command to allow sending typing updates.Khazhismel2015-11-191-0/+18