Skip to content

Commit b545113

Browse files
authored
Merge pull request #57214 from wolfma61/wolfma/rel110
[Cog Svcs] Wolfma/rel110
2 parents c264603 + ec9fee5 commit b545113

10 files changed

+66
-24
lines changed

articles/cognitive-services/Speech-Service/index.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,17 @@ sections:
123123
- href:
124124
- href:
125125
- href:
126+
- title: Android (x86/x64)
127+
values:
128+
- href:
129+
- href:
130+
- href:
131+
- href:
132+
- href: quickstart-java-android
133+
- href:
134+
- href:
135+
- href:
136+
- href:
126137
- title: Devices SDK (ARM64)
127138
values:
128139
- href:

articles/cognitive-services/Speech-Service/quickstart-cpp-linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

@@ -27,7 +27,7 @@ You need a Speech service subscription key to complete this Quickstart. You can
2727

2828
[!INCLUDE [License Notice](../../../includes/cognitive-services-speech-service-license-notice.md)]
2929

30-
The current version of the Cognitive Services Speech SDK is `1.0.1`.
30+
The current version of the Cognitive Services Speech SDK is `1.1.0`.
3131

3232
The Speech SDK for Linux can be used to build both 64-bit and 32-bit applications. The required libraries and header files can be downloaded as a tarfile from https://aka.ms/csspeech/linuxbinary.
3333

articles/cognitive-services/Speech-Service/quickstart-cpp-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

@@ -56,7 +56,7 @@ You need a Speech service subscription key to complete this Quickstart. You can
5656
![Screenshot of Manage Packages for Solution dialog box](media/sdk/qs-cpp-windows-04-nuget-install-1.0.0.png)
5757

5858
> [!NOTE]
59-
> The current version of the Cognitive Services Speech SDK is `1.0.1`.
59+
> The current version of the Cognitive Services Speech SDK is `1.1.0`.
6060
6161
1. Accept the displayed license to begin installation of the NuGet package.
6262

articles/cognitive-services/Speech-Service/quickstart-csharp-uwp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 09/24/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

@@ -66,7 +66,7 @@ You need a Speech service subscription key to complete this Quickstart. You can
6666
1. The following output line appears in the Package Manager console.
6767

6868
```text
69-
Successfully installed 'Microsoft.CognitiveServices.Speech 1.0.1' to helloworld
69+
Successfully installed 'Microsoft.CognitiveServices.Speech 1.1.0' to helloworld
7070
```
7171

7272
1. Because the application uses the microphone for speech input, add the **Microphone** capability to the project. In Solution Explorer, double-click **Package.appxmanifest** to edit your application manifest. Then switch to the **Capabilities** tab, select the box for the **Microphone** capability, and save your changes.

articles/cognitive-services/Speech-Service/quickstart-java-android.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

@@ -18,8 +18,8 @@ ms.author: wolfma
1818
[!INCLUDE [Selector](../../../includes/cognitive-services-speech-service-quickstart-selector.md)]
1919

2020
In this article, you'll learn how to create a Java application for Android using the Cognitive Services Speech SDK to transcribe speech to text.
21-
The application is based on the Microsoft Cognitive Services Speech SDK Maven Package, version 1.0.1, and Android Studio 3.1.
22-
The Speech SDK is currently compatible with Android devices having 32-bit or 64-bit ARM processors.
21+
The application is based on the Microsoft Cognitive Services Speech SDK Maven Package, version 1.1.0, and Android Studio 3.1.
22+
The Speech SDK is currently compatible with Android devices having 32/64-bit ARM and Intel x86/x64 compatible processors.
2323

2424
> [!NOTE]
2525
> For the Speech Devices SDK and the Roobo device, see [Speech Devices SDK](speech-devices-sdk.md).
@@ -54,7 +54,7 @@ Android Studio takes a moment to prepare your new Android project. Next, configu
5454

5555
[!INCLUDE [License Notice](../../../includes/cognitive-services-speech-service-license-notice.md)]
5656

57-
The current version of the Cognitive Services Speech SDK is `1.0.1`.
57+
The current version of the Cognitive Services Speech SDK is `1.1.0`.
5858

