| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix crash involving stickers | Rapptz | 2021-06-12 | 1 | -1/+1 |
| | | |||||
| * | Typehint Sticker | Rapptz | 2021-05-29 | 1 | -13/+23 |
| | | |||||
| * | fix AttributeError in Sticker.image | Nadir Chowdhury | 2021-04-29 | 1 | -1/+1 |
| | | |||||
| * | Rewrite Asset design | Rapptz | 2021-04-16 | 1 | -31/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | This is a breaking change. This does the following transformations, assuming `asset` represents an asset type. Object.is_asset_animated() => Object.asset.is_animated() Object.asset => Object.asset.key Object.asset_url => Object.asset_url Object.asset_url_as => Object.asset.replace(...) Since the asset type now requires a key (or hash, if you will), Emoji had to be flattened similar to how Attachment was done since these assets are keyed solely ID. Emoji.url (Asset) => Emoji.url (str) Emoji.url_as => removed Emoji.url.read => Emoji.read Emoji.url.save => Emoji.save This transformation was also done to PartialEmoji. | ||||
| * | Remove Sticker.preview_image | Nadir Chowdhury | 2021-04-16 | 1 | -5/+1 |
| | | |||||
| * | Add periods to sticker docs | NoName | 2021-04-16 | 1 | -13/+13 |
| | | |||||
| * | Use f-strings in more places that were missed. | Rapptz | 2021-04-08 | 1 | -1/+1 |
| | | |||||
| * | Add `__all__` to remaining modules | Nadir Chowdhury | 2021-04-07 | 1 | -0/+4 |
| | | |||||
| * | Convert datetimes to aware datetimes with UTC. | Rapptz | 2021-04-04 | 1 | -1/+1 |
| | | | | | | Naive datetimes will now be interpreted as local time throughout the library. | ||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -2/+0 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Fix preview_asset key name in Sticker | Rapptz | 2020-11-23 | 1 | -1/+1 |
| | | |||||
| * | Sticker implementation cleanup | Rapptz | 2020-11-23 | 1 | -5/+10 |
| | | |||||
| * | Add sticker support | Zomatree | 2020-11-23 | 1 | -0/+134 |