mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
bump package versions of i18n nodes
twitter, feed parser, email, and rbe
This commit is contained in:
parent
b4fba0dd79
commit
f385c13d44
@ -11,7 +11,8 @@ mode.
|
|||||||
Install
|
Install
|
||||||
-------
|
-------
|
||||||
|
|
||||||
Run the following command in the root directory of your Node-RED install
|
Run the following command in your Node-RED install directory, usually
|
||||||
|
`~/.node-red`
|
||||||
|
|
||||||
npm install node-red-node-rbe
|
npm install node-red-node-rbe
|
||||||
|
|
||||||
@ -27,7 +28,7 @@ handle multiple topics at the same time.
|
|||||||
|
|
||||||
###RBE mode
|
###RBE mode
|
||||||
|
|
||||||
Outputs the **msg** if the **msg.payload** is different to the previous one.
|
The node doesn't send any output until the **msg.payload** is different to the previous one.
|
||||||
Works on numbers and strings. Useful for filtering out repeated messages of the
|
Works on numbers and strings. Useful for filtering out repeated messages of the
|
||||||
same value. Saves bandwidth, etc...
|
same value. Saves bandwidth, etc...
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright 2014 IBM Corp.
|
Copyright 2014, 2015 IBM Corp.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -34,13 +34,14 @@
|
|||||||
|
|
||||||
<script type="text/x-red" data-help-name="rbe">
|
<script type="text/x-red" data-help-name="rbe">
|
||||||
<p>Report by Exception node - only passes on data if it has changed.</p>
|
<p>Report by Exception node - only passes on data if it has changed.</p>
|
||||||
<p>In <b>RBE</b> mode this node only outputs the msg if the <b>msg.payload</b> is
|
<p>The node can either block until the <b>msg.payload</b> is
|
||||||
different to the previous one. Works on numbers and strings.</p>
|
different to the previous one - <b>rbe</b> mode. Works on numbers and strings.</p>
|
||||||
<p>In <b>deadband</b> mode the incoming payload should contain a parseable <i>number</i> and is
|
<p>Or it can block until the value changes by a specified amount - <b>deadband</b> mode.</p>
|
||||||
|
<p>In deadband mode the incoming payload should contain a parseable <i>number</i> and is
|
||||||
output only if greater than + or - the <i>band gap</i> away from the previous output.</p>
|
output only if greater than + or - the <i>band gap</i> away from the previous output.</p>
|
||||||
<p>Deadband also supports % - only sends if the input differs by more than x% of the original value.</p>
|
<p>Deadband also supports % - only sends if the input differs by more than x% of the original value.</p>
|
||||||
<p><b>Note:</b> This works on a per <b>msg.topic</b> basis. This means that a single rbe node can
|
<p><b>Note:</b> This works on a per <b>msg.topic</b> basis. This means that a single rbe node can
|
||||||
handle multiple topics at the same time.</p>
|
handle multiple topics at the same time.</p>
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright 2013,2014 IBM Corp.
|
Copyright 2013, 2015 IBM Corp.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2013,2014 IBM Corp.
|
* Copyright 2013, 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-email",
|
"name" : "node-red-node-email",
|
||||||
"version" : "0.0.2",
|
"version" : "0.1.0",
|
||||||
"description" : "Node-RED nodes to send and receive simple emails",
|
"description" : "Node-RED nodes to send and receive simple emails",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"nodemailer" : "1.3.4",
|
"nodemailer" : "1.3.4",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright 2013 IBM Corp.
|
Copyright 2013, 2015 IBM Corp.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2013,2014 IBM Corp.
|
* Copyright 2013, 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-feedparser",
|
"name" : "node-red-node-feedparser",
|
||||||
"version" : "0.0.3",
|
"version" : "0.1.0",
|
||||||
"description" : "A Node-RED node to get RSS Atom feeds.",
|
"description" : "A Node-RED node to get RSS Atom feeds.",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"feedparser" : "0.19.2",
|
"feedparser" : "0.19.2",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!--
|
<!--
|
||||||
Copyright 2013 IBM Corp.
|
Copyright 2013, 2015 IBM Corp.
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright 2013 IBM Corp.
|
* Copyright 2013, 2015 IBM Corp.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-twitter",
|
"name" : "node-red-node-twitter",
|
||||||
"version" : "0.0.4",
|
"version" : "0.1.0",
|
||||||
"description" : "A Node-RED node to talk to Twitter",
|
"description" : "A Node-RED node to talk to Twitter",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"twitter-ng": "0.6.2",
|
"twitter-ng": "0.6.2",
|
||||||
|
Loading…
Reference in New Issue
Block a user