This is an automated email from the ASF dual-hosted git repository.

sushuang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git


The following commit(s) were added to refs/heads/master by this push:
     new 0ba8769  4.1.0.rc2
0ba8769 is described below

commit 0ba87692d0754dea79d2576284f88c99c474f98c
Author: sushuang <sushuang0...@gmail.com>
AuthorDate: Sun Apr 29 18:09:22 2018 +0800

    4.1.0.rc2
---
 dist/echarts-en.common.js      |  8 +++++++-
 dist/echarts-en.common.min.js  |  1 +
 dist/echarts-en.js             | 40 ++++++++++++++++++++++++++++++++++++++--
 dist/echarts-en.js.map         |  2 +-
 dist/echarts-en.min.js         |  1 +
 dist/echarts-en.simple.js      |  8 +++++++-
 dist/echarts-en.simple.min.js  |  1 +
 dist/echarts.common.js         |  8 +++++++-
 dist/echarts.common.min.js     |  1 +
 dist/echarts.js                | 40 ++++++++++++++++++++++++++++++++++++++--
 dist/echarts.js.map            |  2 +-
 dist/echarts.min.js            |  1 +
 dist/echarts.simple.js         |  8 +++++++-
 dist/echarts.simple.min.js     |  1 +
 dist/extension/bmap.min.js     |  1 +
 dist/extension/dataTool.min.js |  1 +
 index.common.js                |  1 +
 index.js                       |  1 +
 index.simple.js                |  1 +
 19 files changed, 117 insertions(+), 10 deletions(-)

