| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | One last superfluous .0 in versionadded | Rapptz | 2020-01-22 | 2 | -2/+2 | |
| | | ||||||
| * | Fix up some links and mention IDENTIFY change | Rapptz | 2020-01-22 | 1 | -1/+2 | |
| | | ||||||
| * | Add changelog for v1.3 | Rapptz | 2020-01-22 | 2 | -0/+117 | |
| | | ||||||
| * | Improve usability of utils.sleep_until | Josh B | 2020-01-21 | 1 | -0/+1 | |
| | | | | | | | | | | Fix issue where sleeping for an extended period on python 3.5 would cause an exception Add sleep_until to API docs Add result argument to sleep_until | |||||
| * | Drop final 0 in versionadded numbers in api.rst | Rapptz | 2020-01-21 | 1 | -7/+6 | |
| | | ||||||
| * | [commands] Implement Command.__call__ | Rapptz | 2020-01-21 | 1 | -0/+1 | |
| | | ||||||
| * | [commands] Export max_concurrency and MaxConcurrencyReached in docs | Rapptz | 2020-01-21 | 1 | -0/+6 | |
| | | ||||||
| * | [commands] Document BucketType separately | Rapptz | 2020-01-18 | 1 | -0/+32 | |
| | | ||||||
| * | Add support for clearing a specific reaction. | Rapptz | 2020-01-17 | 1 | -5/+35 | |
| | | | | | Closes #2440 | |||||
| * | Add support for on_invite_create and on_invite_delete | Rapptz | 2020-01-17 | 1 | -0/+31 | |
| | | ||||||
| * | [docs] Fix sphinx warning about heading | Reece Dunham | 2020-01-15 | 1 | -1/+1 | |
| | | ||||||
| * | Document BaseActivity | Rapptz | 2020-01-14 | 1 | -0/+6 | |
| | | ||||||
| * | Add support for custom activities | Rapptz | 2020-01-14 | 1 | -0/+9 | |
| | | | | | | | It's been long enough. Fixes #2400 | |||||
| * | [commands] Add missing CheckAnyFailure documentation | Rapptz | 2020-01-14 | 1 | -0/+4 | |
| | | ||||||
| * | [commands] Document guild permission checks | Rapptz | 2020-01-07 | 1 | -0/+4 | |
| | | ||||||
| * | [commands] Add check_any check to OR together various checks | Rapptz | 2020-01-06 | 1 | -0/+2 | |
| | | ||||||
| * | Add `VoiceRegion.dubai` | NCPlayz | 2020-01-06 | 1 | -1/+4 | |
| | | ||||||
| * | Add Profile.system and Profile.team_user to query newer flags | Rapptz | 2019-12-21 | 1 | -3/+9 | |
| | | ||||||
| * | Implement discord.MessageFlags | NCPlayz | 2019-12-20 | 1 | -0/+6 | |
| | | | | | Refactor flags placement and use it for suppression. | |||||
| * | Fix more deprecation warnings for 3.8 | Rapptz | 2019-11-26 | 1 | -1/+1 | |
| | | ||||||
| * | Implement `Webhook.type` | NCPlayz | 2019-11-26 | 1 | -0/+12 | |
| | | ||||||
| * | Add new audit log entry types. Fix issue with unknown entry types | Josh B | 2019-11-26 | 1 | -2/+87 | |
| | | ||||||
| * | Add changelog for 1.2.5 | Rapptz | 2019-11-18 | 1 | -0/+10 | |
| | | ||||||
| * | Return invites as https, various URL normalization | Devon R | 2019-11-15 | 1 | -1/+1 | |
| | | ||||||
| * | [docs] add new FAQ entries | Benjamin Mintz | 2019-11-15 | 1 | -1/+28 | |
| | | | | | | | | - How to DM - Lack of search and implications - Where to find examples - Getting the ID of a sent message | |||||
| * | Add changelog for v1.2.4 | Rapptz | 2019-10-17 | 1 | -0/+15 | |
| | | ||||||
| * | docs: `on_guild_emojis_update` is a `Sequence` | jack1142 | 2019-10-17 | 1 | -2/+2 | |
| | | ||||||
| * | add suppress-embeds to on_message_edit triggers | Riley Shaw | 2019-10-17 | 1 | -0/+1 | |
| | | ||||||
| * | [commands] Fix grammar | Flame442 | 2019-10-17 | 1 | -1/+1 | |
| | | | | Either implies that there will be two things, there is only one. | |||||
| * | Add europe region | apple502j | 2019-10-17 | 1 | -0/+9 | |
| | | ||||||
| * | change game playing to activity | Riley Shaw | 2019-08-27 | 1 | -1/+1 | |
| | | ||||||
| * | Add CHANNEL_FOLLOW_ADD Message Type | Dice | 2019-08-27 | 1 | -0/+6 | |
| | | | | | | | | | Add documentation for MessageType.channel_follow_add Add versionchanged to new MessageType attr Add system_content for new MessageType | |||||
| * | Disambiguate and normalize documentation for non-bot only methods | Tyler | 2019-08-11 | 1 | -1/+1 | |
| | | ||||||
| * | [commands] Fix confusion between it's and its | Dante Dam | 2019-07-22 | 1 | -1/+1 | |
| | | ||||||
| * | Add FFmpegOpusAudio and other voice improvements | Imayhaveborkedit | 2019-07-22 | 1 | -0/+6 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rework FFmpeg player and add FFmpegOpusAudio I have extracted some of the base FFmpeg source code into its own base class and reimplemented the PCM and the new Opus variants. Support avconv probing Also fix a few things Update `__all__` Fix the bugs Rework probe functions and add factory function Probing involves subprocess so it has been reworked into an async factory function. Add docs + a few tweaks * Removed unnecessary read() and is_opus() functions from FFmpegAudio * Clear self._stdout in cleanup() * Add 20 second process communication timeout to probe functions * Capped probe function bitrate values at 512 Change AudioPlayer to use more accurate, monotonic time.perf_counter() Add lazy opus loading The library now no longer loads libopus on import, only on opus.Encoder creation or manually. Fix review nits | |||||
| * | [commands] Fix CategoryChannel not appearing in converter table | Dante Dam | 2019-07-18 | 1 | -27/+27 | |
| | | ||||||
| * | Use the standard way of detecting RTD | Rapptz | 2019-07-01 | 2 | -5/+1 | |
| | | ||||||
| * | Flatten genindex to not group names. | Rapptz | 2019-06-30 | 3 | -1/+49 | |
| | | | | | Also better width in the tables. | |||||
| * | Fix some linking issues with TeamMembershipState | Rapptz | 2019-06-30 | 1 | -2/+2 | |
| | | ||||||
| * | Remove constructibility from certain classes in documentation. | Rapptz | 2019-06-30 | 1 | -4/+4 | |
| | | ||||||
| * | [commands] Properly raise the correct exception for owner_ids | Rapptz | 2019-06-29 | 1 | -4/+1 | |
| | | | | | Also some minor nits with documentation. | |||||
| * | Support team members data in application info | fourjr | 2019-06-29 | 1 | -0/+21 | |
| | | ||||||
| * | Use a new scorer to improve search results. | Rapptz | 2019-06-29 | 2 | -1/+79 | |
| | | | | | | This makes the other pages take less priority than the API results. It's kind of biased, but hopefully it helps out. | |||||
| * | Proper RTD detection. | Rapptz | 2019-06-29 | 2 | -1/+5 | |
| | | ||||||
| * | Disable RTD search. | Rapptz | 2019-06-29 | 1 | -0/+11 | |
| | | | | | It's completely broken anyway. | |||||
| * | Strip discord.ext in genindex page and unbreak PEP links. | Rapptz | 2019-06-28 | 1 | -0/+8 | |
| | | ||||||
| * | Make the generated index page more useful for Ctrl + F. | Rapptz | 2019-06-28 | 2 | -2/+18 | |
| | | ||||||
| * | Translation sync with Crowdin | Rapptz | 2019-06-28 | 18 | -5856/+7713 | |
| | | ||||||
| * | Make more use of screen space in the documentation. | Rapptz | 2019-06-28 | 1 | -5/+9 | |
| | | | | | | Basically move from a 940px system to 1200px grid system. Hopefully future DOM modifications will make this better. | |||||
| * | Update Sphinx to 2.1.2 | Rapptz | 2019-06-28 | 4 | -21/+36 | |
| | | ||||||