From 757abe32095f14b048d8fe073ec46d11d71a0141 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Fri, 1 Apr 2022 22:51:40 +0100 Subject: [PATCH 1/6] Fix id handling to close #897 --- social/xmpp/92-xmpp.js | 2 +- social/xmpp/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/social/xmpp/92-xmpp.js b/social/xmpp/92-xmpp.js index 47647d7e..f006bfed 100644 --- a/social/xmpp/92-xmpp.js +++ b/social/xmpp/92-xmpp.js @@ -444,7 +444,7 @@ module.exports = function(RED) { if (body) { var msg = { payload:body.getText(), subject:node.subject[stanza.attrs.from.split('/')[0]] }; var ids = stanza.attrs.from.split('/'); - if (ids[1].length !== 36) { + if (ids.length > 1 && ids[1].length !== 36) { msg.topic = stanza.attrs.from } else { msg.topic = ids[0]; } diff --git a/social/xmpp/package.json b/social/xmpp/package.json index de736051..21ca92c6 100644 --- a/social/xmpp/package.json +++ b/social/xmpp/package.json @@ -1,6 +1,6 @@ { "name": "node-red-node-xmpp", - "version": "0.5.9", + "version": "0.5.10", "description": "A Node-RED node to talk to an XMPP server", "dependencies": { "@xmpp/client": "^0.13.0" From 87165965d921eca92ef7bd0edc87c5651875e035 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Sat, 2 Apr 2022 13:38:09 +0100 Subject: [PATCH 2/6] Update package.json --- social/xmpp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/social/xmpp/package.json b/social/xmpp/package.json index 21ca92c6..f818a3de 100644 --- a/social/xmpp/package.json +++ b/social/xmpp/package.json @@ -3,7 +3,7 @@ "version": "0.5.10", "description": "A Node-RED node to talk to an XMPP server", "dependencies": { - "@xmpp/client": "^0.13.0" + "@xmpp/client": "^0.13.1" }, "bundledDependencies": [ "@xmpp/client" From add039b1634973bd4fe2a541acc872e971577458 Mon Sep 17 00:00:00 2001 From: Mauricio Bonani Date: Mon, 4 Apr 2022 16:36:06 -0400 Subject: [PATCH 3/6] Set text color on the RPi pinTable (#898) --- hardware/PiGpio/36-rpi-gpio.html | 1 + 1 file changed, 1 insertion(+) diff --git a/hardware/PiGpio/36-rpi-gpio.html b/hardware/PiGpio/36-rpi-gpio.html index f3e6002f..87777052 100644 --- a/hardware/PiGpio/36-rpi-gpio.html +++ b/hardware/PiGpio/36-rpi-gpio.html @@ -1,5 +1,6 @@