| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove Guild.change_vanity_invite in favour of Guild.edit | Rapptz | 2017-05-09 | 1 | -29/+11 |
| | | |||||
| * | Add back Client.create_guild. | Rapptz | 2017-05-09 | 1 | -1/+47 |
| | | |||||
| * | Rename GuildRegion to VoiceRegion. | Rapptz | 2017-05-09 | 4 | -11/+11 |
| | | | | | | This naming makes more sense since voice regions are not a guild exclusive concept. | ||||
| * | Properly check for audit log entry termination. | Rapptz | 2017-05-07 | 1 | -10/+10 |
| | | |||||
| * | Make AuditLogDiff.roles an empty list instead of None. | Rapptz | 2017-05-07 | 2 | -2/+2 |
| | | |||||
| * | Skip None action types when iterating. | Rapptz | 2017-05-07 | 1 | -0/+4 |
| | | |||||
| * | Add support for audit log reasons. | Rapptz | 2017-05-07 | 9 | -131/+217 |
| | | | | | Most routes now have a 'reason' keyword argument. | ||||
| * | Fix NameError when making things Object in audit logs. | Rapptz | 2017-05-07 | 1 | -2/+2 |
| | | |||||
| * | Audit log role add and removes are lists, not single item. | Rapptz | 2017-05-06 | 2 | -14/+19 |
| | | | | | Breaking change. role -> roles and it's now a list. | ||||
| * | Replace hasattr with try except in chunker. | Rapptz | 2017-05-05 | 1 | -2/+2 |
| | | |||||
| * | Split on_channel_pins_update as well. | Rapptz | 2017-05-05 | 1 | -2/+16 |
| | | |||||
| * | Rework some events to make more sense. | Rapptz | 2017-05-05 | 1 | -9/+10 |
| | | | | | | | | | | | | | | | This is a breaking change. 1. Change on_guild_emojis_update to have 3 arguments. - The first parameter is now the guild object 2. Remove on_channel_create, on_channel_delete, and on_channel_update - They are now split into two. - on_guild_channel_[create|delete|update] - on_private_channel_[create|delete|update] 3. Change on_member_ban to allow User. - (member) -> (guild, user) - user can also be a Member | ||||
| * | [commands] Export is_nsfw check. | Rapptz | 2017-05-05 | 1 | -1/+1 |
| | | |||||
| * | Change some format usage to use %-formatting. | Rapptz | 2017-05-04 | 5 | -9/+9 |
| | | | | | | Minor speed increase when we're not doing excessive attribute access or any type of formatting. | ||||
| * | Add support for message delete audit log action type. | Rapptz | 2017-05-04 | 3 | -1/+29 |
| | | |||||
| * | Explicitly close UDP sockets when re-creating them. | Rapptz | 2017-05-02 | 1 | -1/+10 |
| | | | | | | This does not actually make a big difference since the GC should technically close them when needed but might as well be more explicit. | ||||
| * | Fix NameError in HTTPClient.kick | Rapptz | 2017-05-02 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add is_nsfw check. | Rapptz | 2017-05-01 | 1 | -0/+6 |
| | | |||||
| * | Make sure that the chunker task only runs once. | Rapptz | 2017-05-01 | 1 | -25/+34 |
| | | |||||
| * | Add support for setting and retrieving guild vanity invites. | Rapptz | 2017-04-30 | 3 | -0/+64 |
| | | |||||
| * | Changed audit_log to audit_logs in documentation | Twentysix | 2017-04-30 | 3 | -3/+3 |
| | | |||||
| * | Implement audit logs. | Rapptz | 2017-04-30 | 9 | -14/+1294 |
| | | |||||
| * | Better TextChannel.is_nsfw() check. | Rapptz | 2017-04-30 | 1 | -1/+1 |
| | | |||||
| * | Add Client.get_emoji to get an Emoji from an ID. | Rapptz | 2017-04-30 | 2 | -0/+7 |
| | | |||||
| * | Add TextChannel.is_nsfw method to check for NSFW channels. | Rapptz | 2017-04-26 | 1 | -0/+5 |
| | | |||||
| * | Don't set VoiceClient.channel to None when VOICE_STATE_UPDATE says so. | Rapptz | 2017-04-26 | 1 | -1/+3 |
| | | | | | | | Sometimes VOICE_STATE_UPDATE gives us a channel_id: null payload and we would end up clearing the VoiceClient.channel state along with it. | ||||
| * | [commands] Fix lack of space in when_mentioned | Rapptz | 2017-04-24 | 1 | -1/+1 |
| | | |||||
| * | [commands] Add Context.voice_client shortcut. | Rapptz | 2017-04-24 | 1 | -0/+6 |
| | | |||||
| * | [commands] Make when_mentioned always have both mention formats. | Rapptz | 2017-04-24 | 1 | -5/+2 |
| | | | | | | This will allow it to work in mobile clients which don't respect the <@!id> format in case of nicknames. | ||||
| * | Wait 5 seconds before attempting to RESUME during INVALIDATE_SESSION. | Rapptz | 2017-04-22 | 1 | -0/+1 |
| | | |||||
| * | Fix some linting errors. | Rapptz | 2017-04-22 | 2 | -5/+2 |
| | | |||||
| * | Fix NameError in Role.edit when moving roles. | Rapptz | 2017-04-22 | 1 | -0/+1 |
| | | |||||
| * | Fix NameError in GuildChannel.changed_roles | Rapptz | 2017-04-22 | 1 | -0/+1 |
| | | |||||
| * | Timeout when doing initial connection. | Rapptz | 2017-04-22 | 3 | -16/+25 |
| | | |||||
| * | [commands] Allow loading cogs from folders. | Rapptz | 2017-04-21 | 2 | -9/+10 |
| | | | | | | | | | | Internally, instead of using module objects just use the `__module__` attribute which is the same thing. From preliminary testing this seems to work fine with both regular one-file-per-cog approaches and the folder cog approach. Fixes #126. | ||||
| * | Allow using Reaction objects while adding or removing reactions. | Rapptz | 2017-04-21 | 1 | -6/+10 |
| | | |||||
| * | Support for new member message types. | Rapptz | 2017-04-21 | 2 | -0/+29 |
| | | |||||
| * | Allow setting a default volume in PCMVolumeTransformer. | Rapptz | 2017-04-19 | 1 | -2/+5 |
| | | |||||
| * | Add PCMVolumeTransformer to augment volume of a PCM stream. | Rapptz | 2017-04-19 | 3 | -4/+72 |
| | | | | | | | This also introduces the idea of replacing the VoiceClient.source on the fly. Note that this internally pauses and resumes the audio stream. | ||||
| * | Add VoiceClient.is_paused to query pause state. | Rapptz | 2017-04-19 | 2 | -0/+7 |
| | | |||||
| * | Add VoiceClient.source to get the AudioSource being played. | Rapptz | 2017-04-19 | 1 | -0/+5 |
| | | |||||
| * | Fix static cut-off when playing. | Rapptz | 2017-04-18 | 1 | -2/+8 |
| | | |||||
| * | Clean cache when TimeoutError occurs. | Rapptz | 2017-04-18 | 1 | -1/+1 |
| | | |||||
| * | Better handling of VOICE_SERVER_UPDATE. | Rapptz | 2017-04-18 | 3 | -29/+34 |
| | | | | | | | This now sort of respects "Awaiting Endpoint..." waiting. I haven't actually tested out this case since it's hard to get it. However this new code does work with the regular connection flow. | ||||
| * | Fix FFmpegPCMAudio not working with spaces in filename. | Rapptz | 2017-04-18 | 1 | -1/+1 |
| | | |||||
| * | Remove unused imports. | Rapptz | 2017-04-18 | 9 | -31/+10 |
| | | |||||
| * | Properly cleanup of VoiceClients in cache. | Rapptz | 2017-04-18 | 2 | -3/+7 |
| | | |||||
| * | Add Guild.voice_client shortcut. | Rapptz | 2017-04-18 | 1 | -1/+5 |
| | | |||||
| * | Re-implement voice sending. | Rapptz | 2017-04-18 | 11 | -527/+599 |
| | | | | | | | | | | | | | | | | | | | | | This is a complete redesign of the old voice code. A list of major changes is as follows: * The voice websocket will now automatically reconnect with exponential back-off just like the regular Client does. * Removal of the stream player concept. * Audio now gracefully pauses and resumes when a disconnect is found. * Introduce a discord.AudioSource concept to abstract streams * Flatten previous stream player functionality with the VoiceClient, e.g. player.stop() is now voice_client.stop() * With the above re-coupling this means you no longer have to store players anywhere. * The after function now requires a single parameter, the error, if any existed. This will typically be None. A lot of this design is experimental. | ||||
| * | Don't clear state when READY is reached for auto sharded clients. | Rapptz | 2017-04-16 | 1 | -1/+0 |
| | | |||||