Skip to content

Commit da6793e

Browse files
committed
updtate readme and menu for gh-pages
1 parent f9004fc commit da6793e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Ensure that you have the following prerequisites:
2323
* An IBM Bluemix account. If you don't have one, [sign up][bluemix_registration].
2424
* [Unity][get_unity]. You can use the **free** Personal edition.
2525
* 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.
26-
* A chm reader if you would like to access SDK Documentation (optional).
2726

2827
## Getting the Watson SDK and adding it to Unity
2928
You can get the latest SDK release by clicking [here][latest_release].
@@ -139,7 +138,7 @@ private void OnGetToken(AuthenticationToken authenticationToken, string customDa
139138
```
140139

141140
## Documentation
142-
To read the documentation you need to have a **chm reader** installed. Open the documentation by selecting API Reference the Watson menu (**Watson -> API Reference**).
141+
Documentation can be found [here][documentation]. You can also access the documentation by selecting API Reference the Watson menu (**Watson -> API Reference**).
143142

144143
## Questions
145144

@@ -191,3 +190,4 @@ See [CONTRIBUTING.md](.github/CONTRIBUTING.md).
191190
[dialog_service]: http://www.ibm.com/watson/developercloud/doc/dialog/
192191
[dialog_migration]: https://console.bluemix.net/docs/services/conversation/index.html#about
193192
[conversation_service]: https://console.bluemix.net/docs/services/conversation/index.html#about
193+
[documentation]: https://watson-developer-cloud.github.io/unity-sdk/

Scripts/Editor/WatsonMenu.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,10 @@ namespace IBM.Watson.DeveloperCloud.Editor
2525
{
2626
public class WatsonMenu : MonoBehaviour
2727
{
28-
private const string ApiReference = "WatsonUnitySDK.chm";
29-
3028
[MenuItem("Watson/API Reference", false, 100)]
3129
private static void ShowAPIReference()
3230
{
33-
Application.OpenURL("file://" + FindFile(Application.dataPath, "Docs" + Path.DirectorySeparatorChar + "Help" + Path.DirectorySeparatorChar + ApiReference));
31+
Application.OpenURL("https://watson-developer-cloud.github.io/unity-sdk/");
3432
}
3533

3634
private static string FindFile(string directory, string name)

0 commit comments

Comments
 (0)