pull/13252/head
Sage Abdullah 2025-07-17 16:42:34 +01:00
rodzic 93d09ee6fd
commit 6988daaf74
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: EB1A33CC51CC0217
2 zmienionych plików z 5 dodań i 0 usunięć

Wyświetl plik

@ -38,6 +38,7 @@
* Add `form_attrs` support to all StreamField blocks (Sage Abdullah)
* Update project template documentation to include testing instructions and include starting test file in template (Aditya (megatrron))
* Add support for `preview_value` and `default` in `Block` meta options as callables for dynamic previews within StreamField (Ziyao Yan, Sage Abdullah)
* Add previews support for generic and site settings (Sébastien Corbin, Sage Abdullah)
* Fix: Handle lazy translation strings as `preview_value` for `RichTextBlock` (Seb Corbin)
* Fix: Fix handling of newline-separated choices in form builder when using non-windows newline characters (Baptiste Mispelon)
* Fix: Ensure `WAGTAILADMIN_LOGIN_URL` is respected when logging out of the admin (Antoine Rodriguez, Ramon de Jezus)

Wyświetl plik

@ -16,6 +16,10 @@ depth: 1
The [](../reference/contrib/settings) app now allows permission over site settings to be granted on a per-site basis. This makes it possible to give non-superuser accounts full control over the configuration of an individual site. This feature was developed by Matt Westcott.
### Previews support for generic and site settings
The [](../reference/contrib/settings) app now allows previews to be enabled for generic and site setting models through `PreviewableMixin`. This makes it possible to preview your site while editing the settings. For more details, see [](enabling_previews_for_settings). This feature was developed by Sébastien Corbin and Sage Abdullah.
### List layout for images
Image listings now support both grid and list layouts, with a simple toggle for users to switch between the two. This helps CMS users manage larger collections of images, and makes it possible to display more metadata about images in the future.