pull/1551/head
Karl Hobley 2015-08-26 14:08:20 +01:00
rodzic 0daef4ce9e
commit 695099f958
3 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -9,6 +9,7 @@ Changelog
* Elasticsearch backend now supports an experimental `ATOMIC_REBUILD` flag to keep the existing index available while the `update_index` task is running
* The wagtailapi module has been refactored to use Django REST Framework (Tom Christie)
* A number of permissions fixes have been made to the Wagtail admin interface. See release notes for a list of specific changes made.
* Implemented deletion of form submissions (Kyungil Choi)
* Implemented pagination in the page chooser modal
* Changed INSTALLED_APPS in project template to list apps in precedence order (Piet Delport)
* The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}`

Wyświetl plik

@ -60,6 +60,7 @@ Contributors
* Tom Christie
* Michael van Tellingen
* Scot Hacker
* Kyungil Choi
Translators

Wyświetl plik

@ -41,6 +41,7 @@ Minor features
~~~~~~~~~~~~~~
* The :mod:`~wagtail.contrib.wagtailapi` module has been refactored to use Django REST Framework
* Implemented deletion of form submissions
* Implemented pagination in the page chooser modal
* Changed INSTALLED_APPS in project template to list apps in precedence order
* The ``{% image %}`` tag now supports filters on the image variable, e.g. ``{% image primary_img|default:secondary_img width-500 %}``