Release note for #4462

This commit is contained in:
Matt Westcott 2018-04-23 16:26:32 +01:00
parent a98f7dd03a
commit fa27773d16
4 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@ Changelog
~~~~~~~~~~~~~~~~
* Add `HelpPanel` to add HTML within an edit form (Keving Chung)
* Added direct profile picture upload to account preferences (Daniel Chimeno, Pierre Geier, Matt Westcott)
* Added API endpoint for finding pages by HTML path (Karl Hobley)
* Added time zone setting to account preferences (David Moore)
* Persist tab hash in URL to allow direct navigation to tabs in the admin interface (Ben Weatherman)

View file

@ -297,6 +297,7 @@ Contributors
* Sergey Fedoseev
* Harm Zeinstra
* David Moore
* Pierre Geier
Translators
===========

View file

@ -231,6 +231,8 @@ This setting lets you change the number of items shown at 'Your most recent edit
Allows the default ``LoginForm`` to be extended with extra fields.
.. _wagtail_gravatar_provider_url:
.. code-block:: python
WAGTAIL_GRAVATAR_PROVIDER_URL = '//www.gravatar.com/avatar'

View file

@ -17,6 +17,12 @@ A new panel type ``HelpPanel`` allows to easily add HTML within an edit form.
This new feature was developed by Kevin Chung.
Profile picture upload
~~~~~~~~~~~~~~~~~~~~~~
Users can now upload profile pictures directly through the Account Settings menu, rather than using Gravatar. Gravatar is still used as a fallback if no profile picture has been uploaded directly; a new setting :ref:`WAGTAIL_GRAVATAR_PROVIDER_URL <wagtail_gravatar_provider_url>` has been added to specify an alternative provider, or disable the use of external avatars completely. This feature was developed by Daniel Chimeno, Pierre Geier and Matt Westcott.
API lookup by page path
~~~~~~~~~~~~~~~~~~~~~~~