2019-01-10 13:13:18 +00:00
|
|
|
Next release notes
|
|
|
|
==================
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
Those release notes refer to the current development branch and are reset
|
|
|
|
after each release.
|
2020-05-07 17:18:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
Increased quality of JPEG thumbnails [manual action required]
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
Default quality for JPEG thumbnails was increased from 70 to 95, as 70 was producing visible artifacts in resized images.
|
|
|
|
|
|
|
|
Because of this change, existing thumbnails will not load, and you will need to:
|
|
|
|
|
|
|
|
1. delete the ``__sized__`` directory in your ``MEDIA_ROOT`` directory
|
|
|
|
2. run ``python manage.py fw media generate-thumbnails`` to regenerate thumbnails with the enhanced quality
|
|
|
|
|
|
|
|
If you don't want to regenerate thumbnails, you can keep the old ones by adding ``THUMBNAIL_JPEG_RESIZE_QUALITY=70`` to your .env file.
|
2020-06-05 09:29:31 +00:00
|
|
|
|
2020-06-05 09:21:10 +00:00
|
|
|
Small API breaking change in ``/api/v1/libraries``
|
|
|
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
To allow easier crawling of public libraries on a pod,we had to make a slight breaking change
|
|
|
|
to the behaviour of ``GET /api/v1/libraries``.
|
|
|
|
|
|
|
|
Before, it returned only libraries owned by the current user.
|
|
|
|
|
|
|
|
Now, it returns all the accessible libraries (including ones from other users and pods).
|
|
|
|
|
|
|
|
If you are consuming the API via a third-party client and need to retrieve your libraries,
|
|
|
|
use the ``scope`` parameter, like this: ``GET /api/v1/libraries?scope=me``
|