File tree Expand file tree Collapse file tree 7 files changed +11
-6
lines changed
Expand file tree Collapse file tree 7 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1+ ## v1.0.10 (7 May 2020)
2+ * fixed: issue in Web Worker when onProgress is undefined [ #50 ] ( https://github.com/Donaldcwl/browser-image-compression/issues/50 )
3+ * fixed: handle behavior change of exif orientation in iOS 13.4.1 and Safari 13.1 Desktop [ #52 ] ( https://github.com/Donaldcwl/browser-image-compression/issues/52 )
4+ * updated: typescript type definitions to resolve [ #54 ] ( https://github.com/Donaldcwl/browser-image-compression/issues/54 )
5+
16## v1.0.9 (25 Mar 2020)
27* updated: compression becomes less aggressive, output file is closer to the 'maxWidthOrHeight' and/or 'maxSizeMB' in config
38* fixed: file size increased in specific situation
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ yarn add browser-image-compression
1818```
1919or use a CDN like [ delivrjs] :
2020```
21- https://cdn.jsdelivr.net/npm/browser-image-compression@1.0.9 /dist/browser-image-compression.js
21+ https://cdn.jsdelivr.net/npm/browser-image-compression@1.0.10 /dist/browser-image-compression.js
2222or
2323https://cdn.jsdelivr.net/npm/browser-image-compression@latest/dist/browser-image-compression.js
2424```
Original file line number Diff line number Diff line change 2424 "@angular/router" : " ~9.1.4" ,
2525 "@angular/upgrade" : " ~9.1.4" ,
2626 "angular-in-memory-web-api" : " ~0.9.0" ,
27- "browser-image-compression" : " ^1.0.9 " ,
27+ "browser-image-compression" : " ^1.0.10 " ,
2828 "rxjs" : " ~6.5.4" ,
2929 "zone.js" : " ~0.10.3"
3030 },
Original file line number Diff line number Diff line change 66 "@testing-library/jest-dom" : " ^4.2.4" ,
77 "@testing-library/react" : " ^9.3.2" ,
88 "@testing-library/user-event" : " ^7.1.2" ,
9- "browser-image-compression" : " ^1.0.9 " ,
9+ "browser-image-compression" : " ^1.0.10 " ,
1010 "react" : " ^16.13.0" ,
1111 "react-dom" : " ^16.13.0" ,
1212 "react-scripts" : " 3.4.0"
Original file line number Diff line number Diff line change 9696 } )
9797 }
9898</ script >
99- < script type ="text/javascript " src ="https://cdn.jsdelivr.net/npm/browser-image-compression@1.0.9 /dist/browser-image-compression.js "> </ script >
99+ < script type ="text/javascript " src ="https://cdn.jsdelivr.net/npm/browser-image-compression@1.0.10 /dist/browser-image-compression.js "> </ script >
100100</ body >
101101</ html >
Original file line number Diff line number Diff line change @@ -88,6 +88,6 @@ imageCompression.getExifOrientation = getExifOrientation
8888imageCompression . handleMaxWidthOrHeight = handleMaxWidthOrHeight
8989imageCompression . followExifOrientation = followExifOrientation
9090imageCompression . cleanupMemory = cleanupCanvasMemory
91- imageCompression . version = '1.0.9 '
91+ imageCompression . version = '1.0.10 '
9292
9393export default imageCompression
Original file line number Diff line number Diff line change 11{
22 "name" : " browser-image-compression" ,
3- "version" : " 1.0.9 " ,
3+ "version" : " 1.0.10 " ,
44 "description" : " Compress images in the browser" ,
55 "main" : " dist/browser-image-compression.js" ,
66 "module" : " dist/browser-image-compression.mjs" ,
You can’t perform that action at this time.
0 commit comments