Skip to content

Commit b0de743

Browse files
committed
Merge pull request #21 from watson-developer-cloud/master
Rebasing
2 parents 6278895 + ed0a7f7 commit b0de743

4 files changed

Lines changed: 21 additions & 9 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
Node-RED Watson Nodes for IBM Bluemix
22
=====================================
33

4-
[![Codacy Badge](https://api.codacy.com/project/badge/grade/e157cf8407f2442396789dc78075340a)](https://www.codacy.com/app/rezgui-y/node-red-node-watson)
4+
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/4f98536040924add9da4ca1deecb72b4)](https://www.codacy.com/app/BetaWorks-NodeRED-Watson/node-red-node-watson?utm_source=github.com&utm_medium=referral&utm_content=watson-developer-cloud/node-red-node-watson&utm_campaign=Badge_Grade)
55

66
### New in version 0.4.4
7-
- Bugfixes to Speech to Text
7+
- New palette category for deprecated Nodes, that are being retained for backward compatibity.
8+
- Bugfixes to Speech to Text.
89

910
### New in version 0.4.3
1011
- New Visual Recognition V3 node to support the V3 GA API. This incorporates the features that were previously

services/alchemy_vision/v1.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
</script>
4141

4242
<script type="text/x-red" data-help-name="alchemy-image-analysis">
43+
<p><b>NB:</b> The service behind this node has been merged with Visual Recognition.
44+
This node uses the old beta API and it is only being retained for backward compatibility for anyone that has an old AlchemyAPI key. It will no longer work with new AlchemyAPI keys.</p>
45+
<br/>
4346
<p>Using the Image Analysis node, you can use the Alchemy APIs to analyse images for face detection, content tags and links.</p>
4447
<p>The following features are available for analysis:</p>
4548
<ul>
@@ -61,7 +64,7 @@
6164
<script type="text/javascript">
6265
(function() {
6366
RED.nodes.registerType('alchemy-image-analysis', {
64-
category: 'IBM Watson',
67+
category: "Watson Deprecated",
6568
defaults: {
6669
name: {value: ""},
6770
apikey: {value: ""},

services/tone_analyzer/v3-beta.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
<script type="text/javascript">
6666
(function() {
6767
RED.nodes.registerType('watson-tone-analyzer', {
68-
category: 'IBM Watson',
68+
category: 'Watson Deprecated',
6969
defaults: {
7070
name: {value: ""},
7171
tones: {value: "all"},

services/visual_recognition/v1.html

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
</script>
3636

3737
<script type="text/x-red" data-help-name="watson-visual-recognition">
38-
<p><b>NB:</b> This node uses the old beta API and it is only being retained for backward compatibility for anyone that has an olde AlchemyAPI key. It will no longer work with new AlchemyAPI keys.</p>
38+
<p><b>NB:</b> This node uses the old beta API and it is only being retained for backward compatibility for
39+
anyone that has an Visual Recognition credentials.
40+
It will no longer work with new Visual Recognition keys.</p>
3941
<br/>
4042
<p>The Visual Recognition service analyses images to understand their contents.</p>
4143
<p>The image to be analysed should be passed in on <code>msg.payload</code>.</p>
@@ -51,7 +53,7 @@
5153
<script type="text/javascript">
5254
(function() {
5355
RED.nodes.registerType('watson-visual-recognition', {
54-
category: 'IBM Watson',
56+
category: 'Watson Deprecated',
5557
defaults: {
5658
name: {value: ""},
5759
},
@@ -117,7 +119,7 @@
117119
}
118120

119121
RED.nodes.registerType('watson-visual-util',{
120-
category: 'IBM_Watson',
122+
category: 'Watson Deprecated',
121123
color: '#FFFF80',
122124
defaults: {
123125
name: {value:""},
@@ -227,7 +229,7 @@
227229
});
228230

229231
RED.nodes.registerType('watson-visual-training',{
230-
category: 'IBM_Watson',
232+
category: 'Watson Deprecated',
231233
color: '#FFFF80',
232234
defaults: {
233235
name: {value:""},
@@ -356,7 +358,9 @@
356358
</script>
357359

358360
<script type="text/x-red" data-help-name="watson-visual-util">
359-
<p><b>NB:</b> This node uses the old beta API and it is only being retained for backward compatibility for anyone that has an olde AlchemyAPI key. It will no longer work with new AlchemyAPI keys.</p>
361+
<p><b>NB:</b> This node uses the old beta API and it is only being retained for backward compatibility for
362+
anyone that has an Visual Recognition credentials.
363+
It will no longer work with new Visual Recognition keys.</p>
360364
<br/>
361365
<p>A node for managing the classifiers in the Visual Recognition service in Watson</p>
362366
<p>More information about this service can be found in the
@@ -392,6 +396,10 @@
392396
</script>
393397

394398
<script type="text/x-red" data-help-name="watson-visual-training">
399+
<p><b>NB:</b> This node uses the old beta API and it is only being retained for backward compatibility for
400+
anyone that has an Visual Recognition credentials.
401+
It will no longer work with new Visual Recognition keys.</p>
402+
<br/>
395403
<p>A node for training the Visual Recognition service in Watson</p>
396404
<p>This service requires that two sets of images are provided for the training. These sets of files should be
397405
zipped and provided to the node either as binary streams or as URL's. The positive and negative set of images

0 commit comments

Comments
 (0)