Skip to content

Commit 52302f3

Browse files
committed
release v1.0.3
Please read CHANGELOG.md to see what's new in this version.
1 parent 73b80da commit 52302f3

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

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

3+
#### 1.0.3 - release (August 22, 2014)
4+
5+
- Fixed [#186](https://github.com/jacomyal/sigma.js/issues/186): NPM sigma package
6+
- New helper `sigma.utils.zoomTo` (thanks to [@josemazo](https://github.com/josemazo))
7+
- Fixed [#241](https://github.com/jacomyal/sigma.js/issues/241): Improved canvas renderer
8+
- Fixed [#244](https://github.com/jacomyal/sigma.js/issues/244): (min|max)(Node|Edge)Size as strings or numbers
9+
- Cross available in the customShapes plugin (thanks to [@csweaver](https://github.com/csweaver))
10+
- [Relative size](https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.plugins.relativeSize) plugin (thanks to [@tsdaemon](https://github.com/tsdaemon))
11+
- Fixed y positions from sigma.parsers.gexf (thanks to [@totetmatt](https://github.com/totetmatt))
12+
- Fixed lag problem for the dragNodes plugin on Firefox (thanks to [@apitts](https://github.com/apitts))
13+
- Added the `singleHover` settings (thanks to [@patrickmarabeas](https://github.com/patrickmarabeas))
14+
- Improved dragNodes behaviours with several hovered nodes (thanks to [@patrickmarabeas](https://github.com/patrickmarabeas))
15+
- Added self-loops rendering for curved edges (thanks to [@ssidorchick](https://github.com/ssidorchick))
16+
- Updated gexfParser.js version
17+
- [HITS statistics computation](https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.statistics.HITS) plugin (thanks to [@mef](https://github.com/mef))
18+
- Fixed [#299](https://github.com/jacomyal/sigma.js/issues/299): Fixed `npm build`
19+
- Fixed [#332](https://github.com/jacomyal/sigma.js/issues/332): Fixed grunt tasks for building plugins
20+
- Fixed [#347](https://github.com/jacomyal/sigma.js/issues/347): Added polymorphism for the autoRescale setting
21+
- Fixed build for Force-Atlas 2 plugin (thanks to [@luca](https://github.com/luca))
22+
- Fixed some typos (thanks to [@Tal-Daniel](https://github.com/Tal-Daniel))
23+
- [Custom edge shapes](https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.renderers.customEdgeShapes) plugin (thanks to [@sheymann](https://github.com/sheymann))
24+
- [Filter API](https://github.com/jacomyal/sigma.js/tree/master/plugins/sigma.plugins.filter) plugin (thanks to [@sheymann](https://github.com/sheymann))
25+
- Right-click support (thanks to [@sheymann](https://github.com/sheymann))
26+
- Event data now always dispatched by sigma.core (thanks to [@sheymann](https://github.com/sheymann))
27+
- Added the `attachBefore` method to `sigma.classes.graph` (thanks to [@sheymann](https://github.com/sheymann))
28+
- Fixed buggy behaviour with the dragNodes plugin when container is offset (thanks to [@Pie21](https://github.com/Pie21))
29+
- Updated NPM dev dependencies
30+
- Fixed a leak in `sigma.classes.graph` (details at [#340](https://github.com/jacomyal/sigma.js/issues/340))
31+
- **WebGL based Force-Atlas 2**
32+
333
#### 1.0.2 - release (April 2, 2014)
434

535
- Added Canvas curved edge renderer

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.2
3+
sigma.js - v1.0.3
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",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
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
@@ -640,7 +640,7 @@
640640
/**
641641
* The current version of sigma:
642642
*/
643-
sigma.version = '1.0.2';
643+
sigma.version = '1.0.3';
644644

645645

646646

0 commit comments

Comments
 (0)