| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [commands] Fix bug with local checks and cooldowns not applying. | Rapptz | 2019-02-23 | 1 | -2/+0 |
| | | |||||
| * | [commands] Copy on_error handlers in Command.copy | Rapptz | 2019-02-23 | 1 | -0/+4 |
| | | | | | This fixes the issue of error handlers not applying. | ||||
| * | [commands] Pass over kwargs to `type.__new__` | Rapptz | 2019-02-23 | 1 | -1/+1 |
| | | |||||
| * | Document listener changes in the migrating docs. | Rapptz | 2019-02-23 | 1 | -0/+6 |
| | | |||||
| * | Rework entire cog system and partially document it and extensions. | Rapptz | 2019-02-23 | 14 | -184/+776 |
| | | |||||
| * | [commands] Fix up wording on HelpFormatter.get_ending_note | Rapptz | 2019-02-18 | 1 | -1/+1 |
| | | |||||
| * | [commands] add document comment to HelpFormatter.get_ending_note | cod | 2019-02-19 | 1 | -0/+1 |
| | | |||||
| * | Translated ext.commands.HelpFormatter class. | cod | 2019-02-19 | 1 | -4/+41 |
| | | | | | ext/commands/api.po | ||||
| * | Update Japanese .po files | Rapptz | 2019-02-18 | 5 | -2975/+3668 |
| | | |||||
| * | Add self_video property to VoiceState | DerpyChap | 2019-02-18 | 1 | -2/+5 |
| | | |||||
| * | Log unknown channel warning in WEBHOOK_UPDATE | CraftSpider | 2019-02-18 | 1 | -2/+3 |
| | | |||||
| * | Add guild_integrations_update event | CraftSpider | 2019-02-18 | 2 | -0/+13 |
| | | |||||
| * | Manually calculate millisceond epoch rather than bitshifting | slice | 2019-02-15 | 1 | -4/+6 |
| | | | | | Implementation by Danny. | ||||
| * | Fix system_content returning incorrect join messages | slice | 2019-02-15 | 1 | -4/+6 |
| | | |||||
| * | Add `remove()` to Reaction | Myst(MysterialPy) | 2019-02-14 | 1 | -0/+28 |
| | | | | | | | | Added a coro, `remove()` which takes in a sole parameter, `member`. This new coro will remove the reaction by the provided member from the reactions message. `message.remove_reaction(reaction, member)` was not removed as to not introduce breaking changes. | ||||
| * | [commands] Add more i18n properties for HelpFormatter | cod | 2019-02-14 | 1 | -3/+12 |
| | | | | | | | removed fixed strings "Commands:" and help page ending note. and added properties modify these strings. default behavior is not changed. fix #1886 | ||||
| * | Fix missing imports | Rapptz | 2019-02-12 | 1 | -1/+3 |
| | | |||||
| * | Expose more information from partial invites, along with counts. | Rapptz | 2019-02-12 | 6 | -27/+187 |
| | | | | | | | | | | | | | | This adds the following information. * `PartialInviteGuild` to replace `Object` patching * `PartialInviteChannel` to replace `Object` patching * Invite.approximate_member_count and Invite.approximate_presence_count The new partial objects provide better documentation on what is expected when you fetch random invites. Fixes #1830 | ||||
| * | Bump aiohttp requirement and fix AsyncWebhookAdapter | Bryan Forbes | 2019-02-12 | 2 | -2/+2 |
| | | |||||
| * | Fix documentation typo in CategoryChannel | Pedro Cunha | 2019-02-12 | 1 | -1/+1 |
| | | |||||
| * | Add PremiumType enumeration and ClientUser.premium_type | Liam H | 2019-02-12 | 2 | -3/+11 |
| | | |||||
| * | Change Activity.application_id from `str` to `int`. | BluePhoenixGame | 2019-02-12 | 1 | -2/+3 |
| | | |||||
| * | Fix missing import. | Rapptz | 2019-02-06 | 1 | -2/+2 |
| | | |||||
| * | Try to optimize for the common ASCII case. | Rapptz | 2019-02-06 | 1 | -3/+10 |
| | | | | | | This is still a slowdown (about 45ns to 300ns) but it's less severe than the original implementation (about 900 to 1100ns). | ||||
| * | [commands] Fix ext.commands help page full-width indentation | cod | 2019-02-06 | 2 | -3/+13 |
| | | | | | | add _string_width function to util. Changed string width calculate function from len() to util function _string_width(). | ||||
| * | Clarified add_listener documentation | Skyweb | 2019-02-06 | 1 | -2/+2 |
| | | |||||
| * | Use non-deprecated method of acquiring lock | Toby Harradine | 2019-02-06 | 1 | -1/+1 |
| | | |||||
| * | Fix typo in API documentation. | stuarth | 2019-02-06 | 1 | -1/+1 |
| | | |||||
| * | Remove notes about Client.messages | Xua | 2019-02-06 | 1 | -5/+5 |
| | | | | Since `Client.messages` no longer exists, I think we should remove the note about the cache being named that. | ||||
| * | commands.clean_content: escape || spoilers || | Benjamin Mintz | 2019-02-06 | 1 | -1/+1 |
| | | |||||
| * | Fix ReactionIterator for limit > 100 | Harmon | 2019-01-30 | 1 | -1/+1 |
| | | |||||
| * | Add CategoryChannel.text_channels and voice_channels | Chris | 2019-01-29 | 1 | -0/+18 |
| | | |||||
| * | Added support for comparing PermissionOverwrites | DevilXD | 2019-01-28 | 1 | -0/+7 |
| | | | | | When trying to check if a specific permission overwrite is already set on a channel, it can be done by fetching the already existing overwrite and comparing it with a one you want to set. Comparing them directly wasn't possible before, and this small change allows for that. Could be expanded for other comparison operators, not sure how it would work though. | ||||
| * | Warn on high latency and blocking heartbeat | Hornwitser | 2019-01-28 | 1 | -1/+16 |
| | | | | | | | | Add warnings for when the heartbeat is blocked for a long time and when the websocket latency is excessively high. These indicate problems with blocking the event loop and/or insufficient computing resources to keep up with the demand. | ||||
| * | Fix README.rst for PyPi | Hornwitser | 2019-01-28 | 3 | -3/+4 |
| | | | | | | | Add long_description_content_type in setup.py, fix incorrectly matched up title underlines in README.rst, and fix incorrect entry in MANIFEST.in that was forgotten when the README was renamed in 06296bf. | ||||
| * | Update voice code to vws V4 | Imayhaveborkedit | 2019-01-28 | 4 | -24/+86 |
| | | | | | | | | - 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. | ||||
| * | Fix accidental regression of 9bc48b2 in fa46b07 | Hornwitser | 2019-01-28 | 1 | -1/+1 |
| | | | | | | Occured due to difficult to spot difference in git merge when rebasing the lint changes. | ||||
| * | Bumped copyright years to 2019. | Dante Dam | 2019-01-28 | 59 | -60/+60 |
| | | |||||
| * | Fix the Context.message example to actually use ctx.message | Chris Rrapi | 2019-01-28 | 1 | -3/+2 |
| | | |||||
| * | Implement PartialEmoji == Emoji (fixes #1627) | Ben Mintz | 2019-01-28 | 1 | -0/+10 |
| | | |||||
| * | Fix user/user_id documentation for reaction remove events | MusicOnline | 2019-01-28 | 2 | -2/+2 |
| | | |||||
| * | Do None instead of falsy checks on Command attributes | Devon R | 2019-01-28 | 1 | -3/+3 |
| | | |||||
| * | Change Greedy behaviour slightly during conversion errors. | MusicOnline | 2019-01-28 | 1 | -7/+3 |
| | | | | | | Make Greedy swallow conversion errors and return the default if there are no convertible args | ||||
| * | Use a tuple for startswith in mime detection code. | Valentin | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Allow additional parameters on channel creation | Tyler | 2019-01-28 | 2 | -17/+45 |
| | | |||||
| * | Fix typo in Permissions.all_channel | StarrFox | 2019-01-28 | 1 | -1/+1 |
| | | |||||
| * | Fix Webhook states for stateful objects | Dice | 2019-01-28 | 1 | -3/+3 |
| | | |||||
| * | Fix overwriting of AuditLogDiff.roles for multiple $add/$remove keys | Rapptz | 2018-12-31 | 1 | -1/+2 |
| | | |||||
| * | Log rate limit hits into WARNING instead of INFO. | Rapptz | 2018-12-27 | 1 | -2/+2 |
| | | |||||
| * | Fix typo in exception message in Guild.edit | Rapptz | 2018-12-17 | 1 | -2/+2 |
| | | |||||