Rapptz
321efb11ed
Fix typo in on_raw_reaction_remove docs.
6 years ago
Rapptz
e3631ade4c
Fix attribute error in Widget.__repr__
6 years ago
Rapptz
7c091282ce
Add equality comparisons between two assets and hashing an asset.
6 years ago
Lorenzo
b969016340
Bool fix in TextChannel.purge documentation.
6 years ago
Rapptz
6574c97a8b
[commands] Support callables in Greedy converter
6 years ago
Rapptz
ac1b9f5628
[commands] Fix lambda converters in non-module contexts.
Not sure why anyone would do this but might as well fix it.
6 years ago
apple502j
024e57efc2
Change slowmode max value in docs
6 years ago
NCPlayz
84e86ff666
Add `Permissions.stream`
Add stream to Permissions classmethods
6 years ago
Dante Dam
497894e756
Improvements to intro docs.
6 years ago
Steve C
ac2cda1ffc
[tasks] set internal task to None after canceling
6 years ago
apple502j
d15a0f541b
Remove "needs python 3.5+" from async iter section
6 years ago
Rapptz
e46842a7cd
[tasks] Add before_loop and after_loop decorators
6 years ago
Rapptz
4770f5a958
Export tasks extension
6 years ago
Rapptz
015404b01c
[commands] Add versionadded to dm_only
6 years ago
Vexs
b6b55e820f
Update FAQ with some common tags
Pointed references to random.cat to use their aws api
Added details about custom and unicode emojis to how to add a reaction
Added watching example to presence changing
Added new fetch methods to specific model FAQ
6 years ago
Rapptz
4cf96107ae
[tasks] Document version added
6 years ago
Rapptz
4513dac7a3
[tasks] Ensure total number of seconds is not less than 0.
6 years ago
Rapptz
10bc939348
[tasks] Rename Loop.run to Loop.start to avoid blocking connotations
6 years ago
Rapptz
b0c7f48caf
[tasks] Add a new background helper 'tasks' extension.
6 years ago
Rapptz
ec1b3434a2
[commands] Fix erroneous string in dm_only check
6 years ago
Dante Dam
aabbd5a446
[commands] Added dm_only check
Raises PrivateMessageOnly on failure.
6 years ago
Rapptz
50dcdac5ca
[commands] Fix references in Bot to actually link.
Exceptions can't seem to link due to a bug in Sphinx.
6 years ago
Rapptz
5b99e7d6f4
Update changelog
6 years ago
Rapptz
37e6b53216
Version bump to v1.0.1
6 years ago
Rapptz
ef0b2a1092
[commands] Properly name heading for ExtensionError
6 years ago
Imayhaveborkedit
7eb8417883
Fix voice handshake race condition
In the event that two voice_server_updates are received in a short time frame, the second one is now ignored.
6 years ago
Vexs
4df0f79a6b
Add notes warning that fetch_ methods are api calls
Also recommends using cache attributes/methods instead
6 years ago
Rapptz
407d18a30d
Fix various bugs with Asset._url None handling.
6 years ago
Rapptz
e77dec85e9
Fix cleanup code on Linux not working properly.
6 years ago
Rapptz
dcdcf1adac
Stop the event loop if it's running during cleanup.
Also handle the coroutine directly instead of using run_until_complete
6 years ago
Daniel
3a36f78e08
Use is_connected() instead of _connected in checks
Was doing a falsy check on an Event object instead of using the (unused) is_connected() function.
6 years ago
Steve C
db340fd5f9
Fix broken documentation attribute
6 years ago
Rapptz
67ec59caea
Fix issue with speaking state causing an error.
6 years ago
Rapptz
d37839f38a
Update classifier in setup.py
6 years ago
Rapptz
4a4db1a02c
Version bump to v1.0.0
6 years ago
Rapptz
3e2e6ad502
Update Japanese translation files.
6 years ago
NCPlayz
7acb7de195
Add notes stating what Guild.fetch_guild and Guild.fetch_guilds returns
Also fixed two typos.
6 years ago
Rapptz
51c64a3b73
Fix documentation so Sphinx can build semi-cleanly.
6 years ago
Rapptz
bb79f2ae81
Bump PyNaCl to 1.3.0
6 years ago
Rapptz
04262b9371
Wording nit, library -> function in load_opus
6 years ago
Rapptz
0ddc6867e9
Change all IntEnum to Enum
A testament to how many 3.5 users there are.
6 years ago
Rapptz
1da624a8b5
Remove manual documentation for AppInfo
6 years ago
Rapptz
bb5aaf2ab3
Missing a word in Attachment.save
6 years ago
Rapptz
61ee88b0fc
Fix oversight where on_disconnect did not get called on WS termination.
6 years ago
Rapptz
f8999b63ae
Fix long-standing issue with user updates not dispatching properly.
This fix is long coming. For a long time due to the addition of a
global user cache, the on_member_update event would only have the
updated user in the very first dispatch due to a quirk in the reference
only being updated once.
In order to fix this issue two things had to change:
1. There had to be a new event, `on_user_update` to complement
the equivalent member event.
2. Unnecessary copies of User had to be removed to compensate for the
performance hit from the diffing.
While doing these two fixes I also re-evaluated some more unnecessary
copies done during the PRESENCE_UPDATE to add member case while
fetch_offline_members=False is set or due to chunking issues. The
number of copies was brought down from 2 to 1, discounting the original
Member creation. Unsure on the benefits of this one, however.
N.B: this doesn't change the pre-existing behaviour of on_member_update
6 years ago
Rapptz
1a9726087a
GUILD_MEMBER_UPDATE no longer does actual user updates.
This had been delegated to PRESENCE_UPDATE a long time ago,
unfortunately.
6 years ago
Rapptz
c9fd092476
Don't use an enum when unnecessary in Member._client_status
6 years ago
Rapptz
c904e4f25b
Add a note to load_opus that it's auto loaded on Windows.
6 years ago
Rapptz
1243298b34
Add some version guarantees to the documentation.
6 years ago
khazhyk
7845bfb79b
terminate iterators immediately once out of data
if len(data) < 100, either limit was less than 100, or we ran
out of results, in both cases, we should terminate the lookup.
This fixes, e.g., hangs in audit_logs(limit=999999), and will
reduce the number of fetch calls for any case where limit is
greater than the number of results. (Prior, would just kinda
loop calling audit-logs)
6 years ago