aboutsummaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Add events for sniffing the WebSocket dataHornwitser2015-10-161-0/+37
| | | | | | | Add on_socket_raw_receive and on_socket_raw_send events for sniffing the data being received and sent on the websocket. Useful for debugging and logging websocket messages received and sent on the link to Discord's servers.
* Separate colour tuple into its own class.Rapptz2015-10-161-0/+3
| | | | | Also enumerate all the constant colours that Discord currently supports.
* Handle VOICE_STATE_UPDATE websocket events.Rapptz2015-10-151-0/+12
| | | | | | | | | | | This adds a lot of new attributes into the Member class such as giving a voice_channel that the user is currently connected to. Initially there was a plan to have a voice_members attribute in the Channel class but this proved to be difficult when it came to actually removing users from the voice channel as the response would return channel_id as null. Fixes #16.
* Handle GUILD_ROLE_UPDATE websocket events.Rapptz2015-10-151-0/+6
|
* Handle GUILD_ROLE_DELETE websocket events.Rapptz2015-10-151-3/+4
|
* Handle GUILD_ROLE_CREATE websocket events.Rapptz2015-10-151-0/+7
|
* Documentation cleanup.Rapptz2015-10-132-10/+38
| | | | | | | | Documented the new way of listening to events as well the new events that could be listened thanks to the recent refactor. Also uses the versionadded directive to document when something new is added to the library.
* Clarify logging and on_error documentationHornwitser2015-10-062-17/+47
| | | | | | | | Change the description of on_error to reflect that exceptions are logged and not output by default. Add a note about not configuring logging causing exceptions to be silently ignored in handlers in the API. And add some more explanations and a simpler configuration example to the logging description.
* Change behaviour of on_errorHornwitser2015-10-061-12/+22
| | | | | | | | | Change how the old style on_error event is called to match the new style on_error event. Both are now called in case an exception is raised in an user defined event handler, and will by default print the arguments of the event tha raised the exception and the traceback for the exception. In addition, overridding the on_error handler supresses this behaviour.
* Listen to CHANNEL_UPDATE events and add on_channel_updateRapptz2015-09-251-0/+6
|
* Add support for logging.Rapptz2015-09-162-0/+25
|
* Document discord.utils.find functionRapptz2015-09-141-0/+6
|
* Documentation fixes and version bump.v0.5.0Rapptz2015-09-051-2/+2
|
* Add on_error event for doing something about uncaught exceptions.Rapptz2015-09-051-0/+13
|
* Add on_member_update event.Rapptz2015-09-041-0/+6
|
* Add support for creating invites.Rapptz2015-09-041-0/+3
|
* Add on_server_create and on_server_delete events.Rapptz2015-09-031-0/+11
|
* Document exceptions and change conf.py version detection.v0.4.1Rapptz2015-08-282-2/+23
|
* Version bump to v0.4.0.v0.4.0Rapptz2015-08-271-2/+2
|
* Handle GUILD_MEMBER_REMOVE/GUILD_MEMBER_ADD events.Rapptz2015-08-271-0/+7
| | | | Thanks izy.
* on_status now takes only a member.Rapptz2015-08-271-9/+4
|
* Documentation update.Rapptz2015-08-261-2/+9
|
* Add logout support and on_disconnect event.Rapptz2015-08-241-0/+4
|
* Add support for channel creation events.Rapptz2015-08-231-2/+5
|
* Add on_channel_delete event.Rapptz2015-08-231-0/+7
|
* Sandbox events so exceptions being thrown don't break the client.Rapptz2015-08-231-1/+3
|
* Add on_status event.Rapptz2015-08-231-0/+11
|
* Rename project from pydiscord to discord.pyRapptz2015-08-225-17/+17
|
* Add on_message_edit event.Rapptz2015-08-211-1/+7
|
* Add on_message_delete event and Client.messages attribute.Rapptz2015-08-211-0/+6
|
* Initial commitRapptz2015-08-215-0/+812