Rapptz
951dc922b0
Add edit_channel.
10 years ago
Rapptz
120b9cd3b2
Listen to CHANNEL_UPDATE events and add on_channel_update
10 years ago
Rapptz
773fc0ad97
Add support for channel topics.
10 years ago
Rapptz
a9a030cdb2
Move permission overwrite construction to the Channel constructor.
10 years ago
Rapptz
850d024684
PRESENCE_UPDATE now updates the user as well.
This means that it calls on_member_update just like the
GUILD_MEMBER_UPDATE event in an effort to keep some backwards compat.
10 years ago
Rapptz
efc84c8f1f
Most functions should now return something more meaningful.
Basically a lot of the request functions now return a booleean
indicating if the request was successful or not.
10 years ago
Rapptz
81a9330f46
Add TTS support for messages.
10 years ago
Rapptz
9559f02f95
accept_invite now works on some invite URLs.
10 years ago
Rapptz
6c54b24a6f
Remove duplicated create_channel function.
10 years ago
Hornwitser
a4c152cebc
Fix keep_alive running after logout()
_keep_alive_handler would set up another keep alive after the first one
by creating a new threading.Timer object, but Client would only keep
track of the first timer object. Thus casing the keep alive to continue
running after Client.logout calls cancel() on it's timer object, as it
no longer references the actual timer object waiting for the keep alive.
Fix by replacing _keep_alive_handler with a threading.Thread subclass
that sends keep_alives of the given interval and exits when its stop
event is set.
10 years ago
Rapptz
bbf1c5418b
Add support for logging.
10 years ago
Rapptz
a2b981d19e
Document discord.utils.find function
10 years ago
Rapptz
a5cf6d275d
Add ability to edit or delete roles from a sever.
10 years ago
Rapptz
f59ab28741
Add utils.find helper function.
10 years ago
Rapptz
d93c18b28e
Add get_default_role for servers to get the 'everyone' role.
10 years ago
Rapptz
9119f61caa
Fix KeyError with events.
10 years ago
Rapptz
73919fe152
Documentation fixes and version bump.
10 years ago
Rapptz
eed4b428aa
Add the ability to accept invites.
10 years ago
Rapptz
4aecd5f7b5
Add on_error event for doing something about uncaught exceptions.
10 years ago
Rapptz
568c2a773b
Remove owner_id from Server and use owner instead.
owner will be the actual Member who owns the server.
10 years ago
Rapptz
e11aaa0566
Add on_member_update event.
10 years ago
Rapptz
80eb567520
Add support for creating invites.
10 years ago
Rapptz
b4e6591c9d
Refactor parse_time into its own utils file.
10 years ago
Rapptz
b00ad4ad79
Use kwargs if the number of arguments needed is too many.
10 years ago
Rapptz
5f69fe9b07
Add ability to delete channels.
10 years ago
Rapptz
0e29d5a136
Add the ability to create channels.
10 years ago
Rapptz
7ab73bdf45
Add support for editing your profile.
10 years ago
Rapptz
9deb743df3
Store email in the client as an attribute.
10 years ago
Rapptz
81aa76021a
Update README.
10 years ago
Rapptz
54fa8dea69
Add the ability to kick, ban and unban users from a server.
10 years ago
Rapptz
c98a723f06
Add on_server_create and on_server_delete events.
10 years ago
Rapptz
4124b097c7
WebSocket gateway now properly uses the auth headers.
10 years ago
Rapptz
afdada133f
Permissions are now properties rather than functions.
This allows you to set or retrieve specific bits through a
higher level API to facilitate editing in the future.
10 years ago
Rapptz
b6ab4d54d3
Sandbox some events that didn't get sandboxed.
10 years ago
megamit
6a40a5da2e
Fix issue with author changing type
When cycling through the attributes of the data json 'author' within 'message' which was previously a user object is overwritten with a dictionary. This causes an AttributeError to be thrown ( and silently swallowed... thanks except: pass) whenever any of its attributes are referenced in the form message.author.x. User data should change in this step and the user object should not be modified for any reason so its safe to skip updating it.
10 years ago
Rapptz
e60777e68b
Document exceptions and change conf.py version detection.
10 years ago
Rapptz
abc32f5b5d
Remove unnecessary comment.
10 years ago
Rapptz
b7fc383013
Python3 import fixes.
10 years ago
Rapptz
faa7b726cd
Quick documentation fixes
10 years ago
Rapptz
5db2b31114
Version bump to v0.4.0.
10 years ago
Rapptz
b466a2615e
Handle GUILD_MEMBER_REMOVE/GUILD_MEMBER_ADD events.
Thanks izy.
10 years ago
Rapptz
197e7c2861
Remove no_offline_members option
10 years ago
Rapptz
795b8ceffe
on_status now takes only a member.
10 years ago
Rapptz
52852f4fd2
Give members their server as an attribute.
10 years ago
Rapptz
3aa8cc93a7
Members now have status info.
10 years ago
Rapptz
fbb045cc1f
Add MANIFEST file for pip.
10 years ago
Rapptz
29b71a7e88
Move websocket hub to the new gateway.
10 years ago
Rapptz
af5292872b
Parse roles in the member building.
10 years ago
Rapptz
a85aab92b7
Version bump.
10 years ago
Rapptz
0e4ccad32a
Parse permission_overwrites in every Channel instance.
10 years ago