From 0eff7ec531663c16e10726be4fddba7cdc978b41 Mon Sep 17 00:00:00 2001 From: Eric Rowell Date: Mon, 15 Apr 2019 23:35:05 -0700 Subject: [PATCH] v2.2.0 --- CHANGELOG.md | 2 +- README.md | 6 ++++++ engine/dist/ElGrapho.js | 4 ++-- engine/dist/ElGrapho.min.js | 4 ++-- package.json | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 424aa4f..2702391 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changlog ## v2.2.0 -* super fast tooltips for large graphs +* fast tooltips for large graphs * smart label zooming * group focusing on node click, or via graph.selectGroup() * upgraded to webgl2 and GLSL v3.0 diff --git a/README.md b/README.md index cfb0b56..99647e2 100644 --- a/README.md +++ b/README.md @@ -342,6 +342,12 @@ graph.on('node-mouseover', function(evt) { }); ``` +## Methods + +* ```graph.selectGroup(groupIndex)``` - select a group by groupIndex, which is an integer +* ```graph.deselectGroup()``` - deselect the currently selected group + + ## About the Name and Logo Why is this called El Grapho? - *Why not?* diff --git a/engine/dist/ElGrapho.js b/engine/dist/ElGrapho.js index 9a6b621..de76185 100644 --- a/engine/dist/ElGrapho.js +++ b/engine/dist/ElGrapho.js @@ -1,7 +1,7 @@ /* - * El Grapho v2.1.2 + * El Grapho v2.2.0 * A high performance WebGL graph data visualization engine - * Release Date: 04-14-2019 + * Release Date: 04-15-2019 * https://github.com/ericdrowell/elgrapho * Licensed under the MIT or GPL Version 2 licenses. * diff --git a/engine/dist/ElGrapho.min.js b/engine/dist/ElGrapho.min.js index ecf6747..b9dc1d9 100644 --- a/engine/dist/ElGrapho.min.js +++ b/engine/dist/ElGrapho.min.js @@ -1,7 +1,7 @@ /* - * El Grapho v2.1.2 + * El Grapho v2.2.0 * A high performance WebGL graph data visualization engine - * Release Date: 04-14-2019 + * Release Date: 04-15-2019 * https://github.com/ericdrowell/elgrapho * Licensed under the MIT or GPL Version 2 licenses. * diff --git a/package.json b/package.json index b633115..3449cdc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "elgrapho", - "version": "2.1.2", + "version": "2.2.0", "main": "engine/dist/ElGrapho.min.js", "author": "Eric Rowell", "license": "MIT",