Bump arduino pre-req and fix listing

This commit is contained in:
Dave Conway-Jones 2016-03-06 22:37:11 +00:00
parent 581477893e
commit c9faed7876
2 changed files with 7 additions and 7 deletions

View File

@ -53,7 +53,7 @@
name: {value:""}, name: {value:""},
pin: {value:"",validate: function(v) { pin: {value:"",validate: function(v) {
var ct = $("#node-input-state").val() || this.state; var ct = $("#node-input-state").val() || this.state;
return ct === 'STRING' || (v != ''); return ct === 'STRING' || (v !== '');
}}, }},
state: {value:"INPUT",required:true}, state: {value:"INPUT",required:true},
arduino: {type:"arduino-board"} arduino: {type:"arduino-board"}
@ -114,7 +114,7 @@
name: {value:""}, name: {value:""},
pin: {value:"",validate: function(v) { pin: {value:"",validate: function(v) {
var ct = $("#node-input-state").val() || this.state; var ct = $("#node-input-state").val() || this.state;
return ct === 'STRING' || (v != ''); return ct === 'STRING' || (v !== '');
}}, }},
state: {value:"",required:true}, state: {value:"",required:true},
arduino: {type:"arduino-board"} arduino: {type:"arduino-board"}

View File

@ -1,9 +1,9 @@
{ {
"name" : "node-red-node-arduino", "name" : "node-red-node-arduino",
"version" : "0.0.6", "version" : "0.0.7",
"description" : "A Node-RED node to talk to an Arduino running firmata", "description" : "A Node-RED node to talk to an Arduino running firmata",
"dependencies" : { "dependencies" : {
"arduino-firmata" : "0.3.3" "arduino-firmata" : "0.3.4"
}, },
"repository" : { "repository" : {
"type":"git", "type":"git",