Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
this should fix bug in windows version settings
  • Loading branch information
Pietro Passarelli committed Oct 25, 2020
1 parent 244cfa8 commit 4e6e0e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "digital-paper-edit-electron",
"productName": "autoEdit 3",
"version": "1.2.16",
"version": "1.3.0",
"description": "Digital Paper Edit app",
"main": "src/electron-main.js",
"scripts": {
Expand Down Expand Up @@ -177,4 +177,4 @@
"react-dom": "^16.10.2",
"tmp": "^0.1.0"
}
}
}
3 changes: 2 additions & 1 deletion src/stt-settings/default-stt.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ const appUserDataPath = ipcRenderer.sendSync('synchronous-message-get-user-data-
const defaultSttTemplate = {
// Provider could be '' unspecified,
// or pocketsphinx, to give a working default to the app.
provider: 'pocketsphinx',
// altho having pocketsphinx as default causes issue in windows version where it's not available
provider: '',
language: null,
languageModel: null,
};
Expand Down

0 comments on commit 4e6e0e9

Please sign in to comment.