- Fix: Revert fix to have extension mouseup events run on "zoom" and
"select" modes (#159); breaks polygon selection - npm: Bump to 3.0.1
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
# ?
|
||||
# 3.0.1
|
||||
|
||||
- Fix: Revert fix to have extension `mouseup` events run on "zoom" and
|
||||
"select" modes (#159); breaks polygon selection
|
||||
- Fix (jgraduate->jpicker): Actually fix issue with color val check when no
|
||||
other proper results (equal to "all"); prior fix had not covered
|
||||
original intention
|
||||
|
||||
@@ -92,6 +92,7 @@ incorporating SVGEdit.
|
||||
|
||||
## Recent news
|
||||
|
||||
- 2018-10-22 Published 3.0.1 (Revert fix affecting polygon selection)
|
||||
- 2018-10-21 Published 3.0.0 (misc. improvements including centering canvas and
|
||||
key locale fixes since last RC)
|
||||
- 2018-09-30 Published 3.0.0-rc.3 with security and other fixes
|
||||
|
||||
4
dist/index-es.js
vendored
4
dist/index-es.js
vendored
@@ -16059,7 +16059,7 @@ function SvgCanvas(container, config) {
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'zoom':
|
||||
if (rubberBox != null) {
|
||||
@@ -16074,7 +16074,7 @@ function SvgCanvas(container, config) {
|
||||
height: Math.abs(realY - rStartY),
|
||||
factor: factor
|
||||
});
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'fhpath':
|
||||
// Check that the path contains at least 2 points; a degenerate one-point path
|
||||
|
||||
2
dist/index-es.min.js
vendored
2
dist/index-es.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index-es.min.js.map
vendored
2
dist/index-es.min.js.map
vendored
File diff suppressed because one or more lines are too long
4
dist/index-umd.js
vendored
4
dist/index-umd.js
vendored
@@ -16065,7 +16065,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'zoom':
|
||||
if (rubberBox != null) {
|
||||
@@ -16080,7 +16080,7 @@
|
||||
height: Math.abs(realY - rStartY),
|
||||
factor: factor
|
||||
});
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'fhpath':
|
||||
// Check that the path contains at least 2 points; a degenerate one-point path
|
||||
|
||||
2
dist/index-umd.min.js
vendored
2
dist/index-umd.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index-umd.min.js.map
vendored
2
dist/index-umd.min.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -2615,7 +2615,7 @@ const mouseUp = function (evt) {
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
return;
|
||||
case 'zoom':
|
||||
if (rubberBox != null) {
|
||||
rubberBox.setAttribute('display', 'none');
|
||||
@@ -2628,7 +2628,7 @@ const mouseUp = function (evt) {
|
||||
height: Math.abs(realY - rStartY),
|
||||
factor
|
||||
});
|
||||
break;
|
||||
return;
|
||||
case 'fhpath':
|
||||
// Check that the path contains at least 2 points; a degenerate one-point path
|
||||
// causes problems.
|
||||
|
||||
@@ -16062,7 +16062,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'zoom':
|
||||
if (rubberBox != null) {
|
||||
@@ -16077,7 +16077,7 @@
|
||||
height: Math.abs(realY - rStartY),
|
||||
factor: factor
|
||||
});
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'fhpath':
|
||||
// Check that the path contains at least 2 points; a degenerate one-point path
|
||||
|
||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "svgedit",
|
||||
"version": "3.0.0",
|
||||
"version": "3.0.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "svgedit",
|
||||
"version": "3.0.0",
|
||||
"version": "3.0.1",
|
||||
"description": "Powerful SVG-Editor for your browser ",
|
||||
"main": "dist/index-umd.js",
|
||||
"module": "dist/index-es.js",
|
||||
|
||||
@@ -16062,7 +16062,7 @@
|
||||
}
|
||||
}
|
||||
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'zoom':
|
||||
if (rubberBox != null) {
|
||||
@@ -16077,7 +16077,7 @@
|
||||
height: Math.abs(realY - rStartY),
|
||||
factor: factor
|
||||
});
|
||||
break;
|
||||
return;
|
||||
|
||||
case 'fhpath':
|
||||
// Check that the path contains at least 2 points; a degenerate one-point path
|
||||
|
||||
Reference in New Issue
Block a user