| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Ensure the auth cache file is not world readable. | Nelson Minar | 2016-03-02 | 1 | -1/+1 |
| | | |||||
| * | Clean up zombies | Khazhismel Kumykov | 2016-03-02 | 1 | -0/+2 |
| | | | | | | | self.process.communicate(timeout=0.100) will block zombies probably would be cleaned up anyways but in a non deterministic fashion by the garage collector | ||||
| * | Fix bug where playlist bot attempts to process replies in PMs. | shrx | 2016-03-02 | 1 | -10/+10 |
| | | |||||
| * | [commands] Fix NameError in bot_has_permissions. | Rapptz | 2016-03-02 | 1 | -1/+1 |
| | | |||||
| * | [commands] bot_has_permissions decorator actually checks for bot. | Rapptz | 2016-03-02 | 1 | -1/+1 |
| | | |||||
| * | Server.me is now a dynamic property to avoid outdated references. | Rapptz | 2016-03-01 | 1 | -1/+1 |
| | | |||||
| * | [commands] Do not swallow AttributeErrors raised by the setup function | Rapptz | 2016-02-24 | 1 | -4/+3 |
| | | |||||
| * | Fix bug where the everyone role was not being properly resolved. | Rapptz | 2016-02-24 | 1 | -2/+19 |
| | | | | | | | The permissions_for assumed that the everyone role would be the first element of the permission overwrites but this is not guaranteed so we have to guarantee it ourselves. | ||||
| * | Switch URLs from Client.delete_server and Client.leave_server. | Rapptz | 2016-02-23 | 1 | -2/+2 |
| | | |||||
| * | Add Client.delete_server. | Rapptz | 2016-02-23 | 1 | -2/+29 |
| | | |||||
| * | Change requirements.txt to use version 0.21.x of aiohttp. | Rapptz | 2016-02-19 | 1 | -1/+1 |
| | | |||||
| * | [commands] Helper functions now take *args and **kwargs. | Rapptz | 2016-02-18 | 1 | -30/+24 |
| | | |||||
| * | Client.send_file can now send content along with the message. | Rapptz | 2016-02-18 | 1 | -6/+16 |
| | | | | | | | There is a breaking change here. We have to change the filename parameter to be a keyword only argument so there are fewer errors and surprises. | ||||
| * | Add channel specific bitrates. | Rapptz | 2016-02-18 | 1 | -0/+3 |
| | | |||||
| * | Fix NameError issue in Client.send_file. | Rapptz | 2016-02-17 | 1 | -4/+2 |
| | | |||||
| * | Do not overwrite members that are already in cache during chunking. | Rapptz | 2016-02-17 | 1 | -1/+2 |
| | | |||||
| * | Switch to using ClientSession objects for aiohttp v0.21 | Rapptz | 2016-02-15 | 1 | -42/+42 |
| | | |||||
| * | Fix case when no chunks are necessary. | Rapptz | 2016-02-14 | 1 | -1/+4 |
| | | |||||
| * | Remove request_offline option. | Rapptz | 2016-02-14 | 4 | -23/+19 |
| | | |||||
| * | Update owner references when we get a chunk. | Rapptz | 2016-02-14 | 2 | -2/+7 |
| | | |||||
| * | Offline members are now added by default automatically. | Rapptz | 2016-02-14 | 3 | -16/+139 |
| | | | | | | This commit adds support for GUILD_MEMBERS_CHUNK which had to be done due to forced large_threshold requirements in the library. | ||||
| * | Handle case where PRESENCE_UPDATE adds members to cache. | Rapptz | 2016-02-13 | 1 | -21/+31 |
| | | | | | | | | | When we don't request offline members, members that are going from offline to online in the server will become available via the PRESENCE_UPDATE event. This should be transparent to the user since technically the member exists in the server and thus on_member_update is used instead of on_member_join. | ||||
| * | Add Server.member_count property for actual member count. | Rapptz | 2016-02-13 | 2 | -1/+10 |
| | | | | | This will always work regardless of chunking or not. | ||||
| * | [commands] Raise RuntimeError instead of StopIteration. | Rapptz | 2016-02-06 | 1 | -2/+3 |
| | | |||||
| * | Add new US Central and US South voice regions. | Rapptz | 2016-02-04 | 1 | -0/+2 |
| | | |||||
| * | Add ability to set bandwith and bitrate. | Rapptz | 2016-02-02 | 1 | -2/+39 |
| | | | | | Patch by Jake. | ||||
| * | Fix cases where Member.roles would have a string instead of Role. | Rapptz | 2016-02-01 | 1 | -1/+8 |
| | | | | | Fixes #81. | ||||
| * | Make VoiceClient.create_ytdl_player a coroutine. | Rapptz | 2016-01-31 | 1 | -10/+78 |
| | | | | | | | | This is a breaking change. The reason to make it a coroutine is so that the info retrieval is not blocking since there are rare instances where it would take an abnormally long time. The player returned is also augmented to have more attributes relating to the stream itself. | ||||
| * | Change options in VoiceClient.create_ytdl_player to ytdl_options. | Rapptz | 2016-01-31 | 1 | -11/+10 |
| | | | | | | | This is a breaking change. This allows you to set both ffmpeg options and regular ytdl options in the same function since we now just forward the keyword arguments to the ffmpeg player. | ||||
| * | [commands] Fix crash when a group has no commands and help is requested | Rapptz | 2016-01-30 | 1 | -1/+3 |
| | | |||||
| * | Message.clean_content now handles everyone mentions properly. | Rapptz | 2016-01-30 | 1 | -0/+3 |
| | | |||||
| * | Change enumerators into enumerations to please Voltana. | Rapptz | 2016-01-30 | 2 | -7/+7 |
| | | |||||
| * | Update member references when status changes. | Rapptz | 2016-01-30 | 1 | -3/+7 |
| | | |||||
| * | [commands] Change signature convention to use POSIX standards. | Rapptz | 2016-01-29 | 1 | -4/+9 |
| | | |||||
| * | [commands] Raise TypeError if the name is not a string. | Rapptz | 2016-01-29 | 1 | -0/+3 |
| | | |||||
| * | Force content-type for file uploads. | Rapptz | 2016-01-29 | 1 | -2/+2 |
| | | |||||
| * | [commands] Context.invoke will now return what the command returns. | Rapptz | 2016-01-28 | 1 | -1/+2 |
| | | |||||
| * | [commands] Context.invoke just invokes a command with no special case. | Rapptz | 2016-01-28 | 1 | -5/+33 |
| | | | | | | | Previously it would both forward and invoke depending if there were no kwargs given. Now it just passes in the arguments to another command without doing any special casing on the no argument case. | ||||
| * | Update README to have a valid example. | Rapptz | 2016-01-27 | 1 | -2/+1 |
| | | |||||
| * | [commands] Fix typo on HelpFormatter.show_check_failure attribute. | Rapptz | 2016-01-27 | 1 | -5/+5 |
| | | |||||
| * | Try to make the pause/resume loop not busy. | Rapptz | 2016-01-26 | 1 | -6/+9 |
| | | |||||
| * | add ``headers`` option to create_ffmpeg_player() | Alexey Glushko | 2016-01-26 | 1 | -3/+10 |
| | | | | | | headers can't be passed through 'options' because in '-headers' flag shoul be placed before '-i' At least for ffmpeg 2.8.4 | ||||
| * | Add and remove some of the on_socket_* events. | Rapptz | 2016-01-25 | 3 | -49/+32 |
| | | | | | | | on_socket_raw_receive and on_socket_raw_send were added back in an odd way. The rest of them such as on_socket_closed, on_socket_opened, and on_socket_receive were removed. | ||||
| * | HTTPException now has a text attribute if JSON is not available. | Rapptz | 2016-01-25 | 2 | -6/+17 |
| | | |||||
| * | [commands] Fix discord.Invite special case handling in parameters. | Rapptz | 2016-01-24 | 1 | -10/+16 |
| | | | | | | | This led to decorating a lot of things into @asyncio.coroutine. Unfortunately there's no way to lower the amount of decoration since coroutines spread like a virus. | ||||
| * | [commands] Allow setting the bot error messages in the help command. | Rapptz | 2016-01-23 | 1 | -4/+15 |
| | | | | | This is to help out those folks that don't speak English. | ||||
| * | [commands] Add Bot.help_attrs to customise the help command. | Rapptz | 2016-01-23 | 2 | -4/+18 |
| | | | | | | The help message now uses the invoked_with attribute of the context to get the name of the command it uses instead of a hardcoded help. | ||||
| * | [commands] Change Bot.pm_help to be an optional bool. | Rapptz | 2016-01-23 | 1 | -4/+14 |
| | | | | | | | The behaviour of passing in pm_help=None makes it so the bot will only send private messages if the length of the message is too "big", which is defined as having more than 1000 characters in the output. | ||||
| * | Support changing owners in Client.edit_server. | Rapptz | 2016-01-22 | 1 | -1/+11 |
| | | |||||
| * | [commands] Add Command.no_pm attribute to block a command in PM. | Rapptz | 2016-01-22 | 1 | -0/+10 |
| | | |||||