Skip to content

Latest commit

 

History

History
125 lines (72 loc) · 4.33 KB

CHANGELOG.md

File metadata and controls

125 lines (72 loc) · 4.33 KB

Release Notes

Released 2022/02/17

Fixed

  • Fix issue when calling Storage::delete with null on Laravel 9 (#74). Thanks Woeler!

Released 2021/05/16

New Features

  • Introduce the AdvancedAvatar class to use the image as an avatar / cover art in search results (@ctessier in #65).
  • Implement auto-orientation from image Exif data (@rbnhtl in #61).

Changed

  • Improve documentation
  • Remove unused CSS files
  • Added an alt attribute on the index vue's image
  • Bump Cropper.js dependency to v1.5.11

Released 2020/10/25

Fixed

  • Fix issue with the field's help text (@mziraki in #57).

Changed

Released 2020/08/29

🎉 AdvancedImage now fully inherits from the Nova Image native field!

Even though this version is a minor one, it's major in terms of what it brings. And with no breaking change!

Many of you who use this package complained that you can't use basic File's methods such as store or storeAs or storeOriginalName.

Well... this is now possible! AdvancedImage now fully inherits from Image (which inherits from File) so you can customize your image uploads the way you need, with cropping and resizing!

Here is a list of all the new available methods. Check out the Nova documentation for more details on their usage.

  • disk
  • disableDownload
  • storeOriginalName
  • storeSize
  • deletable
  • prunable
  • path
  • storeAs
  • store
  • delete
  • preview
  • thumbnail
  • squared
  • acceptedTypes

I hope your guys will enjoy this new release and keep giving me feedbacks on how to improve the package!

Released 2020/06/07

Added

  • Possibility to choose between gd or imagick image processing library (#43).
  • License file (#37). Thanks james-staffs!

Internal

  • Upgrade package dependencies (#40).

Released 2020/03/15

Added

  • This very CHANGELOG file

Fixed

  • Fix use of ->path() to specify a custom subdirectory (#29). Thanks mathd!

Released 2019/02/26

Added

Released 2019/02/15

Changed

  • Use of previewUrl instead of thumbnailUrl in the Detail and Form component (#12).

Released 2019/02/15

Fixed

  • Fix 409 Conflict when deleting the file (#5).

Released 2018/11/30

Added

  • Add S3 filesystem upload support (#1).