| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Fix deadlock issue when joining large guilds. | Rapptz | 2016-04-15 | 2 | -7/+13 | |
| | | ||||||
| * | Typo fix | Matt Gardner | 2016-04-15 | 1 | -1/+1 | |
| | | | | | | Changed spelling of optinal to the correct spelling of optional in docs\logging.rst | |||||
| * | Add optional server parameter to utils.oauth_url | Khazhismel Kumykov | 2016-04-15 | 1 | -2/+6 | |
| | | ||||||
| * | Add a None check when setting status in Client.change_status. | Rapptz | 2016-04-14 | 1 | -2/+6 | |
| | | ||||||
| * | Retry if send_message or edit_message encounter a 502. | Rapptz | 2016-04-14 | 1 | -2/+9 | |
| | | ||||||
| * | [commands] CommandError derived exceptions in checks don't crash help. | Rapptz | 2016-04-13 | 1 | -1/+5 | |
| | | ||||||
| * | Handle bot tag updates in GUILD_MEMBER_UPDATE. | Rapptz | 2016-04-12 | 1 | -0/+2 | |
| | | ||||||
| * | Yield from parser coroutine instead of making it a task. | Rapptz | 2016-04-12 | 1 | -1/+1 | |
| | | | | | This should give us a bit better sequential message processing. | |||||
| * | Add Channel.overwrites_for function to get allow/deny pairs. | Rapptz | 2016-04-12 | 1 | -0/+31 | |
| | | ||||||
| * | User JSON object has 'username' keys not 'name'. | Rapptz | 2016-04-11 | 1 | -1/+1 | |
| | | ||||||
| * | Fix Client.login documentation to showcase email/password login. | Rapptz | 2016-04-11 | 1 | -1/+1 | |
| | | ||||||
| * | Check the right status code for improper token being passed. | Rapptz | 2016-04-11 | 1 | -1/+1 | |
| | | ||||||
| * | Better chunking behaviour and add members on PRESENCE_UPDATE. | Rapptz | 2016-04-11 | 1 | -23/+28 | |
| | | | | | | | | This should hopefully cover all cases where members are added. There was a bug where an array of chunks received would get entirely processed if only a single chunk was received. This was fixed by explicitly bailing early if we're requesting for chunks. | |||||
| * | Fix chunk requests not actually being batched. | Khazhismel | 2016-04-11 | 1 | -3/+5 | |
| | | ||||||
| * | Proper chunking for unavailable guilds. | Rapptz | 2016-04-10 | 1 | -24/+66 | |
| | | | | | This will also delay on_ready until all chunking is complete. | |||||
| * | Allow Client.edit_profile to work with bot accounts. | Rapptz | 2016-04-09 | 1 | -10/+26 | |
| | | ||||||
| * | Add User.bot attribute to check if a user is a bot account. | Rapptz | 2016-04-09 | 1 | -1/+4 | |
| | | ||||||
| * | Fix typo in Role.created_at | Khazhismel Kumykov | 2016-04-09 | 1 | -1/+1 | |
| | | ||||||
| * | Add utility function for generating OAuth2 urls. | Rapptz | 2016-04-08 | 2 | -0/+21 | |
| | | ||||||
| * | Change all email/password pair examples to use token. | Rapptz | 2016-04-08 | 11 | -13/+13 | |
| | | ||||||
| * | Change login, start and run to be variadic. | Rapptz | 2016-04-08 | 1 | -43/+59 | |
| | | ||||||
| * | Fix unclosed response and document token login a bit better. | Rapptz | 2016-04-08 | 1 | -3/+4 | |
| | | ||||||
| * | Add support for token login (for bots) | Max Gurela | 2016-04-08 | 1 | -0/+18 | |
| | | ||||||
| * | Guard against AttributeErrors when clearing cached slot cache. | Rapptz | 2016-04-05 | 1 | -3/+14 | |
| | | ||||||
| * | Make Message.clean_content a cached property again. | Rapptz | 2016-04-05 | 1 | -3/+8 | |
| | | | | | | Instead, clear the cached properties so they will be re-cached when invoked again. | |||||
| * | Fix handling of message update in MESSAGE_UPDATE | Zeta | 2016-04-05 | 2 | -22/+24 | |
| | | ||||||
| * | Clarify channel-specific permissions documentation. | Khazhismel Kumykov | 2016-04-05 | 1 | -2/+6 | |
| | | | | | | | Manage Roles and Manage Channels is renamed to "Manage Permissions" and "Manage Channel" in the discord UI, clarify which fields in the Permission object those map to. | |||||
| * | Fix handling of unavailable servers in READY | Khazhismel Kumykov | 2016-04-04 | 1 | -1/+1 | |
| | | ||||||
| * | [commands] Add deterministic cog unloading. | Rapptz | 2016-04-04 | 1 | -0/+10 | |
| | | | | | | The special function is `__unload` to prevent with name conflicts with existing or future cogs. | |||||
| * | Skip member_update event when a member is not in a guild. | Rapptz | 2016-04-02 | 1 | -1/+1 | |
| | | ||||||
| * | [commands] Fix pagination logic a little inside HelpFormatter. | Rapptz | 2016-04-02 | 1 | -10/+10 | |
| | | | | | This should prevent pages accidentally reaching >2k chars. | |||||
| * | [commands] Refactor special cased discord.py converters. | Rapptz | 2016-04-01 | 1 | -40/+77 | |
| | | | | | | | | Code is a little more straightforward. The Member and Channel special cases will now work in private message contexts when given a name. The Member special case will also work if you pass in a name and discriminator combo. | |||||
| * | Add Server.get_member_named to help with name + discriminator lookups. | Rapptz | 2016-04-01 | 1 | -0/+38 | |
| | | ||||||
| * | User.__str__ now includes the discriminator. | Rapptz | 2016-04-01 | 1 | -12/+12 | |
| | | ||||||
| * | Clarify that linux users need libffi for PyNaCl. | Rapptz | 2016-04-01 | 1 | -0/+3 | |
| | | ||||||
| * | Drop voice packets when it can be potentially blocking. | Rapptz | 2016-03-31 | 1 | -1/+5 | |
| | | ||||||
| * | Add PyNaCl to the list of requirements. | Rapptz | 2016-03-31 | 1 | -0/+1 | |
| | | ||||||
| * | Encrypted audio working with PyNacl | izy521 | 2016-03-31 | 1 | -12/+20 | |
| | | | | | I chose PyNacl since it came with its own libsodium portable copy. | |||||
| * | [commands] Don't yield from inside bot utility functions. | Rapptz | 2016-03-31 | 1 | -14/+5 | |
| | | ||||||
| * | Add default avatar property to User. | Khazhismel Kumykov | 2016-03-31 | 2 | -0/+28 | |
| | | ||||||
| * | [commands] Fix infinite recursion on subgroups without a command. | Will Tekulve | 2016-03-31 | 1 | -1/+1 | |
| | | | | | | Just as an FYI, ctx.invoked_subcommand will end up being an instance of commands.Group! | |||||
| * | Clarify that Client.close is a coroutine. | Rapptz | 2016-03-29 | 1 | -2/+2 | |
| | | ||||||
| * | Add Member.colour property to get rendered role colour of a member. | Rapptz | 2016-03-27 | 1 | -1/+20 | |
| | | ||||||
| * | Clarify Channel.position documentation. | Rapptz | 2016-03-25 | 1 | -1/+4 | |
| | | ||||||
| * | Server.icon_url uses API url instead of the CDN. | Rapptz | 2016-03-25 | 1 | -1/+1 | |
| | | ||||||
| * | Add boolean option to specify if VoiceClient.play_audio should encode. | Rapptz | 2016-03-25 | 1 | -6/+11 | |
| | | | | | | This allows people to send raw opus encoded data instead of being forced to encode to Opus. | |||||
| * | Add a way to set ffmpeg options before the -i flag. | Rapptz | 2016-03-25 | 1 | -7/+13 | |
| | | ||||||
| * | Move ffmpeg process cleanup to player thread | Khazhismel Kumykov | 2016-03-25 | 1 | -3/+5 | |
| | | ||||||
| * | Add missing created_at properties for other objects. | Rapptz | 2016-03-25 | 3 | -0/+23 | |
| | | | | | Such as Channel, PrivateChannel, Object and Role. | |||||
| * | [commands] Add bot decorators into __all__. | Rapptz | 2016-03-11 | 1 | -1/+2 | |
| | | ||||||