| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add target_user and target_type to Invite objects | sudosnok | 2021-04-21 | 1 | -0/+6 |
| | | |||||
| * | Add `MessageType.guild_invite_reminder` | Nadir Chowdhury | 2021-04-18 | 1 | -0/+1 |
| | | |||||
| * | Add VoiceChannel.video_quality_mode | z03h | 2021-04-17 | 1 | -0/+8 |
| | | |||||
| * | add reply and application_command types | NCPlayz | 2021-04-11 | 1 | -0/+2 |
| | | |||||
| * | Use non-underscore TypeVar in enum code | Rapptz | 2021-04-06 | 1 | -3/+3 |
| | | |||||
| * | Make enum code work with typecheckers | Rapptz | 2021-04-06 | 1 | -12/+23 |
| | | | | | | This also makes it so invalid enum values fall back to a proxy type that still works similar to actual values. | ||||
| * | Add on_interaction event and Interaction class. | Rapptz | 2021-04-06 | 1 | -0/+4 |
| | | | | | | This is the first pass at the functionality. It's currently a bit incomplete. | ||||
| * | Remove userbot functionality | Rapptz | 2021-04-04 | 1 | -37/+0 |
| | | | | | | This has a lot of legacy and cruft so there may be some stuff I've missed but this first pass is enough to get a clear separation. | ||||
| * | Modernize code to use f-strings | Rapptz | 2021-04-04 | 1 | -6/+4 |
| | | | | | | This also removes the encoding on the top, since Python 3 does it by default. It also changes some methods to use `yield from`. | ||||
| * | Implement StageChannel and related methods | Nadir Chowdhury | 2021-04-03 | 1 | -0/+1 |
| | | |||||
| * | Add remaining v6 message types | Nadir Chowdhury | 2021-02-23 | 1 | -13/+18 |
| | | |||||
| * | Change copyright year to present | Nihaal Sangha | 2021-01-15 | 1 | -1/+1 |
| | | |||||
| * | Code cleanup involving enums and message replies | Rapptz | 2020-11-27 | 1 | -5/+5 |
| | | |||||
| * | Sticker implementation cleanup | Rapptz | 2020-11-23 | 1 | -1/+1 |
| | | |||||
| * | Add sticker support | Zomatree | 2020-11-23 | 1 | -0/+6 |
| | | |||||
| * | Allow finer grained control over the member cache. | Rapptz | 2020-09-23 | 1 | -1/+1 |
| | | |||||
| * | Add competing activity type | iDutchy | 2020-09-20 | 1 | -0/+1 |
| | | |||||
| * | Add South Korea VoiceRegion | Patrick | 2020-08-18 | 1 | -0/+1 |
| | | |||||
| * | Add remaining user flags | Nadir Chowdhury | 2020-08-05 | 1 | -0/+3 |
| | | |||||
| * | Add support for integrations | Nadir Chowdhury | 2020-06-28 | 1 | -0/+8 |
| | | |||||
| * | Add support for public user flags | JohnyTheCarrot | 2020-05-29 | 1 | -0/+3 |
| | | |||||
| * | Add new alias VerificationLevel.very_high | apple502j | 2020-04-09 | 1 | -0/+1 |
| | | |||||
| * | Bump copyright year to 2020 | Rapptz | 2020-01-19 | 1 | -1/+1 |
| | | | | | Closes #2510 | ||||
| * | Add support for custom activities | Rapptz | 2020-01-14 | 1 | -0/+1 |
| | | | | | | | It's been long enough. Fixes #2400 | ||||
| * | Add `VoiceRegion.dubai` | NCPlayz | 2020-01-06 | 1 | -0/+1 |
| | | |||||
| * | Typo: AuditLogActionCategory | Christian Clauss | 2019-12-23 | 1 | -1/+1 |
| | | |||||
| * | Add Profile.system and Profile.team_user to query newer flags | Rapptz | 2019-12-21 | 1 | -0/+2 |
| | | |||||
| * | Implement `Webhook.type` | NCPlayz | 2019-11-26 | 1 | -0/+5 |
| | | |||||
| * | Add new audit log entry types. Fix issue with unknown entry types | Josh B | 2019-11-26 | 1 | -26/+46 |
| | | |||||
| * | Add europe region | apple502j | 2019-10-17 | 1 | -0/+1 |
| | | |||||
| * | Add CHANNEL_FOLLOW_ADD Message Type | Dice | 2019-08-27 | 1 | -0/+1 |
| | | | | | | | | | Add documentation for MessageType.channel_follow_add Add versionchanged to new MessageType attr Add system_content for new MessageType | ||||
| * | Support team members data in application info | fourjr | 2019-06-29 | 1 | -0/+5 |
| | | |||||
| * | Cast activity enumerator to integer instead of accessing value directly | Rapptz | 2019-06-25 | 1 | -0/+3 |
| | | | | | Should make the library more resilient to future changes. | ||||
| * | Fix descriptor detection in enum code. | Rapptz | 2019-06-09 | 1 | -7/+10 |
| | | |||||
| * | Disallow deleting of enum attributes. | Rapptz | 2019-06-09 | 1 | -0/+3 |
| | | |||||
| * | Add EnumMeta.__reversed__ just in case someone does this. | Rapptz | 2019-06-09 | 1 | -0/+3 |
| | | | | | I sure hope not. | ||||
| * | Add EnumMeta.__len__ to not break user avatar code. | Rapptz | 2019-06-09 | 1 | -0/+3 |
| | | |||||
| * | Remove unused import. | Rapptz | 2019-06-09 | 1 | -1/+0 |
| | | |||||
| * | Replace Enum with an internal one for significant speed improvements. | Rapptz | 2019-06-09 | 1 | -54/+88 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This has been a massive pain point for me personally due to the poor design of the Enum class leading to the common use cases used in the library being significantly slow. Since this Enum is not public facing in terms of *creation*, I can only implement the APIs that are used when *accessing* them. This Enum is a drop-in replacement to the pre-existing enum.Enum class except it comes with significant speed-ups. Since this is a lot to go over, I will let the numbers speak for themselves: In [4]: %timeit enums.try_enum(enums.Status, 'offline') 263 ns ± 34.3 ns per loop (7 runs, 1000000 loops each) In [5]: %timeit NeoStatus.try_value('offline') 134 ns ± 0.859 ns per loop (7 runs, 10000000 loops each) In [6]: %timeit enums.Status.offline 116 ns ± 0.378 ns per loop (7 runs, 10000000 loops each) In [7]: %timeit NeoStatus.offline 31.6 ns ± 0.327 ns per loop (7 runs, 10000000 loops each) In [8]: %timeit enums.Status.offline.value 382 ns ± 15.2 ns per loop (7 runs, 1000000 loops each) In [9]: %timeit NeoStatus.offline.value 65.5 ns ± 0.953 ns per loop (7 runs, 10000000 loops each) In [10]: %timeit str(enums.Status.offline) 630 ns ± 14.8 ns per loop (7 runs, 1000000 loops each) In [11]: %timeit str(NeoStatus.offline) 253 ns ± 3.53 ns per loop (7 runs, 1000000 loops each) In [12]: %timeit enums.Status('offline') 697 ns ± 8.42 ns per loop (7 runs, 1000000 loops each) In [13]: %timeit NeoStatus('offline') 182 ns ± 1.83 ns per loop (7 runs, 10000000 loops each) | ||||
| * | Add support for new message types related to premium guilds. | Rapptz | 2019-06-04 | 1 | -8/+12 |
| | | |||||
| * | Add India region to VoiceRegion | apple502j | 2019-05-13 | 1 | -0/+1 |
| | | |||||
| * | Consistent use of __all__ to prevent merge conflicts. | Rapptz | 2019-04-20 | 1 | -5/+21 |
| | | |||||
| * | Improve performance of value -> enum by about 5x. | Rapptz | 2019-04-15 | 1 | -2/+55 |
| | | |||||
| * | Fix issue with speaking state causing an error. | Rapptz | 2019-04-08 | 1 | -0/+3 |
| | | |||||
| * | Change all IntEnum to Enum | Rapptz | 2019-04-08 | 1 | -7/+7 |
| | | | | | A testament to how many 3.5 users there are. | ||||
| * | Added functionality to edit user settings | CapnS | 2019-03-28 | 1 | -1/+17 |
| | | | | | | | | | | | | | Changing docs to fit other parts of the lib Co-Authored-By: CapnS <[email protected]> Removing Type Checking Made all of Rapptz's suggested changes Removing imports that are no longer needed | ||||
| * | Add support for store channels. | Rapptz | 2019-03-17 | 1 | -0/+1 |
| | | |||||
| * | Add support for guild news channels. | Rapptz | 2019-03-08 | 1 | -0/+1 |
| | | |||||
| * | Add PremiumType enumeration and ClientUser.premium_type | Liam H | 2019-02-12 | 1 | -1/+6 |
| | | |||||
| * | Update voice code to vws V4 | Imayhaveborkedit | 2019-01-28 | 1 | -4/+13 |
| | | | | | | | | - Update internals to be compatible with v4 - Adds multiple encryption mode support. Previously only `xsalsa20_poly1305` was supported. Now `xsalsa20_poly1305_suffix` is also supported. Note: There is no (nice) way to manually select a mode. The user needn't worry about this however. - Fixed speaking state bug. When you disconnected from a voice channel while a bot was playing, upon reconnect you would be unable to hear the bot. This was caused by bots not sending their speaking state while transmitting. Bots will now set their speaking state properly when transmitting. Note: This does not account for sending actual silence, the speaking indicator will still be active. | ||||