Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exif fix #289

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 6 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
## 0.5.2 (May 18, 2018)

### Bug fixes

* Added exif orientation fix

## 0.5.1 (February 27, 2016)

### Bug fixes

* Fixed wrong image offset when rotation is negative.
* Fixed bug where image background can be dragged and moved.


## 0.5.0 (February 27, 2016)

### Migration guide
Expand Down Expand Up @@ -64,14 +69,12 @@ Make sure to update class names in your selectors.

* Now remote images are loaded through AJAX and rendered as data URI strings, which addresses CORS issues. `allowCrossOrigin` option is no longer necessary and therefore removed.


## 0.4.5 (September 27, 2015)

### Bug fixes

* Fixed an issue where cropit exports blank images on Safari. Removed progressive resizing, which may degrade cropped image quality. For high quality resizing, using a server-side tool is recommended.


## 0.4.4 (September 12, 2015)

### New features
Expand All @@ -84,14 +87,12 @@ Make sure to update class names in your selectors.

* Fixed bug where `image-loaded` class is removed if a small image is loaded and rejected


## 0.4.1 (August 2, 2015)

### Bug fixes

* Fixed crossOrigin preventing image from loading in Safari and Firefox.


## 0.4.0 (July 7, 2015)

### New features
Expand All @@ -102,21 +103,18 @@ Make sure to update class names in your selectors.

* Replaced `rejectSmallImage` option with `smallImage`. `rejectSmallImage: true` is now `smallImage: 'reject'`, and `rejectSmallImage: false` is now `smallImage: 'allow'`.


## 0.3.2 (July 3, 2015)

### New features

* Added back `allowCrossOrigin` option


## 0.3.1 (June 30, 2015)

### Bug fixes

* Fixed jQuery import in AMD and CommonJS.


## 0.3.0 (June 21, 2015)

### New features
Expand All @@ -136,7 +134,6 @@ Make sure to update class names in your selectors.
* Major refactor -- rewrote in ES6! No more CoffeeScript.
* Now build with Webpack and removed Grunt


## 0.2.0 (December 16, 2014)

### New features
Expand All @@ -149,7 +146,6 @@ Make sure to update class names in your selectors.

* Renamed option `freeImageMove` -> `freeMove`


## 0.1.9 (October 19, 2014)

### New features
Expand Down
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cropit",
"description": "Customizable crop and zoom.",
"version": "0.5.1",
"version": "0.5.2",
"authors": [
"Scott Cheng <[email protected]>",
"Yufei Liu <[email protected]>"
Expand All @@ -20,6 +20,7 @@
"test"
],
"dependencies": {
"jquery": ">=1.9"
"exif-js": "^2.3.0",
"jquery": "^2.2.4"
}
}
5 changes: 3 additions & 2 deletions cropit.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"crop",
"zoom"
],
"version": "0.5.1",
"version": "0.5.2",
"author": {
"name": "Scott Cheng",
"email": "[email protected]",
Expand All @@ -32,6 +32,7 @@
"docs": "https://github.com/scottcheng/cropit#readme",
"download": "https://github.com/scottcheng/cropit/archive/master.zip",
"dependencies": {
"jquery": ">=1.9"
"exif-js": "^2.3.0",
"jquery": "^2.2.4"
}
}
Loading