Changelog/release note/contributor for #2279

pull/2279/merge
Karl Hobley 2016-03-01 12:32:09 +00:00
rodzic 8c8584922e
commit dc3910a613
3 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

@ -10,6 +10,7 @@ Changelog
* The set of pages displayed in the page explorer can now be customised with a new hook called `construct_explorer_page_queryset`
* The `Document` model can now be overridden using the new `WAGTAILDOCS_DOCUMENT_MODEL` setting (Alex Gleason)
* Wagtail no longer depends on django-compressor
* The page search interface now searches all fields instead of just the title (Kait Crawford)
* Snippets now support a custom `edit_handler` property (Mikalai Radchuk)
* Date/time pickers now respect the locale's 'first day of week' setting (Peter Quade)
* Refactored the way forms are constructed for the page editor, to allow custom forms to be used

Wyświetl plik

@ -105,6 +105,7 @@ Contributors
* Mikalai Radchuk
* Charlie Choiniere
* Nigel Fletton
* Kait Crawford
Translators

Wyświetl plik

@ -49,6 +49,7 @@ Wagtail no longer depends on the `django-compressor <http://django-compressor.re
Minor features
~~~~~~~~~~~~~~
* The page search interface now searches all fields instead of just the title (Kait Crawford)
* Snippets now support a custom ``edit_handler`` property; this can be used to implement a tabbed interface, for example. See :ref:`customising_the_tabbed_interface` (Mikalai Radchuk)
* Date/time pickers now respect the locale's 'first day of week' setting (Peter Quade)
* Refactored the way forms are constructed for the page editor, to allow custom forms to be used