Skip to content

Releases: SmileyChris/django-easy-images

2.0

06 Aug 04:13
Compare
Choose a tag to compare

Backwards Incompatible Change

  • cover=False setting is now contain=True
  • contained images now don't upscale

1.4.2

05 Aug 23:09
Compare
Choose a tag to compare

Bugfixes

  • Fix error when parsing options
  • Fix cover=False not getting passed to scale_image

v1.4

04 Aug 22:44
Compare
Choose a tag to compare

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

04 Aug 22:41
Compare
Choose a tag to compare

Change default format to webp because avif uses incredible amounts more memory.

1.2

13 Jun 00:29
Compare
Choose a tag to compare
1.2

Changes

  • Img.quote() now will trigger the queued_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.