diff options
| author | Rapptz <[email protected]> | 2016-09-26 23:32:33 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-09-26 23:32:33 -0400 |
| commit | 1a624cd0376b0ee676803bb5550712063612855d (patch) | |
| tree | a61f9998c8fdf009cf360bbfba267f1be1c7371a /docs | |
| parent | [commands] Raise exception if Paginator gets a line that is too big. (diff) | |
| download | discord.py-1a624cd0376b0ee676803bb5550712063612855d.tar.xz discord.py-1a624cd0376b0ee676803bb5550712063612855d.zip | |
Version bump to v0.13.0v0.13.0
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/whats_new.rst | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/docs/whats_new.rst b/docs/whats_new.rst index 5177a566..42f68c59 100644 --- a/docs/whats_new.rst +++ b/docs/whats_new.rst @@ -8,6 +8,42 @@ What's New This page keeps a detailed human friendly rendering of what's new and changed in specific versions. +.. _v0p13p0: + +v0.13.0 +--------- + +This is a backwards compatible update with new features. + +New Features +~~~~~~~~~~~~~ + +- Add the ability to manage emojis. + + - :meth:`Client.create_custom_emoji` to create new emoji. + - :meth:`Client.edit_custom_emoji` to edit an old emoji. + - :meth:`Client.delete_custom_emoji` to delete a custom emoji. +- Add new :attr:`Permissions.manage_emojis` toggle. + + - This applies for :class:`PermissionOverwrite` as well. +- Add new statuses for :class:`Status`. + + - :attr:`Status.dnd` (aliased with :attr:`Status.do_not_disturb`\) for Do Not Disturb. + - :attr:`Status.invisible` for setting your status to invisible (please see the docs for a caveat). +- Deprecate :meth:`Client.change_status` + + - Use :meth:`Client.change_presence` instead for better more up to date functionality. + - This method is subject for removal in a future API version. +- Add :meth:`Client.change_presence` for changing your status with the new Discord API change. + + - This is the only method that allows changing your status to invisible or do not disturb. + +Bug Fixes +~~~~~~~~~~ + +- Paginator pages do not exceed their max_size anymore (:issue:`340`) +- Do Not Disturb users no longer show up offline due to the new :class:`Status` changes. + .. _v0p12p0: v0.12.0 |