mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Move Daemon to standard function category
This commit is contained in:
parent
477b101b91
commit
5b975d912b
@ -61,7 +61,7 @@
|
|||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
RED.nodes.registerType('daemon',{
|
RED.nodes.registerType('daemon',{
|
||||||
category: 'advanced-function',
|
category: 'function',
|
||||||
color:"darksalmon",
|
color:"darksalmon",
|
||||||
defaults: {
|
defaults: {
|
||||||
name: {value:""},
|
name: {value:""},
|
||||||
@ -75,9 +75,9 @@
|
|||||||
},
|
},
|
||||||
inputs:1,
|
inputs:1,
|
||||||
outputs:3,
|
outputs:3,
|
||||||
|
inputLabels: "stdin",
|
||||||
outputLabels: ["stdout","stderr","exit code"],
|
outputLabels: ["stdout","stderr","exit code"],
|
||||||
icon: "arrow-in.png",
|
icon: "arrow-in.png",
|
||||||
align: "right",
|
|
||||||
label: function() {
|
label: function() {
|
||||||
return this.name||this.command||"daemon";
|
return this.name||this.command||"daemon";
|
||||||
},
|
},
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-daemon",
|
"name" : "node-red-node-daemon",
|
||||||
"version" : "0.0.24",
|
"version" : "0.0.25",
|
||||||
"description" : "A Node-RED node that runs and monitors a long running system command.",
|
"description" : "A Node-RED node that runs and monitors a long running system command.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user