diff --git a/README.md b/README.md index 4ae4ba46..434e5e31 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,16 @@ This is an improved work of the great plugin [morris.js](https://github.com/morr Source code of examples is available [here](https://github.com/pierresh/morris.js/blob/master/examples/image.html) ## Changelog +### 0.6.4 (19th July 2018) +- display segments in pie charts even if total = 0 [Issue #13](https://github.com/pierresh/morris.js/issues/13) +- can add padding to pie charts [Issue #9](https://github.com/pierresh/morris.js/issues/9) +- options extraClassLine and extraClassCircle for line charts [Issue #7](https://github.com/pierresh/morris.js/pull/7) +- option to display customized text when pie chart has no data [Issue #705](https://github.com/morrisjs/morris.js/issues/705) + ### 0.6.3 (16th September 2018) - PostUnits and preUnits for pie chart added - Method to destroy [Issue #569](https://github.com/morrisjs/morris.js/issues/569) -- Ymin2 and Ymax2 are now considered [Issue #569](https://github.com/pierresh/morris.js/issues/5) +- Ymin2 and Ymax2 are now considered [Issue #5](https://github.com/pierresh/morris.js/issues/5) ### 0.6.2 (13th March 2018) - Color data labels is defined automatically (black or white) according to color of element diff --git a/morris.js b/morris.js index de36cb8d..6380f661 100644 --- a/morris.js +++ b/morris.js @@ -1,5 +1,5 @@ /* @license -morris.js06 v0.6.3 +morris.js06 v0.6.4 https://pierresh.github.io/morris.js/ Copyright 2019 Olly Smith All rights reserved. Licensed under the BSD-2-Clause License. diff --git a/morris.min.js b/morris.min.js index b8349081..0bc66c44 100644 --- a/morris.min.js +++ b/morris.min.js @@ -1,5 +1,5 @@ /* @license -morris.js06 v0.6.3 +morris.js06 v0.6.4 https://pierresh.github.io/morris.js/ Copyright 2019 Olly Smith All rights reserved. Licensed under the BSD-2-Clause License. diff --git a/package.json b/package.json index 66267751..3153f3a6 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,30 @@ { "name": "morris.js06", - "version": "0.6.3", - "homepage": "http://pierresh.github.com/morris.js", - "license": "BSD-2-Clause", "description": "Fork of morrisjs: no jQuery + awesomeness, have a look! :-)", + "version": "0.6.4", "author": { "name": "Olly Smith", "email": "olly@oesmith.co.uk" }, + "private": false, + "keywords": [ + "animation", + "javascript", + "morris.js" + ], "main": "morris.min.js", + "homepage": "http://pierresh.github.com/morris.js", + "license": "BSD-2-Clause", "repository": { "type": "git", - "url": "git://github.com/pierresh/morris.js.git" + "url": "https://github.com/pierresh/morris.js.git" }, "bugs": { "url": "https://github.com/pierresh/morris.js/issues" }, + "dependencies": { + "raphael": "^2.2.7" + }, "devDependencies": { "matchdep": "~0.1.2", "grunt": "~0.4.1", @@ -28,10 +37,14 @@ "grunt-shell": "~0.5.0", "bower": "1.3.8" }, + "contributors": [{ + "name": "a lot of people", + "url": "https://github.com/morrisjs/morris.js/graphs/contributors" + }], "scripts": { "test": "grunt concat coffee mocha" }, "engines": { - "node": ">=0.8 <0.11" + "node": ">=0.8" } }