Skip to content

Commit

Permalink
Merge pull request #625 from ecomfe/release-dev
Browse files Browse the repository at this point in the history
Release 4.3.2
  • Loading branch information
pissang authored Aug 6, 2020
2 parents 9971dd6 + b49b57e commit 3e6cdda
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions dist/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -11546,7 +11546,7 @@ var instances = {}; // ZRender实例map索引
/**
* @type {string}
*/
var version = '4.3.1';
var version = '4.3.2';

/**
* Initializing a zrender instance
Expand Down Expand Up @@ -18353,7 +18353,7 @@ GradientManager.prototype.updateDom = function (gradient, dom) {
stop.setAttribute('offset', colors[i].offset * 100 + '%');

var color = colors[i].color;
if (color.indexOf('rgba' > -1)) {
if (color.indexOf('rgba') > -1) {
// Fix Safari bug that stop-color not recognizing alpha #9014
var opacity = parse(color)[3];
var hex = toHex(color);
Expand Down
2 changes: 1 addition & 1 deletion dist/zrender.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/zrender.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zrender",
"version": "4.3.1",
"version": "4.3.2",
"description": "A lightweight canvas library.",
"keywords": [
"canvas",
Expand Down
2 changes: 1 addition & 1 deletion src/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ var instances = {}; // ZRender实例map索引
/**
* @type {string}
*/
export var version = '4.3.1';
export var version = '4.3.2';

/**
* Initializing a zrender instance
Expand Down

0 comments on commit 3e6cdda

Please sign in to comment.