diff --git a/dist/echarts-en.common.js b/dist/echarts-en.common.js
index 8a6b06a..4d73991 100644
--- a/dist/echarts-en.common.js
+++ b/dist/echarts-en.common.js
@@ -31048,6 +31048,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -31190,7 +31196,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
diff --git a/dist/echarts-en.common.min.js b/dist/echarts-en.common.min.js
index 8034e1e..8ab617c 100644
--- a/dist/echarts-en.common.min.js
+++ b/dist/echarts-en.common.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(zp=null),Lp[t]=e}function 
n(t){if(null==t||"object"!=typeof t)return t;var e=t,i=Ip.call(t);if("[object 
Array]"===i){if(!z(t)){e=[];for(var r=0,o=t.length;r<o;r++)e[r]=n(t[r])}}else 
if(Mp[i]){if(!z(t)){var 
a=t.constructor;if(t.constructor.from)e=a.from(t);else{e=new a( [...]
diff --git a/dist/echarts-en.js b/dist/echarts-en.js
index 938eeef..c1b4234 100644
--- a/dist/echarts-en.js
+++ b/dist/echarts-en.js
@@ -31141,6 +31141,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -31283,7 +31289,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
@@ -46078,6 +46084,13 @@ SeriesModel.extend({
 * under the License.
 */
 
+/*
+* The tree layout implementation references to d3.js
+* (https://github.com/d3/d3-hierarchy). The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 /**
  * @file The layout algorithm of node-link tree diagrams. Here we using 
Reingold-Tilford algorithm to drawing
  *       the tree.
@@ -49537,6 +49550,14 @@ function mapVisual$1(nodeModel, visuals, child, index, 
mapping, seriesModel) {
 * under the License.
 */
 
+/*
+* The treemap layout implementation references to the treemap
+* layout of d3.js (d3/src/layout/treemap.js in v3). The use of
+* the source code of this file is also subject to the terms
+* and consitions of its license (BSD-3Clause, see
+* <echarts/src/licenses/LICENSE-d3>).
+*/
+
 var mathMax$4 = Math.max;
 var mathMin$4 = Math.min;
 var retrieveValue = retrieve;
@@ -49657,7 +49678,8 @@ var treemapLayout = {
 /**
  * Layout treemap with squarify algorithm.
  * @see 
https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf
- * @see https://github.com/mbostock/d3/blob/master/src/layout/treemap.js
+ * The implementation references to the treemap layout of d3.js.
+ * See the license statement at the head of this file.
  *
  * @protected
  * @param {module:echarts/data/Tree~TreeNode} node
@@ -52697,6 +52719,13 @@ var circularLayout = function (ecModel) {
 * under the License.
 */
 
+/*
+* The layout implementation references to d3.js. The use of
+* the source code of this file is also subject to the terms
+* and consitions of its license (BSD-3Clause, see
+* <echarts/src/licenses/LICENSE-d3>).
+*/
+
 var scaleAndAdd$2 = scaleAndAdd;
 
 // function adjacentNode(n, e) {
@@ -57735,6 +57764,13 @@ registerAction({
 * under the License.
 */
 
+/*
+* The implementation references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
+
 /**
  * nest helper used to group by the array.
  * can specified the keys and sort the keys.
diff --git a/dist/echarts-en.js.map b/dist/echarts-en.js.map
index efc4447..1c34d7d 100644
--- a/dist/echarts-en.js.map
+++ b/dist/echarts-en.js.map
@@ -1 +1 @@
-{"version":3,"file":"echarts-en.js","sources":["../src/config.js","../../zrender/src/core/guid.js","../../zrender/src/core/env.js","../../zrender/src/core/util.js","../../zrender/src/core/vector.js","../../zrender/src/mixin/Draggable.js","../../zrender/src/mixin/Eventful.js","../../zrender/src/Handler.js","../../zrender/src/core/matrix.js","../../zrender/src/mixin/Transformable.js","../../zrender/src/animation/easing.js","../../zrender/src/animation/Clip.js","../../zrender/src/core/LRU.j
 [...]
\ No newline at end of file
+{"version":3,"file":"echarts-en.js","sources":["../src/config.js","../../zrender/src/core/guid.js","../../zrender/src/core/env.js","../../zrender/src/core/util.js","../../zrender/src/core/vector.js","../../zrender/src/mixin/Draggable.js","../../zrender/src/mixin/Eventful.js","../../zrender/src/Handler.js","../../zrender/src/core/matrix.js","../../zrender/src/mixin/Transformable.js","../../zrender/src/animation/easing.js","../../zrender/src/animation/Clip.js","../../zrender/src/core/LRU.j
 [...]
\ No newline at end of file
diff --git a/dist/echarts-en.min.js b/dist/echarts-en.min.js
index 4e559ee..5c8ee5c 100644
--- a/dist/echarts-en.min.js
+++ b/dist/echarts-en.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(v_=null),g_[t]=e}function 
i(t){if(null==t||"object"!=typeof t)return t;var e=t,n=l_.call(t);if("[object 
Array]"===n){if(!O(t)){e=[];for(var o=0,a=t.length;o<a;o++)e[o]=i(t[o])}}else 
if(s_[n]){if(!O(t)){var 
r=t.constructor;if(t.constructor.from)e=r.from(t);else{e=new r( [...]
diff --git a/dist/echarts-en.simple.js b/dist/echarts-en.simple.js
index e44b515..ae1830a 100644
--- a/dist/echarts-en.simple.js
+++ b/dist/echarts-en.simple.js
@@ -33335,6 +33335,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -33477,7 +33483,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
diff --git a/dist/echarts-en.simple.min.js b/dist/echarts-en.simple.min.js
index 3af9587..54f8207 100644
--- a/dist/echarts-en.simple.min.js
+++ b/dist/echarts-en.simple.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(Lh=null),kh[t]=e}function 
n(t){if(null==t||"object"!=typeof t)return t;var e=t,i=bh.call(t);if("[object 
Array]"===i){if(!E(t)){e=[];for(var r=0,a=t.length;r<a;r++)e[r]=n(t[r])}}else 
if(wh[i]){if(!E(t)){var 
o=t.constructor;if(t.constructor.from)e=o.from(t);else{e=new o( [...]
diff --git a/dist/echarts.common.js b/dist/echarts.common.js
index f0dcd7b..c9db057 100644
--- a/dist/echarts.common.js
+++ b/dist/echarts.common.js
@@ -31106,6 +31106,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -31248,7 +31254,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
diff --git a/dist/echarts.common.min.js b/dist/echarts.common.min.js
index 8b6b6dd..a1829e3 100644
--- a/dist/echarts.common.min.js
+++ b/dist/echarts.common.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(zp=null),Lp[t]=e}function 
n(t){if(null==t||"object"!=typeof t)return t;var e=t,i=Ip.call(t);if("[object 
Array]"===i){if(!z(t)){e=[];for(var r=0,o=t.length;r<o;r++)e[r]=n(t[r])}}else 
if(Sp[i]){if(!z(t)){var 
a=t.constructor;if(t.constructor.from)e=a.from(t);else{e=new a( [...]
diff --git a/dist/echarts.js b/dist/echarts.js
index 4fa898f..aa648d8 100644
--- a/dist/echarts.js
+++ b/dist/echarts.js
@@ -31199,6 +31199,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -31341,7 +31347,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
@@ -46136,6 +46142,13 @@ SeriesModel.extend({
 * under the License.
 */
 
+/*
+* The tree layout implementation references to d3.js
+* (https://github.com/d3/d3-hierarchy). The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 /**
  * @file The layout algorithm of node-link tree diagrams. Here we using 
Reingold-Tilford algorithm to drawing
  *       the tree.
@@ -49595,6 +49608,14 @@ function mapVisual$1(nodeModel, visuals, child, index, 
mapping, seriesModel) {
 * under the License.
 */
 
+/*
+* The treemap layout implementation references to the treemap
+* layout of d3.js (d3/src/layout/treemap.js in v3). The use of
+* the source code of this file is also subject to the terms
+* and consitions of its license (BSD-3Clause, see
+* <echarts/src/licenses/LICENSE-d3>).
+*/
+
 var mathMax$4 = Math.max;
 var mathMin$4 = Math.min;
 var retrieveValue = retrieve;
@@ -49715,7 +49736,8 @@ var treemapLayout = {
 /**
  * Layout treemap with squarify algorithm.
  * @see 
https://graphics.ethz.ch/teaching/scivis_common/Literature/squarifiedTreeMaps.pdf
- * @see https://github.com/mbostock/d3/blob/master/src/layout/treemap.js
+ * The implementation references to the treemap layout of d3.js.
+ * See the license statement at the head of this file.
  *
  * @protected
  * @param {module:echarts/data/Tree~TreeNode} node
@@ -52755,6 +52777,13 @@ var circularLayout = function (ecModel) {
 * under the License.
 */
 
+/*
+* The layout implementation references to d3.js. The use of
+* the source code of this file is also subject to the terms
+* and consitions of its license (BSD-3Clause, see
+* <echarts/src/licenses/LICENSE-d3>).
+*/
+
 var scaleAndAdd$2 = scaleAndAdd;
 
 // function adjacentNode(n, e) {
@@ -57793,6 +57822,13 @@ registerAction({
 * under the License.
 */
 
+/*
+* The implementation references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
+
 /**
  * nest helper used to group by the array.
  * can specified the keys and sort the keys.
diff --git a/dist/echarts.js.map b/dist/echarts.js.map
index 3f4bcd2..e6e9c02 100644
--- a/dist/echarts.js.map
+++ b/dist/echarts.js.map
@@ -1 +1 @@
-{"version":3,"file":"echarts.js","sources":["../src/config.js","../../zrender/src/core/guid.js","../../zrender/src/core/env.js","../../zrender/src/core/util.js","../../zrender/src/core/vector.js","../../zrender/src/mixin/Draggable.js","../../zrender/src/mixin/Eventful.js","../../zrender/src/Handler.js","../../zrender/src/core/matrix.js","../../zrender/src/mixin/Transformable.js","../../zrender/src/animation/easing.js","../../zrender/src/animation/Clip.js","../../zrender/src/core/LRU.js",
 [...]
\ No newline at end of file
+{"version":3,"file":"echarts.js","sources":["../src/config.js","../../zrender/src/core/guid.js","../../zrender/src/core/env.js","../../zrender/src/core/util.js","../../zrender/src/core/vector.js","../../zrender/src/mixin/Draggable.js","../../zrender/src/mixin/Eventful.js","../../zrender/src/Handler.js","../../zrender/src/core/matrix.js","../../zrender/src/mixin/Transformable.js","../../zrender/src/animation/easing.js","../../zrender/src/animation/Clip.js","../../zrender/src/core/LRU.js",
 [...]
\ No newline at end of file
diff --git a/dist/echarts.min.js b/dist/echarts.min.js
index 6aefcf6..e9d6afb 100644
--- a/dist/echarts.min.js
+++ b/dist/echarts.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(v_=null),g_[t]=e}function 
i(t){if(null==t||"object"!=typeof t)return t;var e=t,n=l_.call(t);if("[object 
Array]"===n){if(!O(t)){e=[];for(var o=0,a=t.length;o<a;o++)e[o]=i(t[o])}}else 
if(s_[n]){if(!O(t)){var 
r=t.constructor;if(t.constructor.from)e=r.from(t);else{e=new r( [...]
diff --git a/dist/echarts.simple.js b/dist/echarts.simple.js
index d749c4d..fecabef 100644
--- a/dist/echarts.simple.js
+++ b/dist/echarts.simple.js
@@ -33393,6 +33393,12 @@ function getValueAxisStart(baseAxis, valueAxis, 
stacked) {
 * under the License.
 */
 
+/*
+* The `scaleLevels` references to d3.js. The use of the source
+* code of this file is also subject to the terms and consitions
+* of its license (BSD-3Clause, see <echarts/src/licenses/LICENSE-d3>).
+*/
+
 // [About UTC and local time zone]:
 // In most cases, `number.parseDate` will treat input data string as local time
 // (except time zone is specified in time string). And `format.formateTime` 
returns
@@ -33535,7 +33541,7 @@ each$1(['contain', 'normalize'], function (methodName) {
     };
 });
 
-// Steps from d3
+// Steps from d3, see the license statement at the top of this file.
 var scaleLevels = [
     // Format              interval
     ['hh:mm:ss', ONE_SECOND],          // 1s
diff --git a/dist/echarts.simple.min.js b/dist/echarts.simple.min.js
index dda62be..9ec27ae 100644
--- a/dist/echarts.simple.min.js
+++ b/dist/echarts.simple.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports):"function"==typeof 
define&&define.amd?define(["exports"],e):e(t.echarts={})}(this,function(t){"use 
strict";function e(t,e){"createCanvas"===t&&(Lh=null),kh[t]=e}function 
n(t){if(null==t||"object"!=typeof t)return t;var e=t,i=bh.call(t);if("[object 
Array]"===i){if(!E(t)){e=[];for(var r=0,a=t.length;r<a;r++)e[r]=n(t[r])}}else 
if(wh[i]){if(!E(t)){var 
o=t.constructor;if(t.constructor.from)e=o.from(t);else{e=new o( [...]
diff --git a/dist/extension/bmap.min.js b/dist/extension/bmap.min.js
index 1ed929c..e5d49d1 100644
--- a/dist/extension/bmap.min.js
+++ b/dist/extension/bmap.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(t,e){"object"==typeof exports&&"undefined"!=typeof 
module?e(exports,require("echarts")):"function"==typeof 
define&&define.amd?define(["exports","echarts"],e):e(t.bmap={},t.echarts)}(this,function(t,e){"use
 strict";function 
o(t,e){this._bmap=t,this.dimensions=["lng","lat"],this._mapOffset=[0,0],this._api=e,this._projection=new
 BMap.MercatorProjection}function n(t,o){return 
o=o||[0,0],e.util.map([0,1],function(e){var n=o[e],i=t[e]/2,a=[],r=[];return 
a[e]=n-i,r[e]=n+i,a[1-e]=r[1-e [...]
diff --git a/dist/extension/dataTool.min.js b/dist/extension/dataTool.min.js
index 6d50576..cee676b 100644
--- a/dist/extension/dataTool.min.js
+++ b/dist/extension/dataTool.min.js
@@ -18,4 +18,5 @@
 * under the License.
 */
 
+
 !function(e,t){"object"==typeof exports&&"undefined"!=typeof 
module?t(exports,require("echarts")):"function"==typeof 
define&&define.amd?define(["exports","echarts"],t):t(e.dataTool={},e.echarts)}(this,function(e,t){"use
 strict";function r(e,t,r){if(e&&t){if(e.map&&e.map===f)return 
e.map(t,r);for(var 
a=[],n=0,o=e.length;n<o;n++)a.push(t.call(r,e[n],n,e));return a}}function 
a(e){return 
e?r(u(e,"attribute"),function(e){return{id:i(e,"id"),title:i(e,"title"),type:i(e,"type")}}):[]}function
 n [...]
diff --git a/index.common.js b/index.common.js
index 07dc136..28b776d 100644
--- a/index.common.js
+++ b/index.common.js
@@ -17,6 +17,7 @@
 * specific language governing permissions and limitations
 * under the License.
 */
+
 var _echarts = require("./lib/echarts");
 
 (function () {
diff --git a/index.js b/index.js
index 1107729..4621da7 100644
--- a/index.js
+++ b/index.js
@@ -17,6 +17,7 @@
 * specific language governing permissions and limitations
 * under the License.
 */
+
 var _echarts = require("./lib/echarts");
 
 (function () {
diff --git a/index.simple.js b/index.simple.js
index deb30bd..d43dbc3 100644
--- a/index.simple.js
+++ b/index.simple.js
@@ -17,6 +17,7 @@
 * specific language governing permissions and limitations
 * under the License.
 */
+
 var _echarts = require("./lib/echarts");
 
 (function () {

-- 
To stop receiving notification emails like this one, please contact
sushu...@apache.org.

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to