Croppie Versions Save

A Javascript Image Cropper

v2.6.4

5 years ago

Small release to fix an issue with an unassigned variable.

https://github.com/Foliotek/Croppie/pull/617

v2.6.2

6 years ago

Fix to enforceBoundary: false.

see: #484

v2.6.1

6 years ago

Small release to copy the image class when replacing the image.

v2.6.0

6 years ago

What's in this release?

  • Several bug fixes
  • Documentation updates
  • A couple new features

Bug Fixes

  • #241
  • #242
  • #247
  • #249
  • #293
  • #396
  • #409
  • #433
  • #456
  • #459
  • Probably others, sorry if I missed some.

New Features

  • Use mouseWheelZoom:'ctrl' to prevent the default behavior of allowing the mousewheel to zoom. This fixes that pesky behavior of scrolling down the page and a croppie capturing your mouse.

Breaking changes

  • The jQuery update event is now namespaced. If you were listening to it before with $('.crop').on('update', function(){}), you'll need to change it to $('.crop').on('update.croppie', function(){}). The plain javascript version didn't change.

v2.5.1

6 years ago

This release contains non-breaking accessibility changes.

v2.5.0

6 years ago

There's just a ton of changes in this release. Let's face it, something's bound to be broke, but we don't have tests and I don't have the time to test everything. Best way to find issues is to get this out there.

#349 #348 #327 #325 #323 #297 #340 #335 #342 #347 #303 #326 #300

v2.4.1

7 years ago

Fixes

v2.4.0

7 years ago

This release includes several changes:

  • Two new result types
    • type: 'blob' - which will return a file blob
    • type: 'rawcanvas' - which will return the canvas object and allow you to manipulate before getting the result
  • Responsive boundary dimensions.
    • by default the boundary will take up 100% of the container.
  • Ability to specify an image in the constructor of croppie and fetch the URL from that image
  • Fixes for enforceBoundary: false and getting the result in safari and IE11
  • Zooming tweaks

v2.3.0

7 years ago

v2.2.0

7 years ago
  • Croppie receives focus and can be controlled via keyboard
  • Fix bug in zooming on edges
  • Add event listener capabilities for update event