mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-24 06:43:46 +00:00
Fixes #2369 The static() function was being called during app load which caused a crash when the user is using STATICFILES_STORAGE=ManifestStaticFilesStorage, DEBUG=False and haven't yet collected static files. I've moved it into a property and it's now only called when a view is being rendered. This also is more consistent because we usually set media using properties (and so does Django admin).
19 lines
564 B
ReStructuredText
19 lines
564 B
ReStructuredText
===========================
|
|
Wagtail 1.4.2 release notes
|
|
===========================
|
|
|
|
.. contents::
|
|
:local:
|
|
:depth: 1
|
|
|
|
|
|
What's changed
|
|
==============
|
|
|
|
Bug fixes
|
|
~~~~~~~~~
|
|
|
|
* Streamfields no longer break on validation error
|
|
* Number of validation errors in each tab in the editor is now correctly reported again
|
|
* Userbar now opens on devices with both touch and mouse (Josh Barr)
|
|
* ``wagtail.wagtailadmin.wagtail_hooks`` no longer calls ``static`` during app load, so you can use ``ManifestStaticFilesStorage`` without calling ``collectstatic`` command
|