Skip to content

Commit b122bb6

Browse files
committed
build: release 1.6.1
1 parent dda8f95 commit b122bb6

File tree

12 files changed

+470
-422
lines changed

12 files changed

+470
-422
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.6.1 (Sep 17, 2023)
4+
5+
- Fix an issue where some CSS styles were incompatible with old browsers.
6+
37
## 1.6.0 (Aug 26, 2023)
48

59
- Add `rounded` option to the `getCroppedCanvas` method (#1047).

dist/cropper.common.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:27.943Z
8+
* Date: 2023-09-17T03:44:19.860Z
99
*/
1010

1111
'use strict';

dist/cropper.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:25.104Z
8+
* Date: 2023-09-17T03:44:17.565Z
99
*/
1010

1111
.cropper-container {
@@ -64,7 +64,7 @@
6464
display: block;
6565
height: 100%;
6666
outline: 1px solid #39f;
67-
outline-color: rgba(51, 153, 255, 75%);
67+
outline-color: rgba(51, 153, 255, 0.75);
6868
overflow: hidden;
6969
width: 100%;
7070
}
@@ -107,7 +107,7 @@
107107
.cropper-center::before,
108108
.cropper-center::after {
109109
background-color: #eee;
110-
content: " ";
110+
content: ' ';
111111
display: block;
112112
position: absolute;
113113
}
@@ -264,7 +264,7 @@
264264
.cropper-point.point-se::before {
265265
background-color: #39f;
266266
bottom: -50%;
267-
content: " ";
267+
content: ' ';
268268
display: block;
269269
height: 200%;
270270
opacity: 0;
@@ -278,7 +278,7 @@
278278
}
279279

280280
.cropper-bg {
281-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
281+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
282282
}
283283

284284
.cropper-hide {

dist/cropper.esm.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:27.943Z
8+
* Date: 2023-09-17T03:44:19.860Z
99
*/
1010

1111
function ownKeys(e, r) {

dist/cropper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:27.943Z
8+
* Date: 2023-09-17T03:44:19.860Z
99
*/
1010

1111
(function (global, factory) {

dist/cropper.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cropper.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/css/dist/cropper.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:25.104Z
8+
* Date: 2023-09-17T03:44:17.565Z
99
*/
1010

1111
.cropper-container {
@@ -64,7 +64,7 @@
6464
display: block;
6565
height: 100%;
6666
outline: 1px solid #39f;
67-
outline-color: rgba(51, 153, 255, 75%);
67+
outline-color: rgba(51, 153, 255, 0.75);
6868
overflow: hidden;
6969
width: 100%;
7070
}
@@ -107,7 +107,7 @@
107107
.cropper-center::before,
108108
.cropper-center::after {
109109
background-color: #eee;
110-
content: " ";
110+
content: ' ';
111111
display: block;
112112
position: absolute;
113113
}
@@ -264,7 +264,7 @@
264264
.cropper-point.point-se::before {
265265
background-color: #39f;
266266
bottom: -50%;
267-
content: " ";
267+
content: ' ';
268268
display: block;
269269
height: 200%;
270270
opacity: 0;
@@ -278,7 +278,7 @@
278278
}
279279

280280
.cropper-bg {
281-
background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
281+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
282282
}
283283

284284
.cropper-hide {

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
<div class="container">
8181
<div class="row">
8282
<div class="col-md">
83-
<h1>Cropper.js <small class="h6">v1.6.0</small></h1>
83+
<h1>Cropper.js <small class="h6">v1.6.1</small></h1>
8484
<p class="lead">JavaScript image cropper.</p>
8585
</div>
8686
<div class="col-md">

docs/js/cropper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Cropper.js v1.6.0
2+
* Cropper.js v1.6.1
33
* https://fengyuanchen.github.io/cropperjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2023-08-26T08:14:27.943Z
8+
* Date: 2023-09-17T03:44:19.860Z
99
*/
1010

1111
(function (global, factory) {

0 commit comments

Comments
 (0)