Skip to content

Commit

Permalink
feat: enable client app installation on Windows 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
dessant committed Feb 8, 2020
1 parent aab8384 commit 9995f46
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const targetEnv = process.env.TARGET_ENV;

const clientAppVersion = '0.2.0';
const clientAppVersion = '0.3.0';

const witApiKeys = {
arabic: 'AD6RLFYBWRGGJD76SWKALZMUFVGMVCTB',
Expand Down
7 changes: 6 additions & 1 deletion src/utils/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ const optionKeys = [
'autoUpdateClientApp'
];

const clientAppPlatforms = ['windows/amd64', 'linux/amd64', 'macos/amd64'];
const clientAppPlatforms = [
'windows/amd64',
'windows/386',
'linux/amd64',
'macos/amd64'
];

// https://developers.google.com/recaptcha/docs/language
// https://cloud.google.com/speech-to-text/docs/languages
Expand Down

0 comments on commit 9995f46

Please sign in to comment.