aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Update README to have a valid example.Rapptz2016-01-271-2/+1
* [commands] Fix typo on HelpFormatter.show_check_failure attribute.Rapptz2016-01-271-5/+5
* Try to make the pause/resume loop not busy.Rapptz2016-01-261-6/+9
* add ``headers`` option to create_ffmpeg_player()Alexey Glushko2016-01-261-3/+10
* Add and remove some of the on_socket_* events.Rapptz2016-01-253-49/+32
* HTTPException now has a text attribute if JSON is not available.Rapptz2016-01-252-6/+17
* [commands] Fix discord.Invite special case handling in parameters.Rapptz2016-01-241-10/+16
* [commands] Allow setting the bot error messages in the help command.Rapptz2016-01-231-4/+15
* [commands] Add Bot.help_attrs to customise the help command.Rapptz2016-01-232-4/+18
* [commands] Change Bot.pm_help to be an optional bool.Rapptz2016-01-231-4/+14
* Support changing owners in Client.edit_server.Rapptz2016-01-221-1/+11
* [commands] Add Command.no_pm attribute to block a command in PM.Rapptz2016-01-221-0/+10
* Fix PrivateChannel.permissions_for not having self parameter.Rapptz2016-01-221-1/+1
* Move Member.permissions_in to User.permissions_in.Rapptz2016-01-212-16/+16
* Update the unavailable guild's data when it becomes available.Rapptz2016-01-211-3/+4
* Change docstring for Client.send_message to point to a valid property.Rapptz2016-01-181-1/+1
* Unit correction in voice docstrings.Rapptz2016-01-181-2/+2
* Remove unneeded owner_id assignment.Rapptz2016-01-181-2/+0
* Support upcoming guild ownership transfership change.Rapptz2016-01-181-4/+3
* Update voice channel if we move to different channels.Rapptz2016-01-171-0/+4
* [commands] help command now uses the full name in the signature.Rapptz2016-01-171-3/+19
* [commands] Fix indentation error in commands.bot_has_role docstring.Rapptz2016-01-161-2/+3
* Raise a different exception if ffmpeg is not found in PATH.Rapptz2016-01-161-0/+2
* [commands] Add checks for checking bot roles and permissions.Rapptz2016-01-151-2/+38
* Use Queue instead of LifoQueue in LogsFromIterator.Rapptz2016-01-151-1/+1
* Fix IndexError in Client.move_member.Rapptz2016-01-151-1/+1
* Client.invites_from now returns a list instead of a generator.Rapptz2016-01-141-13/+12
* Add support for `async for` in Client.logs_from.Rapptz2016-01-142-33/+118
* [commands] Add on_command and on_command_completion events.Rapptz2016-01-141-1/+4
* Documentation fixes for Permissions related code.Rapptz2016-01-143-11/+11
* [commands] Change behaviour of consume rest to be more useful.Rapptz2016-01-141-7/+22
* [commands] Fix issue where Bot would raise if not given a description.Rapptz2016-01-141-1/+1
* [commands] Cleanup descriptions being passed.Rapptz2016-01-132-2/+2
* Proper exception chaining.Rapptz2016-01-133-7/+7
* Guild member add will include deaf and mute now, do not provide default valuesKhazhismel2016-01-121-1/+1
* Change member constructor to not rely on order of json data objectKhazhismel2016-01-121-7/+7
* Basic bot example now shows documenting for the built-in help command.Rapptz2016-01-121-5/+19
* [commands] Fix handling of nested subcommand help handling.Rapptz2016-01-121-5/+15
* [commands] Fix keyword-only case to actually do conversion.Rapptz2016-01-121-6/+11
* [commands] Support invoking the help command with a cog name.Rapptz2016-01-122-12/+43
* [commands] Initial implementation of help command.Rapptz2016-01-114-8/+377
* Handle cases where people put False-like values for game presences.Rapptz2016-01-113-6/+6
* Change internal update functions to have a leading underscore.Rapptz2016-01-115-9/+9
* [commands] Add Command.cog_name to get the cog name it belongs to.Rapptz2016-01-111-1/+7
* [commands] Add Command.clean_params to have nicer params.Rapptz2016-01-101-0/+18
* [commands] Remove all aliases if the main command is being deleted.Rapptz2016-01-101-1/+9
* Fix Client.remove_roles to actually remove roles.Rapptz2016-01-101-2/+5
* [commands] Strip arguments before searching for special cases.Rapptz2016-01-101-3/+4
* [commands] Proper cleanup of cogs.Rapptz2016-01-101-1/+3
* [commands] Add Group.invoke_without_command.Rapptz2016-01-101-10/+35