bump package versions of i18n nodes

twitter, feed parser, email, and rbe
This commit is contained in:
Dave Conway-Jones 2015-07-14 23:03:46 +01:00
parent b4fba0dd79
commit f385c13d44
11 changed files with 19 additions and 17 deletions

View File

@ -11,7 +11,8 @@ mode.
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
@ -27,7 +28,7 @@ handle multiple topics at the same time.
###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
same value. Saves bandwidth, etc...

View File

@ -1,5 +1,5 @@
<!--
Copyright 2014 IBM Corp.
Copyright 2014, 2015 IBM Corp.
Licensed under the Apache License, Version 2.0 (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">
<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
different to the previous one. 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>The node can either block until the <b>msg.payload</b> is
different to the previous one - <b>rbe</b> mode. Works on numbers and strings.</p>
<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>
<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
handle multiple topics at the same time.</p>
handle multiple topics at the same time.</p>
</script>
<script type="text/javascript">

View File

@ -1,5 +1,5 @@
<!--
Copyright 2013,2014 IBM Corp.
Copyright 2013, 2015 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/**
* Copyright 2013,2014 IBM Corp.
* Copyright 2013, 2015 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-email",
"version" : "0.0.2",
"version" : "0.1.0",
"description" : "Node-RED nodes to send and receive simple emails",
"dependencies" : {
"nodemailer" : "1.3.4",

View File

@ -1,5 +1,5 @@
<!--
Copyright 2013 IBM Corp.
Copyright 2013, 2015 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@ -1,5 +1,5 @@
/**
* Copyright 2013,2014 IBM Corp.
* Copyright 2013, 2015 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-feedparser",
"version" : "0.0.3",
"version" : "0.1.0",
"description" : "A Node-RED node to get RSS Atom feeds.",
"dependencies" : {
"feedparser" : "0.19.2",

View File

@ -1,5 +1,5 @@
<!--
Copyright 2013 IBM Corp.
Copyright 2013, 2015 IBM Corp.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@ -23,7 +23,7 @@
(function() {
var twitterConfigNodeId = null;
var twitterConfigNodeIntervalId = null;
RED.nodes.registerType('twitter-credentials',{
category: 'config',
defaults: {

View File

@ -1,5 +1,5 @@
/**
* Copyright 2013 IBM Corp.
* Copyright 2013, 2015 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.

View File

@ -1,6 +1,6 @@
{
"name" : "node-red-node-twitter",
"version" : "0.0.4",
"version" : "0.1.0",
"description" : "A Node-RED node to talk to Twitter",
"dependencies" : {
"twitter-ng": "0.6.2",