| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename avatar_is_animated to is_avatar_animated and make it a method. | Rapptz | 2017-07-27 | 1 | -5/+4 |
| | | |||||
| * | avatar_url_as improvements | khazhyk | 2017-07-25 | 1 | -8/+34 |
| | | | | | | | | | | | | | | | | | | | | static_format will only apply to static (not animated) avatars. Makes it easier to grab gif-or-'format' of an avatar. Defaults to 'webp' This is for a similar usecase to avatar_url_as(format=None), except one can specify the non-animated format, instead of always using webp. add User.avatar_is_animated property. add validation for avatar_url_as, since invalid arguments result in a url which will return 415, which can be confusing for a user. (They just see a blank page) Discord accepts size=16-2048, but images cap at 1024px, so accept 16-1024 Discord accepts "jpg", "jpeg", "png", "gif", and "webp", *unless* the avatar is not animated, in which case "gif" is not supported. :\ | ||||
| * | Add support for user flags in Profile. | Rapptz | 2017-06-30 | 1 | -3/+27 |
| | | |||||
| * | Use Python3Lexer instead of PythonLexer for pygments. | Rapptz | 2017-05-22 | 1 | -1/+1 |
| | | |||||
| * | More broken Channel references. | Rapptz | 2017-05-20 | 1 | -1/+1 |
| | | |||||
| * | Make supported operations stand out more than attributes. | Rapptz | 2017-05-20 | 1 | -16/+20 |
| | | |||||
| * | Minor speedup when doing comparisons. | Rapptz | 2017-05-18 | 1 | -2/+4 |
| | | | | | Shred 2 getattr calls + 1 global lookup to 1 global lookup. | ||||
| * | Fix User == Member comparisons. | Rapptz | 2017-05-18 | 1 | -2/+2 |
| | | |||||
| * | Use describe instead of tables for supported operations. | Rapptz | 2017-05-13 | 1 | -26/+30 |
| | | |||||
| * | First pass at documentation reform. | Rapptz | 2017-05-12 | 1 | -2/+2 |
| | | |||||
| * | Fix premium key being missing in profile endpoint. | Rapptz | 2017-03-13 | 1 | -2/+3 |
| | | |||||
| * | Add User.is_blocked and User.is_friend shortcut methods. | Rapptz | 2017-02-27 | 1 | -0/+14 |
| | | |||||
| * | Add User.avatar_url_as to convert a user's avatar. | Rapptz | 2017-02-22 | 1 | -5/+37 |
| | | |||||
| * | Fix Member.display_name to work. | Rapptz | 2017-02-10 | 1 | -1/+1 |
| | | |||||
| * | Better group DM support. | Rapptz | 2017-02-09 | 1 | -0/+39 |
| | | |||||
| * | Add ClientUser.friends and ClientUser.blocked | Rapptz | 2017-01-27 | 1 | -0/+10 |
| | | |||||
| * | Implement User.profile coroutine to get a user's profile. | Rapptz | 2017-01-24 | 1 | -1/+37 |
| | | |||||
| * | Update copyright year to 2017. | Rapptz | 2017-01-20 | 1 | -1/+1 |
| | | |||||
| * | Add support for relationships. | Rapptz | 2017-01-20 | 1 | -2/+89 |
| | | |||||
| * | Add ClientUser.premium boolean. | Rapptz | 2017-01-20 | 1 | -1/+4 |
| | | |||||
| * | Make ClientUser separate from a regular User. | Rapptz | 2017-01-19 | 1 | -68/+207 |
| | | | | | This removes Client.edit_profile in favour of ClientUser.edit. | ||||
| * | Remove _get_guild_id from Messageable ABC. | Rapptz | 2017-01-14 | 1 | -3/+0 |
| | | |||||
| * | Remove extraneous unneeded hash calls. | Rapptz | 2017-01-10 | 1 | -1/+1 |
| | | |||||
| * | Return default avatar URL if an avatar is not given for User.avatar_url | Rapptz | 2017-01-09 | 1 | -4/+7 |
| | | | | | Also use the CDN URL like Jake has always requested. | ||||
| * | Use CDN URL for default avatars. | Rapptz | 2017-01-09 | 1 | -1/+1 |
| | | |||||
| * | Move global user cache to a WeakValueDictionary. | Rapptz | 2017-01-04 | 1 | -1/+1 |
| | | |||||
| * | Make User and Member messageable. | Rapptz | 2017-01-03 | 1 | -1/+36 |
| | | |||||
| * | Add useful repr to all data classes. | Rapptz | 2017-01-03 | 1 | -0/+3 |
| | | |||||
| * | Rename Server to Guild everywhere. | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Slots use tuples instead now. | Rapptz | 2017-01-03 | 1 | -1/+1 |
| | | |||||
| * | Switch IDs to use int instead of str | Rapptz | 2017-01-03 | 1 | -6/+6 |
| | | |||||
| * | Begin working on the rewrite. | Rapptz | 2017-01-03 | 1 | -8/+9 |
| | | |||||
| * | Support animated avatars in User.avatar_url. | Rapptz | 2016-12-23 | 1 | -1/+6 |
| | | |||||
| * | Add User.mentioned_in helper to check if a message mentions you. | Rapptz | 2016-04-29 | 1 | -0/+16 |
| | | |||||
| * | 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. | ||||
| * | Simplify User.display_name a bit. | Rapptz | 2016-04-29 | 1 | -2/+1 |
| | | |||||
| * | Add support for server specific nicknames. | Rapptz | 2016-04-29 | 1 | -0/+11 |
| | | |||||
| * | Add User.bot attribute to check if a user is a bot account. | Rapptz | 2016-04-09 | 1 | -1/+4 |
| | | |||||
| * | User.__str__ now includes the discriminator. | Rapptz | 2016-04-01 | 1 | -12/+12 |
| | | |||||
| * | Add default avatar property to User. | Khazhismel Kumykov | 2016-03-31 | 1 | -0/+11 |
| | | |||||
| * | Add created_at properties for Server and User. | Rapptz | 2016-03-06 | 1 | -0/+9 |
| | | |||||
| * | Move Member.permissions_in to User.permissions_in. | Rapptz | 2016-01-21 | 1 | -0/+16 |
| | | |||||
| * | Update license of files to 2016. | Rapptz | 2016-01-04 | 1 | -1/+1 |
| | | |||||
| * | Revert "Use super() in classes that could be subclassed." | Rapptz | 2016-01-04 | 1 | -1/+0 |
| | | | | | This reverts commit 948f565b430d80f782d0b7c264cc0b27aa1ec0b2. | ||||
| * | Use super() in classes that could be subclassed. | Rapptz | 2016-01-04 | 1 | -0/+1 |
| | | |||||
| * | Add __slots__ where appropriate to data classes. | Rapptz | 2015-12-19 | 1 | -5/+7 |
| | | |||||
| * | Most data classes now support hashing. | Rapptz | 2015-12-17 | 1 | -0/+5 |
| | | |||||
| * | Clean-up documentation to use NumPy style docs on remaining classes. | Rapptz | 2015-12-16 | 1 | -1/+1 |
| | | |||||
| * | All data classes now support !=, == and str(obj). | Rapptz | 2015-12-13 | 1 | -3/+1 |
| | | |||||
| * | Changed functions that return a constant value into properties. | Rapptz | 2015-12-13 | 1 | -0/+2 |
| | | |||||