pull/1989/merge
Matt Westcott 2015-12-03 13:19:44 +00:00
rodzic 0071d85aa0
commit 9f3ae3c51d
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -9,11 +9,13 @@ Changelog
* Added `.alt` attribute to image renditions
* The default `src`, `width`, `height` and `alt` attributes can now be overridden by attributes passed to the `{% image %}` tag
* Added keyboard shortcuts for preview and save in the page editor
* Added `Page` methods `can_exist_under`, `can_create_at`, `can_move_to` for customising page type business rules
* Fix: HTTP cache purge now works again on Python 2 (Mitchel Cabuloy)
* Fix: Locked pages can no longer be unpublished (Alex Bridge)
* Fix: Site records now implement `get_by_natural_key`
* Fix: Creating pages at the root level (and any other instances of the base `Page` model) now properly respects the `parent_page_types` setting
* Fix: Settings menu now opens correctly from the page editor and styleguide views
* Fix: `subpage_types` / `parent_page_types` business rules are now enforced when moving pages
1.2 (12.11.2015)
~~~~~~~~~~~~~~~~

Wyświetl plik

@ -19,6 +19,7 @@ Minor features
* Added ``.alt`` attribute to image renditions
* The default ``src``, ``width``, ``height`` and ``alt`` attributes can now be overridden by attributes passed to the ``{% image %}`` tag
* Added keyboard shortcuts for preview and save in the page editor
* Added ``Page`` methods ``can_exist_under``, ``can_create_at``, ``can_move_to`` for customising page type business rules
Bug fixes
@ -29,6 +30,7 @@ Bug fixes
* Site records now implement ``get_by_natural_key``
* Creating pages at the root level (and any other instances of the base ``Page`` model) now properly respects the `parent_page_types` setting
* Settings menu now opens correctly from the page editor and styleguide views
* ``subpage_types`` / ``parent_page_types`` business rules are now enforced when moving pages
Upgrade considerations