Skip to content

Commit

Permalink
release 3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
100pah committed Aug 31, 2017
1 parent 919567c commit f0aa73b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
17 changes: 8 additions & 9 deletions build/zrender.js
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ define('zrender/core/util',['require'],function(require) {
},
// Do not use this method if performance sensitive.
removeKey: function (key) {
delete this[key];
delete this[HASH_MAP_PREFIX + key];
}
};

Expand Down Expand Up @@ -4247,6 +4247,9 @@ define('zrender/mixin/Animatable',['require','../animation/Animator','../core/ut
},

/**
* Caution: this method will stop previous animation.
* So do not use this method to one element twice before
* animation starts, unless you know what you are doing.
* @param {Object} target
* @param {number} [time=500] Time in ms
* @param {string} [easing='linear']
Expand Down Expand Up @@ -8465,7 +8468,7 @@ define('zrender/graphic/Style',['require','./helper/text'],function (require) {
/**
* @type {string}
*/
fill: '#000000',
fill: '#000',

/**
* @type {string}
Expand Down Expand Up @@ -8745,10 +8748,6 @@ define('zrender/graphic/Style',['require','./helper/text'],function (require) {
*/
blend: null,

normalize: function () {
textHelper.normalizeTextStyle(this);
},

/**
* @param {CanvasRenderingContext2D} ctx
*/
Expand Down Expand Up @@ -10730,7 +10729,7 @@ define('zrender/zrender',['require','./core/guid','./core/env','./core/util','./
/**
* @type {string}
*/
zrender.version = '3.6.0';
zrender.version = '3.6.1';

/**
* Initializing a zrender instance
Expand Down Expand Up @@ -15964,11 +15963,11 @@ if (!require('../core/env').canvasSupported) {
catch (e) {}

updateFillAndStroke(textVmlEl, 'fill', {
fill: fromTextEl ? style.fill : style.textFill,
fill: style.textFill,
opacity: style.opacity
}, this);
updateFillAndStroke(textVmlEl, 'stroke', {
stroke: fromTextEl ? style.stroke : style.textStroke,
stroke: style.textStroke,
opacity: style.opacity,
lineDash: style.lineDash
}, this);
Expand Down
5 changes: 1 addition & 4 deletions build/zrender.min.js

Large diffs are not rendered by default.

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": "3.6.0",
"version": "3.6.1",
"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 @@ -31,7 +31,7 @@ define(function (require) {
/**
* @type {string}
*/
zrender.version = '3.6.0';
zrender.version = '3.6.1';

/**
* Initializing a zrender instance
Expand Down

0 comments on commit f0aa73b

Please sign in to comment.