| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add Client.delete_invite. | Rapptz | 2015-12-05 | 1 | -3/+33 |
| | | |||||
| * | Add Client.start and Client.run shortcuts. | Rapptz | 2015-12-05 | 1 | -0/+22 |
| | | |||||
| * | Add _is_logged_in to the constructor. | Rapptz | 2015-12-05 | 1 | -0/+1 |
| | | |||||
| * | Add invite management functions. | Rapptz | 2015-12-05 | 1 | -0/+134 |
| | | |||||
| * | Switch to NumPy style documentation. | Rapptz | 2015-12-04 | 5 | -67/+44 |
| | | |||||
| * | Add server management commands. | Rapptz | 2015-12-04 | 2 | -7/+158 |
| | | |||||
| * | Add enumerators instead of strings. | Rapptz | 2015-12-04 | 7 | -108/+231 |
| | | | | | Changes channel type, status and server region into 3.4 enums. | ||||
| * | Add channel management functions | Rapptz | 2015-12-04 | 1 | -0/+121 |
| | | |||||
| * | Add member management functions. | Rapptz | 2015-12-04 | 1 | -114/+365 |
| | | |||||
| * | Update README and setuputils related files to point to async version. | Rapptz | 2015-12-04 | 3 | -14/+34 |
| | | |||||
| * | Move async_client.py to client.py | Rapptz | 2015-12-04 | 3 | -2005/+531 |
| | | |||||
| * | Implement a bunch of other HTTP request functions. | Rapptz | 2015-12-04 | 2 | -17/+339 |
| | | |||||
| * | Add Forbidden and NotFound exceptions. | Rapptz | 2015-12-04 | 3 | -2/+26 |
| | | |||||
| * | Begin working on asyncio port. | Rapptz | 2015-12-04 | 6 | -25/+811 |
| | | |||||
| * | Point to the docs in the README and clear up notes on breaking changes | Rapptz | 2015-11-30 | 1 | -9/+11 |
| | | |||||
| * | Don't silently swallow ValueError thrown from on_channel_delete. | Rapptz | 2015-11-30 | 1 | -1/+2 |
| | | |||||
| * | Fix multiple CHANNEL_DELETE. Fixes #51. | Rapptz | 2015-11-30 | 1 | -2/+5 |
| | | |||||
| * | Use copy.copy instead of copy.deepcopy for on_message_edit. | Rapptz | 2015-11-30 | 1 | -1/+1 |
| | | |||||
| * | on_member_update now takes in the older member state as a parameter. | Rapptz | 2015-11-30 | 2 | -7/+15 |
| | | |||||
| * | on_status event now has the old game ID and old status as parameters. | Rapptz | 2015-11-30 | 2 | -2/+6 |
| | | |||||
| * | Miscellaneous documentation fixes. | Rapptz | 2015-11-30 | 2 | -2/+2 |
| | | |||||
| * | Provide server/channel id/name as Object if client not joined to server. | Khazhismel | 2015-11-29 | 1 | -6/+13 |
| | | |||||
| * | Version bump to v0.9.0v0.9.0 | Rapptz | 2015-11-28 | 1 | -2/+2 |
| | | |||||
| * | Message.channel's Object instance has an is_private attribute now. | Rapptz | 2015-11-28 | 1 | -1/+4 |
| | | | | | | | | | This was to allow for basic checks such as message.channel.is_private to succeed at the very least. It is a very small mitigation and not perfect since it doesn't have every attribute that PrivateChannel itself has. However you could retrieve the user info through the Message.author attribute. | ||||
| * | Add caveat note about Message.mention_everyone | Rapptz | 2015-11-28 | 1 | -0/+7 |
| | | |||||
| * | Switch to Sphinx RTD theme. | Rapptz | 2015-11-28 | 1 | -1/+1 |
| | | |||||
| * | Add some badges to the README. | Rapptz | 2015-11-28 | 1 | -0/+6 |
| | | |||||
| * | Add note about data classes instances. | Rapptz | 2015-11-28 | 1 | -1/+15 |
| | | |||||
| * | Add warning for Message.mentions order being non-deterministic. | Rapptz | 2015-11-28 | 1 | -0/+6 |
| | | |||||
| * | "An array" -> "A list" for documentation purposes. | Rapptz | 2015-11-28 | 2 | -5/+5 |
| | | |||||
| * | Remove afk_channel_id and replace it with afk_channel. | Rapptz | 2015-11-28 | 1 | -3/+4 |
| | | |||||
| * | Member.roles array now has the default role as the first element. | Rapptz | 2015-11-28 | 3 | -4/+6 |
| | | |||||
| * | Move server parsing code from Client to Server. | Rapptz | 2015-11-28 | 2 | -57/+59 |
| | | |||||
| * | Add new_member.py example to showcase messaging new members. | Rapptz | 2015-11-27 | 1 | -0/+18 |
| | | |||||
| * | discord.Server is a valid destination in Client.send_message & co. | Rapptz | 2015-11-27 | 1 | -5/+7 |
| | | |||||
| * | reply.py example now checks for self-authoring | Rapptz | 2015-11-27 | 1 | -0/+4 |
| | | |||||
| * | Document supported operations in discord.User | Rapptz | 2015-11-27 | 1 | -0/+12 |
| | | |||||
| * | Update to the new colours. | Rapptz | 2015-11-27 | 1 | -58/+58 |
| | | |||||
| * | Performance improvements in on_typing event. | Rapptz | 2015-11-27 | 2 | -10/+10 |
| | | |||||
| * | Add LoginFailure exception for a clearer failure in Client.login | Rapptz | 2015-11-27 | 3 | -2/+14 |
| | | | | | | The older HTTPException is not exactly the clearest thing for people who are new to programming or HTTP exceptions in general. | ||||
| * | Client.edit_message no longer checks for private channel. | Rapptz | 2015-11-27 | 1 | -4/+2 |
| | | |||||
| * | Add the message to the exception output. | Rapptz | 2015-11-27 | 1 | -0/+9 |
| | | |||||
| * | Document Client.run reconnection idiosyncrasy. | Rapptz | 2015-11-26 | 1 | -1/+8 |
| | | |||||
| * | Revert "GIF support for avatars" | Rapptz | 2015-11-26 | 1 | -2/+0 |
| | | | | | This reverts commit 9a5bb439ec9f6ab5d2fce7567452ca310736d688. | ||||
| * | GIF support for avatars | Rapptz | 2015-11-26 | 1 | -0/+2 |
| | | |||||
| * | Add support for uploading avatars. | Rapptz | 2015-11-26 | 2 | -2/+27 |
| | | |||||
| * | Move _null_event and _verify_successful_response to utils | Rapptz | 2015-11-26 | 2 | -39/+40 |
| | | | | | They might be used in other files in the future. | ||||
| * | Simplify examples to no longer use logging or Client.is_logged_in | Rapptz | 2015-11-26 | 4 | -32/+0 |
| | | | | | | | | | | | | The logging module is no longer required to get diagnostic output since we use `stderr` by default regardless of the logging module. Which means that the logging module will only give a more verbose output than is necessary. Client.is_logged_in checking is no longer necessary since all HTTP request handling now raise an exception if they fail so those chunks are also gone. | ||||
| * | Add Client.get_invite to turn a URL to an Invite object. | Rapptz | 2015-11-26 | 2 | -2/+31 |
| | | |||||
| * | Client.accept_invite and Client.register now accept invite IDs. | Rapptz | 2015-11-26 | 1 | -4/+5 |
| | | |||||