Skip to content

Commit

Permalink
Bump version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jan 18, 2016
1 parent 3288efd commit 03558b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion editor/js/ui/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ RED.view = (function() {

function canvasMouseMove() {
var i;
var node;
mouse_position = d3.touches(this)[0]||d3.mouse(this);
// Prevent touch scrolling...
//if (d3.touches(this)[0]) {
Expand Down Expand Up @@ -605,7 +606,6 @@ RED.view = (function() {
}
} else if (mouse_mode == RED.state.MOVING_ACTIVE || mouse_mode == RED.state.IMPORT_DRAGGING) {
mousePos = mouse_position;
var node;
var minX = 0;
var minY = 0;
for (var n = 0; n<moving_set.length; n++) {
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "node-red",
"version" : "0.12.5",
"version" : "0.13.0",
"description" : "A visual tool for wiring the Internet of Things",
"homepage" : "http://nodered.org",
"license" : "Apache-2.0",
Expand All @@ -22,7 +22,7 @@
{"name": "Dave Conway-Jones"}
],
"keywords": [
"editor", "messaging", "iot", "m2m", "pi", "arduino", "beaglebone", "ibm", "flow"
"editor", "messaging", "iot", "ibm", "flow"
],
"dependencies": {
"basic-auth": "1.0.3",
Expand All @@ -49,11 +49,11 @@
"passport-oauth2-client-password":"0.1.2",
"raw-body":"2.1.5",
"semver": "5.1.0",
"sentiment":"1.0.4",
"sentiment":"1.0.5",
"uglify-js":"2.6.1",
"when": "3.7.7",
"ws": "0.8.1",
"xml2js":"0.4.15",
"xml2js":"0.4.16",
"node-red-node-feedparser":"0.1.*",
"node-red-node-email":"0.1.*",
"node-red-node-twitter":"0.1.*",
Expand All @@ -72,7 +72,7 @@
"grunt-contrib-compress": "0.14.0",
"grunt-contrib-concat":"0.5.1",
"grunt-contrib-copy": "0.8.2",
"grunt-contrib-jshint": "0.11.3",
"grunt-contrib-jshint": "0.12.0",
"grunt-contrib-uglify": "0.11.0",
"grunt-contrib-watch":"0.6.1",
"grunt-jsonlint":"1.0.7",
Expand Down
4 changes: 2 additions & 2 deletions red/api/nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ module.exports = {
res.status(400).json({error:"invalid_request", message:"Invalid request"});
return;
}
var id = req.params.mod + "/" + req.params.set;
try {
var id = req.params.mod + "/" + req.params.set;
var node = redNodes.getNodeInfo(id);
var info;
if (!node) {
Expand Down Expand Up @@ -195,8 +195,8 @@ module.exports = {
res.status(400).json({error:"invalid_request", message:"Invalid request"});
return;
}
var mod = req.params.mod;
try {
var mod = req.params.mod;
var module = redNodes.getModuleInfo(mod);
if (!module) {
log.audit({event: "nodes.module.set",module:mod,error:"not_found"},req);
Expand Down

0 comments on commit 03558b0

Please sign in to comment.