tidy some labels

This commit is contained in:
Dave Conway-Jones
2018-04-14 22:43:14 +01:00
parent 99b83ea4bd
commit 025f97206f
9 changed files with 18 additions and 4 deletions

View File

@@ -93,6 +93,9 @@
outputs:0,
icon: "envelope.png",
align: "right",
paletteLabel: function() {
return this._("email.email");
},
label: function() {
return this.dname||this.name||"email";
},
@@ -246,7 +249,7 @@
outputs:1,
icon: "envelope.png",
paletteLabel: function() {
return this.name||this._("email.email");
return this._("email.email");
},
label: function() {
return this.name||this._("email.email");

View File

@@ -1,6 +1,6 @@
{
"name": "node-red-node-email",
"version": "0.1.27",
"version": "0.1.28",
"description": "Node-RED nodes to send and receive simple emails",
"dependencies": {
"nodemailer": "^1.11.0",

View File

@@ -34,6 +34,9 @@
inputs:0,
outputs:1,
icon: "feed.png",
paletteLabel: function() {
return this._("feedparse.feedparse");
},
label: function() {
return this.name||this.url||this._("feedparse.feedparse");
},

View File

@@ -1,6 +1,6 @@
{
"name": "node-red-node-feedparser",
"version": "0.1.12",
"version": "0.1.13",
"description": "A Node-RED node to get RSS Atom feeds.",
"dependencies": {
"feedparser": "^2.2.9",