Skip to content

Commit 40a32f3

Browse files
committed
release v1.0.2
Please read CHANGELOG.md to see what's new in this version.
1 parent f2262f5 commit 40a32f3

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
## sigma.js - changelog:
22

3+
#### 1.0.2 - release (April 2, 2014)
4+
5+
- Added Canvas curved edge renderer
6+
- Fully refactored examples
7+
- Fixed [#211](https://github.com/jacomyal/sigma.js/issues/211): Added default camera getter
8+
- Fixes on ForceAtlas2 API (thanks to [@adkatrit](https://github.com/adkatrit))
9+
- Added Canvas curved arrows edge renderer (thanks to [@ssidorchick](https://github.com/ssidorchick))
10+
- Fixed [#220](https://github.com/jacomyal/sigma.js/issues/220): WebGL edges batch rendering fixed
11+
- Fixed [#175](https://github.com/jacomyal/sigma.js/issues/175): Disable setAutoSettings in ForceAtlas2
12+
- Fixed some minor typos (thanks to [@anirvan](https://github.com/anirvan))
13+
- Added the `sigma.plugins.dragNodes` plugin for the Canvas renderer (thanks to [@josemazo](https://github.com/josemazo))
14+
- Fixed `gjslint.py does not exist` error (thanks to [@jeroencoumans](https://github.com/jeroencoumans))
15+
- Made it easier to build for newbies by not requiring global `grunt-cli` (thanks to [@eins78](https://github.com/eins78))
16+
- Some minor changes on docs and GEXF parser (thanks to [@Yomguithereal](https://github.com/Yomguithereal))
17+
- Added current version number as `sigma.version`
18+
- Fixed [#236](https://github.com/jacomyal/sigma.js/issues/236): Implemented `kill` renderers method
19+
320
#### 1.0.1 - release (February 26, 2014)
421

522
- Custom node shapes and images plug-in (thanks to [@rpeleg1970](https://github.com/rpeleg1970))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Build Status](https://travis-ci.org/jacomyal/sigma.js.png)](https://travis-ci.org/jacomyal/sigma.js)
22

3-
sigma.js - v1.0.1
3+
sigma.js - v1.0.2
44
=================
55

66
Sigma is a JavaScript library dedicated to graph drawing.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sigma-js",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A JavaScript library dedicated to graph drawing.",
55
"homepage": "http://sigmajs.org",
66
"bugs": "http://github.com/jacomyal/sigma.js/issues",

src/sigma.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@
636636
/**
637637
* The current version of sigma:
638638
*/
639-
sigma.version = '1.0.1';
639+
sigma.version = '1.0.2';
640640

641641

642642

0 commit comments

Comments
 (0)