Skip to content

Commit

Permalink
Merge branch 'dessant:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Serega007RU authored Oct 20, 2021
2 parents 270d27b + 105bf0b commit 21fd497
Show file tree
Hide file tree
Showing 5 changed files with 94 additions and 9 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.3.0](https://github.com/dessant/buster/compare/v1.2.2...v1.3.0) (2021-09-25)


### Features

* link to guide for configuring Google Cloud Speech to Text ([8930b1c](https://github.com/dessant/buster/commit/8930b1cf51447bc656d528f83a209075fa07e121))
* link to guide for configuring IBM Watson Speech to Text ([ead4292](https://github.com/dessant/buster/commit/ead4292c7c208f9730e6a54e85dec6701fa9b7ed))
* link to guide for configuring Microsoft Azure Speech to Text ([36afd65](https://github.com/dessant/buster/commit/36afd655feed3f62760c257adf9a4a72f711bec5))


### Bug Fixes

* add new API location for IBM Watson ([da8266b](https://github.com/dessant/buster/commit/da8266bf739905de9d2522625cca625852e8952c))
* add new API locations for Microsoft Azure ([bce1cbb](https://github.com/dessant/buster/commit/bce1cbb36c25763b1c01e263a67f5079c510b654))
* update speech service names ([10cf778](https://github.com/dessant/buster/commit/10cf778ce69bff0a184d8a28d0d06aff752d0354))

### [1.2.2](https://github.com/dessant/buster/compare/v1.2.1...v1.2.2) (2021-07-23)

### [1.2.1](https://github.com/dessant/buster/compare/v1.2.0...v1.2.1) (2021-05-14)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "buster",
"version": "1.2.2",
"version": "1.3.0",
"author": "Armin Sebastian",
"repository": "https://github.com/dessant/buster",
"license": "GPL-3.0-only",
Expand Down
39 changes: 32 additions & 7 deletions src/_locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,27 @@
},

"optionValue_speechService_googleSpeechApi": {
"message": "Google Cloud Speech API",
"message": "Google Cloud Speech-to-Text",
"description": "Value of the option."
},

"optionValue_speechService_ibmSpeechApi": {
"message": "IBM Watson Speech to Text API",
"message": "IBM Watson Speech to Text",
"description": "Value of the option."
},

"optionValue_speechService_microsoftSpeechApi": {
"message": "Microsoft Azure Speech to Text API",
"message": "Microsoft Azure Speech to Text",
"description": "Value of the option."
},

"optionValue_speechService_witSpeechApiDemo": {
"message": "Wit Speech API (managed)",
"message": "Wit.ai (managed)",
"description": "Value of the option."
},

"optionValue_speechService_witSpeechApi": {
"message": "Wit Speech API",
"message": "Wit.ai",
"description": "Value of the option."
},

Expand All @@ -49,6 +49,11 @@
"description": "Title of the option."
},

"optionValue_ibmSpeechApiLoc_seoul": {
"message": "Seoul",
"description": "Value of the option."
},

"optionValue_ibmSpeechApiLoc_london": {
"message": "London",
"description": "Value of the option."
Expand Down Expand Up @@ -105,7 +110,7 @@
},

"optionValue_microsoftSpeechApiLoc_centralIn": {
"message": "India Central",
"message": "Central India",
"description": "Value of the option."
},

Expand All @@ -114,11 +119,26 @@
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_westJp": {
"message": "Japan West",
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_southBr": {
"message": "Brazil South",
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_centralKr": {
"message": "Korea Central",
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_northCh": {
"message": "Switzerland North",
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_northCentralUs": {
"message": "North Central US",
"description": "Value of the option."
Expand All @@ -129,6 +149,11 @@
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_westCentralUs": {
"message": "West Central US",
"description": "Value of the option."
},

"optionValue_microsoftSpeechApiLoc_southUk": {
"message": "UK South",
"description": "Value of the option."
Expand Down Expand Up @@ -430,7 +455,7 @@
"description": "Text of the link."
},

"linkText_witSpeechApiGuide": {
"linkText_apiGuide": {
"message": "How to get an API key?",
"description": "Text of the link."
},
Expand Down
37 changes: 36 additions & 1 deletion src/options/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@
</v-textfield>
</div>

<a
class="service-guide"
v-if="options.speechService === 'googleSpeechApi'"
target="_blank"
rel="noreferrer"
href="https://github.com/dessant/buster/wiki/Configuring-Google-Cloud-Speech-to-Text"
>
{{ getText('linkText_apiGuide') }}
</a>

<div
class="option select"
v-if="options.speechService === 'ibmSpeechApi'"
Expand All @@ -47,6 +57,16 @@
</v-textfield>
</div>

<a
class="service-guide"
v-if="options.speechService === 'ibmSpeechApi'"
target="_blank"
rel="noreferrer"
href="https://github.com/dessant/buster/wiki/Configuring-IBM-Watson-Speech-to-Text"
>
{{ getText('linkText_apiGuide') }}
</a>

<div
class="option select"
v-if="options.speechService === 'microsoftSpeechApi'"
Expand All @@ -69,6 +89,16 @@
</v-textfield>
</div>

<a
class="service-guide"
v-if="options.speechService === 'microsoftSpeechApi'"
target="_blank"
rel="noreferrer"
href="https://github.com/dessant/buster/wiki/Configuring-Microsoft-Azure-Speech-to-Text"
>
{{ getText('linkText_apiGuide') }}
</a>

<v-textfield
v-if="options.speechService === 'witSpeechApi'"
v-for="item in witSpeechApis"
Expand Down Expand Up @@ -108,7 +138,7 @@
rel="noreferrer"
href="https://github.com/dessant/buster/wiki/Configuring-Wit.ai"
>
{{ getText('linkText_witSpeechApiGuide') }}
{{ getText('linkText_apiGuide') }}
</a>
</div>
</div>
Expand Down Expand Up @@ -263,6 +293,7 @@ export default {
'microsoftSpeechApi'
],
ibmSpeechApiLoc: [
'seoul',
'london',
'frankfurt',
'dallas',
Expand All @@ -277,9 +308,13 @@ export default {
'centralFr',
'centralIn',
'eastJp',
'westJp',
'southBr',
'centralKr',
'northCh',
'northCentralUs',
'southCentralUs',
'westCentralUs',
'southUk',
'eastUs',
'eastUs2',
Expand Down
9 changes: 9 additions & 0 deletions src/utils/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ const captchaWitSpeechApiLangCodes = {

// https://cloud.ibm.com/apidocs/speech-to-text#service-endpoint
const ibmSpeechApiUrls = {
seoul: 'https://api.kr-seo.speech-to-text.watson.cloud.ibm.com/v1/recognize',
london: 'https://api.eu-gb.speech-to-text.watson.cloud.ibm.com/v1/recognize',
frankfurt:
'https://api.eu-de.speech-to-text.watson.cloud.ibm.com/v1/recognize',
Expand All @@ -345,12 +346,20 @@ const microsoftSpeechApiUrls = {
'https://centralindia.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
eastJp:
'https://japaneast.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
westJp:
'https://japanwest.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
southBr:
'https://brazilsouth.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
centralKr:
'https://koreacentral.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
northCh:
'https://switzerlandnorth.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
northCentralUs:
'https://northcentralus.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
southCentralUs:
'https://southcentralus.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
westCentralUs:
'https://westcentralus.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
southUk:
'https://uksouth.stt.speech.microsoft.com/speech/recognition/conversation/cognitiveservices/v1',
eastUs:
Expand Down

0 comments on commit 21fd497

Please sign in to comment.