From b424ccd5b0dc9d5291cc9db1bfaa456d4a353cd4 Mon Sep 17 00:00:00 2001 From: chfw Date: Mon, 29 Jan 2018 08:06:38 +0000 Subject: [PATCH] :books: update documentation --- changelog.md | 5 ++++- docs/en-us/doc_for_pyechart_developer.md | 17 ----------------- docs/zh-cn/doc_developer.md | 10 ++++++++-- 3 files changed, 12 insertions(+), 20 deletions(-) diff --git a/changelog.md b/changelog.md index 41a31cf9..0c5b695b 100644 --- a/changelog.md +++ b/changelog.md @@ -15,7 +15,10 @@ #### Fixed * [issue#322](https://github.com/pyecharts/pyecharts/issues/322) 修复在 timeline 中不能设置多个 legend 的 bug - + + #### Removed + * [PR#368](https://github.com/pyecharts/pyecharts/pull/368) `pyecharts/templates/js` 被删去了。`jupyter-echarts` 不再内嵌于 pyecharts 。 + * ### version 0.3.1 - 2017.12.13(Current) * [issue#290](https://github.com/pyecharts/pyecharts/issues/290) 紧急修复 v0.3.0 版本不能正常显示图形的严重 bug * [issue#296](https://github.com/pyecharts/pyecharts/issues/296) 修复 Timeline 不能在 notebook 中显示的 bug diff --git a/docs/en-us/doc_for_pyechart_developer.md b/docs/en-us/doc_for_pyechart_developer.md index 33480aff..5208d5f9 100644 --- a/docs/en-us/doc_for_pyechart_developer.md +++ b/docs/en-us/doc_for_pyechart_developer.md @@ -16,23 +16,6 @@ It uses plantuml and please get it from [its website](http://plantuml.com). jar -jar plantuml.jar class-relationship-diagram.uml. ``` -## Why the folder `pyecharts/templates/js` is empty? - -It is because your git did not update the submodule. Please issue the following command: - -``` -git submodule update --init --recursive -``` - -## How to merge chengjiandongx/master? - -Whenever you do the upstreaming, you are required to do an additional step because we have gotten a submodule: - -``` -git submodule update -``` - - ## How to add more javascript libraries to pyecharts All javascript libraries are now managed in a [submodule](https://git-scm.com/docs/git-submodule) [jupyter-echarts](https://github.com/chfw/jupyter-echarts). It means diff --git a/docs/zh-cn/doc_developer.md b/docs/zh-cn/doc_developer.md index 003e594e..2257b16d 100644 --- a/docs/zh-cn/doc_developer.md +++ b/docs/zh-cn/doc_developer.md @@ -2,9 +2,15 @@ ## 如何在 pyecharts 中安装更多的 Javascript 库 -现在 pyecharts 所有的 js 库均已托管在 [submodule](https://git-scm.com/docs/git-submodule) [jupyter-echarts](https://github.com/chfw/jupyter-echarts). 也就是说现在所有 js 库的更新都要经过 jupyter-echarts。 +现在 pyecharts 所有的 js 库均由 [pyecharts-cli](https://github.com/pyecharts/pyecharts-cli) 也就是说现在所有 js 库的更新都要经过 pyecharts-cli 组装。 -jupyter-echarts 是一个前端项目,如果你对前端这方面还不太熟悉的话,建议找相关的教程学习一下。 +不过不用担心,`jupyeter-echarts` 会在 pyecharts 装机的时候,一齐装上。如果有更多需求,比如世界各国地图,可以用pyecharts-cli 查询和组装。 + +``` +pyecharts-cli list +``` + +# jupyter-echarts 是一个前端项目,如果你对前端这方面还不太熟悉的话,建议找相关的教程学习一下。 ## step 1:向 jupyter-echarts 中新增你的内容