| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove setting read-only __doc__ in Member overrides. | Rapptz | 2016-04-29 | 1 | -4/+0 |
| | | |||||
| * | Sort member.roles by ID but keep the default role in index 0. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | | | | | This should make the events checking if `before` and `after` roles are equivalent more sane for users. | ||||
| * | Add User.mentioned_in helper to check if a message mentions you. | Rapptz | 2016-04-29 | 2 | -2/+32 |
| | | |||||
| * | Member.mention now uses nickname hint if needed. | Rapptz | 2016-04-29 | 1 | -0/+8 |
| | | |||||
| * | Add Role.mentionable attribute. | Rapptz | 2016-04-29 | 1 | -1/+4 |
| | | |||||
| * | Fix Member.display_name returning None | Khazhismel Kumykov | 2016-04-29 | 1 | -1/+1 |
| | | | | | | If Member.nick was None, getattr would happily return None, not the default value. | ||||
| * | [commands] Allow role mentions to work with discord.Role params. | Rapptz | 2016-04-29 | 1 | -2/+6 |
| | | | | | | This also fixes the Member regex to support the new <@!user_id> syntax and allows colours to have a leading # before the number. | ||||
| * | Simplify User.display_name a bit. | Rapptz | 2016-04-29 | 1 | -2/+1 |
| | | |||||
| * | Handle nicknames in Server.get_member_named | Rapptz | 2016-04-29 | 1 | -1/+9 |
| | | |||||
| * | Add Message.role_mentions and handle them in Message.clean_content | Rapptz | 2016-04-29 | 1 | -24/+45 |
| | | |||||
| * | Add Role.mention property | Rapptz | 2016-04-29 | 1 | -0/+5 |
| | | |||||
| * | Add ability to change nicknames via Client.change_nickname | Rapptz | 2016-04-29 | 1 | -0/+39 |
| | | |||||
| * | Add support for server specific nicknames. | Rapptz | 2016-04-29 | 3 | -2/+21 |
| | | |||||
| * | Add permissions for changing or managing nicknames. | Rapptz | 2016-04-29 | 1 | -3/+21 |
| | | |||||
| * | Refactor voice websocket into gateway.py | Rapptz | 2016-04-27 | 3 | -211/+211 |
| | | |||||
| * | Begin working on gateway v4 support. | Rapptz | 2016-04-27 | 10 | -153/+451 |
| | | | | | | | Bump websockets requirement to v3.1 Should be squashed... | ||||
| * | Add compatibility layer for `run_coroutine_threadsafe`. | Rapptz | 2016-04-25 | 2 | -4/+131 |
| | | | | | | This is a breaking change, since discord.utils.create_task is moved to discord.compat.create_task. | ||||
| * | [commands] Make sure that mentions are the entire string. | Rapptz | 2016-04-23 | 1 | -2/+2 |
| | | |||||
| * | Message.clean_content now takes into consideration @here mentions. | Rapptz | 2016-04-23 | 1 | -1/+11 |
| | | |||||
| * | Properly close session if client failed to start | Daniel | 2016-04-22 | 1 | -2/+4 |
| | | | | `keep_alive` was not defined until it was created in `received_message`, `ws` is `None` until its actually connected, which doesn't always happen. If an error happens before things start up properly, the client should now clean its objects up (fixes `unclosed client session` warning). | ||||
| * | Add optional redirect_uri parameter to utils.oauth_url | cookie | 2016-04-18 | 1 | -1/+6 |
| | | |||||
| * | 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. | ||||