Rapptz
12236325f6
Add a warning for self-bots in Client.login
Closes #1449
7 years ago
Kot
e15452e198
Add clarification about creating guilds
7 years ago
Rapptz
8d3b2d0b70
[commands] Fix broken handling of keyword only parameters.
Had a missing `param` argument in the new `do_conversion` code.
7 years ago
Rapptz
69ca675ca0
[commands] Fix typing.Union converters for 3.7
Guido please don't break this
7 years ago
Rapptz
52767cf315
[commands] Add documentation for BadUnionArgument
7 years ago
Rapptz
34ece4d1df
Bump websockets to 6.0 for 3.7 compatibility.
7 years ago
Rapptz
da5776a358
[commands] Make ConversionError have the original error as an attribute
7 years ago
Rapptz
92dde9aef9
[commands] Add support for typing.Union as a converter
7 years ago
Rapptz
4aecdea052
Make TextChannel.create_webhook name parameter mandatory.
7 years ago
Rapptz
351bb1927a
Fix crashing with wonky TYPING_START events.
Fixes #1439
7 years ago
khazhyk
2c7a855e11
Revert "Ensure gif avatar urls end in `.gif`"
This reverts commit 456390f417
.
This commit isn't needed anymore - the image proxy now properly
handles gifs that do not end in .gif
7 years ago
khazhyk
2321ae8d97
[commands] raise ConversionError on Converter error
This assumes that a Converter class raising non-CommandError
is a programmer error. Makes this type of error easier to
disambiguate from a generic BadArgument.
7 years ago
bmintz
87d9eefdef
[docs] discord/client: remove reference to async_event
7 years ago
bmintz
ec3435b224
Remove remaining asyncio.coroutine calls.
Also remove Client.async_event
7 years ago
khazhyk
9d301f7cae
Store guild, unavailable tuple in ready as well
This should fix userbots.
Fixes: 74380cd
("don't drop guild_available/join before ready")
7 years ago
Rapptz
983be10111
Fix __aiter__ compatibility with 3.7.
7 years ago
Rapptz
1538c78836
Change jump_to_url to jump_url and fix format.
People kept asking, might as well.
7 years ago
khazhyk
74380cd72a
don't drop guild_available/join before ready
large guilds that recieved GUILD_CREATE events prior to READY would
never dispatch guild_available/join. This is inconsistent with
smaller guilds and makes these events unreliable. Dispatch the
"delayed" guilds after they've been chunked, prior to ready.
7 years ago
Hornwitser
a93c3d931c
[commands] Change command_prefix behaviour
Change the behaviour of handling iterable command_prefix types to not
silently ignore falsy prefixes and unify behaviour for all iterable
types. Add special handling of a possible TypeError in both get_prefix
and get_context for when the prefix is a different type from what is
expected.
7 years ago
Ben Mintz
184c4302c7
docs/mimgrating.rst: CPython 3.5.2 is not supported!
The minimum version supported by aiohttp is CPython 3.5.3, not 3.5.2.
Fixes #1344 .
7 years ago
Hornwitser
96baabcaa2
Fix typo in Permissions.is_subset/is_superset
Fix the name for the other's type when raising TypeError being
incorrectly written as __class__name instead of __class__.__name__ in
the is_subset and is_superset methods of the Permissions class. This
was introduced at the creation of these methods in 21c88cf
.
7 years ago
Harmon
bf9ca405e3
Fix case insensitive command removal
7 years ago
Rapptz
0ba958bae4
Bump Sphinx to 1.7.4
7 years ago
Rapptz
607771c4f4
Fix Bot.get_prefix second parameter breaking.
7 years ago
Rapptz
5ae9ea26b1
Disable compression for websockets.
Increase of RAM and CPU doesn't give me much benefit I feel.
7 years ago
Rapptz
e51f92e78d
Fix NameError for typing context manager.
Fixes #1342
7 years ago
Rapptz
c67d95327e
Remove dead package references.
7 years ago
Rapptz
f25091efe1
Drop support for Python 3.4 and make minimum version 3.5.2.
7 years ago
Rapptz
7eb918b19e
Add Message.jump_to_url
7 years ago
Rapptz
6b75179c1f
Remove emojis from cache if they're removed from a guild.
7 years ago
Steve C
0e945915b7
Fixes various documentation errors/inconsistencies
Mostly dealing with permissions, also fixes Raw Events inclusion.
7 years ago
Rapptz
0dafdedc65
abc.GuildChannel.set_permissions can raise NotFound.
Fix #1254
7 years ago
Rapptz
07a535f514
Document user parameter in Guild.get_ban
7 years ago
slice
9fe7776a33
Add support for getting individual ban entries
7 years ago
Rapptz
60f0b22cbb
Filter null mentions when creating a Message.
7 years ago
Rapptz
56650ae7c2
Change raw events to use slotted data models instead of parameters.
This allows for internal changes in Discord to not cause a breaking
change every time something changes.
Also implements #1214 which adds guild_id to every event where
applicable.
This is a breaking change.
7 years ago
Rapptz
e04629999b
Downgrade websockets due to bugs.
https://github.com/aaugustin/websockets/issues/350 keeps causing too
many issues for too many people for this version to be used by the
public users of this library.
7 years ago
Rapptz
3cb6ac152e
Userbots do not have a DM cache cap limit.
7 years ago
Rapptz
95de4d1df1
Actually fix the order in Guild.by_category.
7 years ago
Rapptz
87a7efc410
Flip comparison in Guild.by_category.
7 years ago
Will Tekulve
ab78613c13
Force RTD to pip install rather than use setup.py install
7 years ago
Mitchell Ferree
2e4e392b25
Correct docstring for Game
7 years ago
Daniel
27063a91c7
Improve basic_voice example
Add stream option and command so we don't always have to download a file
Move repeated voice check code to before_invoke hook
Add typing indicators when making YTDLSources
7 years ago
Rapptz
796ff6d7e6
Sort voice channels below text channels in Guild.by_category
7 years ago
Rapptz
f176309179
[commands] Don't handle single quotes.
7 years ago
Rapptz
eb5defed00
Fix Webhook.guild raising an AttributeError.
Fixes #1148
7 years ago
Myst(MysterialPy)
8ba78168a6
Add Spotify intergration colour
Added property `colour` and alias `color` which returns the Spotify
integration colour (#1db954).
Technically Discord uses both (#1cb050 and #1db954) but it appears the
former is an official Spotify colour.
7 years ago
Myst(MysterialPy)
31cc4c39de
Fix _image_url returning htps
Should be https :)
Just made this a separate PR from my previous one, in-case you decide to not include it.
7 years ago
Rapptz
e9916e2844
Convert Client.activity back to an Activity-like object
7 years ago
Rapptz
61c8e35929
Missing import for _ActivityTag inside Client
7 years ago