Move Daemon to standard function category

This commit is contained in:
Dave Conway-Jones 2019-09-19 09:29:48 +01:00
parent 477b101b91
commit 5b975d912b
No known key found for this signature in database
GPG Key ID: 9E7F9C73F5168CD4
2 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@
<script type="text/javascript">
RED.nodes.registerType('daemon',{
category: 'advanced-function',
category: 'function',
color:"darksalmon",
defaults: {
name: {value:""},
@ -75,9 +75,9 @@
},
inputs:1,
outputs:3,
inputLabels: "stdin",
outputLabels: ["stdout","stderr","exit code"],
icon: "arrow-in.png",
align: "right",
label: function() {
return this.name||this.command||"daemon";
},

View File

@ -1,6 +1,6 @@
{
"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.",
"dependencies" : {
},