aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Examples now use Python 3.5. Remove echo.py example.Rapptz2016-01-068-80/+61
|
* [commands] Add CommandNotFound error.Rapptz2016-01-053-11/+22
|
* Add basic example bot showcasing the commands ext module.Rapptz2016-01-051-0/+51
|
* [commands] Add a way to remove commands.Rapptz2016-01-041-0/+19
|
* Use setuputils.find_package to find extension modules.Rapptz2016-01-041-2/+2
|
* Documentation improvements on using check decorator.Rapptz2016-01-041-2/+32
|
* Add missing import in commands core.Rapptz2016-01-041-0/+2
|
* Update license of files to 2016.Rapptz2016-01-0422-23/+23
|
* Initial implementation of commands extension module.Rapptz2016-01-047-0/+1069
|
* Revert "Use super() in classes that could be subclassed."Rapptz2016-01-043-3/+0
| | | | This reverts commit 948f565b430d80f782d0b7c264cc0b27aa1ec0b2.
* Use super() in classes that could be subclassed.Rapptz2016-01-043-0/+3
|
* Change permissions to remove the can_ prefix.Rapptz2016-01-034-75/+78
|
* Document more breaking changes in migrating file.Rapptz2016-01-031-0/+52
|
* Remove print statement from bytes check.Rapptz2016-01-011-1/+0
|
* Implement compressed READYRapptz2016-01-011-1/+10
|
* Actually send the payload data in Client.create_serverRapptz2015-12-311-1/+12
|
* Fix issue with add_roles and friends not working.Rapptz2015-12-301-2/+2
| | | | | Previously it stated that Role object is not serializable due to passing in Role objects rather than their IDs.
* Add logs to help debug some voice data.Rapptz2015-12-301-0/+2
|
* Maintain order in role related functions.Rapptz2015-12-302-9/+21
|
* utils.get now supports nested attribute retrieval.Rapptz2015-12-301-3/+15
|
* Changed cache check to be the login endpoint itself.Rapptz2015-12-291-19/+5
|
* Fix indentation errorRapptz2015-12-291-1/+1
|
* Add ability to move members to a different voice channel.Rapptz2015-12-291-0/+43
|
* Remove Client.voice_channelRapptz2015-12-291-4/+3
|
* Client.join_voice_channel now accepts an Object.Rapptz2015-12-291-0/+3
| | | | Fixes #62.
* Simplify parser event check with hasattr rather than tuples.Rapptz2015-12-291-9/+3
|
* Add missing ` in documentation for create_serverRapptz2015-12-291-1/+1
|
* ConnectionState is now constructed in Client.__init__.Rapptz2015-12-292-15/+15
| | | | | | This should reduce the amount of checks for None if someone doesn't want a websocket connection. The connection state is instead cleared rather than reconstructed.
* Raise ClientException if an unexpected websocket close happensRapptz2015-12-291-1/+5
|
* Message no longer upgrades if the channel is an ObjectRapptz2015-12-291-0/+3
|
* Client.create_invite now works without a websocket connectionRapptz2015-12-291-18/+18
|
* Client.get_invite now works without a websocket connectionRapptz2015-12-291-1/+4
|
* Client.email is now set when using the cacheRapptz2015-12-281-0/+1
|
* make ip/port voice packet logic more clearSteven Berler2015-12-271-8/+8
| | | | | | | Adds comments and also rewrites the logic in a way that is much easier to see what is going on. For example you can now easily see that the port is actually encoded in little endian (which is different from everything else).
* fix broken ip and port in voice clientSteven Berler2015-12-271-4/+6
| | | | | Also added debug logging to make it easier to debug errors in how the initial packet is parsed.
* Add missing argument in _rate_limit_helperKhazhismel2015-12-261-1/+1
|
* Added missing Member import to client.pySamSchlegel2015-12-241-0/+1
|
* Add game data class, replace game_id.Khazhismel2015-12-236-21/+90
|
* Mentions are now <@id> *only* - remove mentions array on send and edit messageKhazhismel2015-12-231-23/+4
|
* Insert options before pipe:1 in ffmpeg player, otherwise they are ignoredKhazhismel2015-12-231-2/+3
|
* Unflip kick/ban permission bitsabalabahaha2015-12-221-8/+8
|
* None author param in wait_for_message allows any authorKhazhismel2015-12-221-1/+4
|
* Fix README example code.Rapptz2015-12-201-2/+7
|
* Add guessing game example to showcase wait_for_message.Rapptz2015-12-191-0/+37
|
* Add voice playlist example code.Rapptz2015-12-191-0/+105
|
* Fix NameError with Permissions missing.Rapptz2015-12-191-2/+3
|
* Add background_task example to showcase background tasks.Rapptz2015-12-191-0/+32
|
* Rename some listeners to `wait_until_`.Rapptz2015-12-191-3/+3
| | | | Mainly login and ready listeners.
* Updated examples to use new properties.Rapptz2015-12-192-4/+4
|
* Delete messages from message cache when you leave the server.Rapptz2015-12-191-1/+9
|