Releases: SmileyChris/django-easy-images
Releases · SmileyChris/django-easy-images
2.0
1.4.2
Bugfixes
- Fix error when parsing options
- Fix
cover=False
not getting passed toscale_image
v1.4
Features
- Add a
cover
option. Previously this was always true (meaning a non-cropped image was only scaled down to cover the dimensions, resulting in larger image sizes). Now you can explicitly set this to false to scale the image down to fit within the dimensions.
Bugfixes
- Small fix to handling of options which were falsey.
v1.3
Change default format to webp
because avif
uses incredible amounts more memory.
1.2
Changes
Img.quote()
now will trigger thequeued_img
signal by default.
You can avoid sending this signal if any images were queued by doing:Img.quote(..., send_signal=False)
Features
- Add
BoundImg.__str__
as an easier way to get the HTML in templates.