5959
The Speech SDK for Android is packaged as an [AAR (Android Library)](https://developer.android.com/studio/projects/android-library), which includes the necessary libraries as well as required Android permissions for using it.
6060
It is hosted in a Maven repository at https://csspeechstorage.blob.core.windows.net/maven/.
@@ -69,7 +69,7 @@ Set up your project to use the Speech SDK. Open the Project Structure window by
6969

7070
![Screenshot of Project Structure window](media/sdk/qs-java-android-07-add-module-dependency.png)
7171

72-
1. In the window that comes up, enter the name and version of our Speech SDK for Android, `com.microsoft.cognitiveservices.speech:client-sdk:1.0.1`. Then select **OK**.
72+
1. In the window that comes up, enter the name and version of our Speech SDK for Android, `com.microsoft.cognitiveservices.speech:client-sdk:1.1.0`. Then select **OK**.
7373
The Speech SDK should be added to the list of dependencies now, as shown below:
7474

7575
![Screenshot of Project Structure window](media/sdk/qs-java-android-08-dependency-added-1.0.0.png)

articles/cognitive-services/Speech-Service/quickstart-java-jre.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: fmegen
1414
---
1515

@@ -70,7 +70,7 @@ If you are using Ubuntu 16.04, before starting Eclipse, run the following comman
7070

7171
[!code-xml[POM Repositories](~/samples-cognitive-services-speech-sdk/quickstart/java-jre/pom.xml#repositories)]
7272

73-
* Also add a `dependencies` element, with the Speech SDK version 1.0.1 as a dependency:
73+
* Also add a `dependencies` element, with the Speech SDK version 1.1.0 as a dependency:
7474

7575
[!code-xml[POM Dependencies](~/samples-cognitive-services-speech-sdk/quickstart/java-jre/pom.xml#dependencies)]
7676

articles/cognitive-services/Speech-Service/quickstart-js-browser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: fmegen
1414
---
1515

@@ -18,7 +18,7 @@ ms.author: fmegen
1818
[!INCLUDE [Selector](../../../includes/cognitive-services-speech-service-quickstart-selector.md)]
1919

2020
In this article, you'll learn how to create a website using the JavaScript binding of the Cognitive Services Speech SDK to transcribe speech to text.
21-
The application is based on the Microsoft Cognitive Services Speech SDK ([Download version 1.0.1](https://aka.ms/csspeech/jsbrowserpackage)).
21+
The application is based on the Microsoft Cognitive Services Speech SDK ([Download version 1.1.0](https://aka.ms/csspeech/jsbrowserpackage)).
2222

2323
## Prerequisites
2424

articles/cognitive-services/Speech-Service/quickstart-objectivec-ios.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: quickstart
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: chlandsi
1414
---
1515

@@ -28,7 +28,7 @@ In this article, you learn how to create an iOS app in Objective-C using the Cog
2828

2929
[!INCLUDE [License Notice](../../../includes/cognitive-services-speech-service-license-notice.md)]
3030

31-
The current version of the Cognitive Services Speech SDK is `1.0.1`.
31+
The current version of the Cognitive Services Speech SDK is `1.1.0`.
3232

3333
The Cognitive Services Speech SDK for Mac and iOS is currently distributed as a Cocoa Framework.
3434
It can be downloaded from https://aka.ms/csspeech/iosbinary. Download the file to your home directory.

articles/cognitive-services/Speech-Service/releasenotes.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,43 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: conceptual
12-
ms.date: 10/12/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

1616
# Release notes
1717

18+
## Speech Service SDK 1.1.0
19+
20+
**New Features**
21+
22+
* Support for Android x86/x64.
23+
* Proxy Support: In the SpeechConfig object you can now call a function to set the proxy information (hostname, port, username, and password). This feature is not yet available on iOS.
24+
* Improved error code and messages. If a recognition returned an error, this did already set `Reason` (in canceled event) or `CancellationDetails` (in recognition result) to `Error`. The canceled event now contains two additional members, `ErrorCode` and `ErrorDetails`. If the server returned additional error information with the reported error, it will now be available in the new members.
25+
26+
**Improvements**
27+
28+
* Added additional verification in the recognizer configuration, and added additional error message.
29+
* Improved handling of long-time silence in middle of an audio file.
30+
* NuGet package: for .NET Framework projects prevent building with AnyCPU configuration.
31+
32+
**Bug fixes**
33+
34+
* Fixed several exceptions found in recognizers. In addition exceptions are caught and converted into Canceled event.
35+
* Fix a memory leak in property management.
36+
* Fixed bug in which an audio input file could crash the recognizer.
37+
* Fixed a bug where events could be received after a session stop event.
38+
* Fixed some race conditions in threading.
39+
* Fixed an iOS compatibility issue that could result in a crash.
40+
* Stability improvements for Android microphone support.
41+
* Fixed a bug where a recognizer in JavaScript would ignore the recognition language.
42+
* Fixed a bug preventing setting the EndpointId (in some cases) in JavaScript.
43+
* Changed parameter order in AddIntent in JavaScript, and added missing AddIntent JavaScript signature.
44+
45+
**Samples**
46+
47+
* Added C++ sample for pull and push stream usage in our [sample repository](https://aka.ms/csspeech/samples).
48+
1849
## Speech Service SDK 1.0.1
1950

2051
Reliability improvements and bug fixes:

articles/cognitive-services/Speech-Service/speech-sdk.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ manager: cgronlun
99
ms.service: cognitive-services
1010
ms.component: speech-service
1111
ms.topic: conceptual
12-
ms.date: 10/16/2018
12+
ms.date: 11/06/2018
1313
ms.author: wolfma
1414
---
1515

@@ -31,7 +31,7 @@ For Windows, we support the following languages:
3131
You can reference and use the latest version of our Speech SDK NuGet package. The package includes 32-bit and 64-bit client libraries and managed (.NET) libraries. The SDK can be installed in Visual Studio by using NuGet. Search for **Microsoft.CognitiveServices.Speech**.
3232

3333
* Java:
34-
You can reference and use the latest version of our Speech SDK Maven package, which supports only Windows x64. In your Maven project, add `https://csspeechstorage.blob.core.windows.net/maven/` as an additional repository and reference `com.microsoft.cognitiveservices.speech:client-sdk:1.0.1` as a dependency.
34+
You can reference and use the latest version of our Speech SDK Maven package, which supports only Windows x64. In your Maven project, add `https://csspeechstorage.blob.core.windows.net/maven/` as an additional repository and reference `com.microsoft.cognitiveservices.speech:client-sdk:1.1.0` as a dependency.
3535

3636
### Linux
3737

@@ -49,11 +49,11 @@ sudo apt-get install build-essential libssl1.0.0 libcurl3 libasound2
4949
You can reference and use the latest version of our Speech SDK NuGet package. To reference the SDK, add the following package reference to your project:
5050

5151
```xml
52-
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.0.1" />
52+
<PackageReference Include="Microsoft.CognitiveServices.Speech" Version="1.1.0" />
5353
```
5454

5555
* Java:
56-
You can reference and use the latest version of our Speech SDK Maven package. In your Maven project, add `https://csspeechstorage.blob.core.windows.net/maven/` as an additional repository and reference `com.microsoft.cognitiveservices.speech:client-sdk:1.0.1` as a dependency.
56+
You can reference and use the latest version of our Speech SDK Maven package. In your Maven project, add `https://csspeechstorage.blob.core.windows.net/maven/` as an additional repository and reference `com.microsoft.cognitiveservices.speech:client-sdk:1.1.0` as a dependency.
5757

5858
* C++: Download the SDK as a [.tar package](https://aka.ms/csspeech/linuxbinary) and unpack the files in a directory of your choice. The following table shows the SDK folder structure:
5959

@@ -69,7 +69,7 @@ sudo apt-get install build-essential libssl1.0.0 libcurl3 libasound2
6969

7070
### Android
7171

72-
The Java SDK for Android is packaged as an [AAR (Android Library)](https://developer.android.com/studio/projects/android-library), which includes the necessary libraries as well as required Android permissions for using it. It's hosted in a Maven repository at `https://csspeechstorage.blob.core.windows.net/maven/` as package `com.microsoft.cognitiveservices.speech:client-sdk:1.0.1`.
72+
The Java SDK for Android is packaged as an [AAR (Android Library)](https://developer.android.com/studio/projects/android-library), which includes the necessary libraries as well as required Android permissions for using it. It's hosted in a Maven repository at `https://csspeechstorage.blob.core.windows.net/maven/` as package `com.microsoft.cognitiveservices.speech:client-sdk:1.1.0`.
7373

7474
To consume the package from your Android Studio project, make the following changes:
7575

@@ -82,7 +82,7 @@ To consume the package from your Android Studio project, make the following chan
8282
* In the module-level build.gradle file, add the following to the `dependencies` section:
8383

8484
```text
85-
implementation 'com.microsoft.cognitiveservices.speech:client-sdk:1.0.1'
85+
implementation 'com.microsoft.cognitiveservices.speech:client-sdk:1.1.0'
8686
```
8787

8888
The Java SDK is also part of the [Speech Devices SDK](speech-devices-sdk.md).

0 commit comments

Comments
 (0)