Skip to content

Commit c9851a0

Browse files
Merge pull request #318 from watson-developer-cloud/readme
Update README to rename Bluemix to IBM Cloud
2 parents 6d4754a + b29db43 commit c9851a0

File tree

3 files changed

+28
-24
lines changed

3 files changed

+28
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ _2016-08-26_
7878
* Deprecated: Retired `Dialog` service.
7979
* Fix: `ExampleLanguageTranslation` now is using `LanguageTranslator` before `LanguageTranslation` service goes live.
8080
* Fix: Abstracted custom voice model methods in `Text to Speech` service.
81-
* Fix: Error when pasting credentials from the new Bluemix site into the `Config Editor`.
81+
* Fix: Error when pasting credentials from the new IBM Cloud site into the `Config Editor`.
8282
* New: Added `CameraWidget` and `CameraDisplayWidget` to get video from device camera.
8383
* New: Added test scene for using the device camera with the `Visual Recognition` service.
8484

README.md

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,30 @@
1-
# Watson Developer Cloud Unity SDK
1+
# Watson APIs Unity SDK
22
[![Build Status](https://travis-ci.org/watson-developer-cloud/unity-sdk.svg?branch=develop)](https://travis-ci.org/watson-developer-cloud/unity-sdk)
33

44
Use this SDK to build Watson-powered applications in Unity.
55

6-
## Table of Contents
7-
* [Before you begin](#before-you-begin)
8-
* [Getting the Watson SDK and adding it to Unity](#getting-the-watson-sdk-and-adding-it-to-unity)
9-
* [Installing the SDK source into your Unity project](#installing-the-sdk-source-into-your-unity-project)
10-
* [Configuring your service credentials](#configuring-your-service-credentials)
11-
* [Authentication](#authentication)
12-
* [Watson Services](#watson-services)
13-
* [Authentication Tokens](#authentication-tokens)
14-
* [Documentation](#documentation)
15-
* [Questions](#questions)
16-
* [Open Source @ IBM](#open-source--ibm)
17-
* [License](#license)
18-
* [Contributing](#contributing)
6+
<details>
7+
<summary>Table of Contents</summary>
8+
9+
* [Before you begin](#before-you-begin)
10+
* [Getting the Watson SDK and adding it to Unity](#getting-the-watson-sdk-and-adding-it-to-unity)
11+
* [Installing the SDK source into your Unity project](#installing-the-sdk-source-into-your-unity-project)
12+
* [Configuring your service credentials](#configuring-your-service-credentials)
13+
* [Authentication](#authentication)
14+
* [Watson Services](#watson-services)
15+
* [Authentication Tokens](#authentication-tokens)
16+
* [Documentation](#documentation)
17+
* [Questions](#questions)
18+
* [Open Source @ IBM](#open-source--ibm)
19+
* [License](#license)
20+
* [Contributing](#contributing)
21+
22+
</details>
1923

2024
## Before you begin
2125
Ensure that you have the following prerequisites:
2226

23-
* An IBM Bluemix account. If you don't have one, [sign up][bluemix_registration].
27+
* An IBM Cloud account. If you don't have one, [sign up][ibm_cloud_registration].
2428
* [Unity][get_unity]. You can use the **free** Personal edition.
2529
* Change the build settings in Unity (**File > Build Settings**) to any platform except for web player/Web GL. The Watson Developer Cloud Unity SDK does not support Unity Web Player.
2630

@@ -33,16 +37,16 @@ Move the **`unity-sdk`** directory into the **`Assets`** directory of your Unity
3337
## Configuring your service credentials
3438
To create instances of Watson services and their credentials, follow the steps below.
3539

36-
**Note:** Service credentials are different from your Bluemix account username and password.
40+
**Note:** Service credentials are different from your IBM Cloud account username and password.
3741

3842
1. Determine which services to configure.
3943
1. If you have configured the services already, complete the following steps. Otherwise, go to step 3.
40-
1. Log in to Bluemix at https://bluemix.net.
44+
1. Log in to IBM Cloud at https://console.bluemix.net.
4145
1. Click the service you would like to use.
4246
1. Click **Service credentials**.
4347
1. Click **View credentials** to access your credentials.
4448
1. If you need to configure the services that you want to use, complete the following steps.
45-
1. Log in to Bluemix at https://bluemix.net.
49+
1. Log in to IBM Cloud at https://console.bluemix.net.
4650
1. Click the **Create service** button.
4751
1. Under **Watson**, select which service you would like to create an instance of and click that service.
4852
1. Give the service and credential a name. Select a plan and click the **Create** button on the bottom.
@@ -56,7 +60,7 @@ The credentials for each service contain either a `username`, `password` and end
5660

5761
## Watson Services
5862
To get started with the Watson Services in Unity, click on each service below to read through each of their `README.md`'s and their codes.
59-
* [Alchemy Language](/Scripts/Services/AlchemyAPI/v1)
63+
* [Alchemy Language](/Scripts/Services/AlchemyAPI/v1) **Deprecated**
6064
* [Conversation](/Scripts/Services/Conversation/v1)
6165
* [Discovery](/Scripts/Services/Discovery/v1)
6266
* [Document Conversion](/Scripts/Services/DocumentConversion/v1) **Deprecated**
@@ -68,7 +72,7 @@ To get started with the Watson Services in Unity, click on each service below to
6872
* [Speech to Text](/Scripts/Services/SpeechToText/v1)
6973
* [Text to Speech](/Scripts/Services/TextToSpeech/v1)
7074
* [Tone Analyzer](/Scripts/Services/ToneAnalyzer/v3)
71-
* [Tradeoff Analytics](/Scripts/Services/TradeoffAnalytics/v1)
75+
* [Tradeoff Analytics](/Scripts/Services/TradeoffAnalytics/v1) **Deprecated**
7276
* [Visual Recognition](/Scripts/Services/VisualRecognition/v3)
7377

7478
## Authentication
@@ -183,7 +187,7 @@ private void OnFail(RESTConnector.Error error, Dictionary<string, object> custom
183187
## Authentication Tokens
184188
You use tokens to write applications that make authenticated requests to IBM Watson™ services without embedding service credentials in every call.
185189

186-
You can write an authentication proxy in IBM® Bluemix® that obtains and returns a token to your client application, which can then use the token to call the service directly. This proxy eliminates the need to channel all service requests through an intermediate server-side application, which is otherwise necessary to avoid exposing your service credentials from your client application.
190+
You can write an authentication proxy in IBM Cloud that obtains and returns a token to your client application, which can then use the token to call the service directly. This proxy eliminates the need to channel all service requests through an intermediate server-side application, which is otherwise necessary to avoid exposing your service credentials from your client application.
187191

188192
```cs
189193
using IBM.Watson.DeveloperCloud.Services.Conversation.v1;
@@ -240,7 +244,7 @@ See [CONTRIBUTING.md](.github/CONTRIBUTING.md).
240244
[wdc]: https://www.ibm.com/watson/developer/
241245
[wdc_unity_sdk]: https://github.com/watson-developer-cloud/unity-sdk
242246
[latest_release]: https://github.com/watson-developer-cloud/unity-sdk/releases/latest
243-
[bluemix_registration]: http://bluemix.net/registration
247+
[ibm_cloud_registration]: http://console.bluemix.net/registration
244248
[get_unity]: https://unity3d.com/get-unity
245249

246250
[speech_to_text]: https://console.bluemix.net/docs/services/speech-to-text/index.html

Scripts/Services/TradeoffAnalytics/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Tradeoff Analytics
22

3-
**NOTE:** The IBM Watson™ Tradeoff Analytics service is being deprecated. As of May 11, 2017, it will no longer be possible to create a new instance of the service on Bluemix. Existing service instances will continue to be supported until April 11, 2018.
3+
**NOTE:** The IBM Watson™ Tradeoff Analytics service is being deprecated. As of May 11, 2017, it will no longer be possible to create a new instance of the service on IBM Cloud. Existing service instances will continue to be supported until April 11, 2018.
44

55
The [Tradeoff Analytics][tradeoff_analytics] service helps people make better decisions when faced with multiple, sometimes conflicting, goals and alternatives.
66

0 commit comments

Comments
 (0)