Skip to content

Commit

Permalink
add missing languages to supported languages in appx manifest (#3214)
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon-Laux authored Apr 23, 2023
1 parent 67c6edd commit 45c8343
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

### Fixed
- fix some emojis not getting larger in emoji only messages
- add missing languages to supported languages in appx manifest

<a id="1_36_4"></a>

Expand Down
47 changes: 46 additions & 1 deletion build/gen-electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ build['mac'] = {
extendInfo: {
NSCameraUsageDescription: 'For scanning qr codes.',
// NSMicrophoneUsageDescription: "For voice messages",
ITSAppUsesNonExemptEncryption: false
ITSAppUsesNonExemptEncryption: false,
},
gatekeeperAssess: true,
hardenedRuntime: true,
Expand Down Expand Up @@ -109,6 +109,51 @@ build['appx'] = {
publisher: 'CN=C13753E5-D590-467C-9FCA-6799E1A5EC1E',
publisherDisplayName: 'merlinux',
identityName: 'merlinux.DeltaChat',
// supported languages are on https://learn.microsoft.com/en-us/windows/apps/publish/publish-your-app/supported-languages?pivots=store-installer-msix
languages: [
'ar',
'az',
'bg',
'ca',
'cs',
// 'ckb', not supported by ms-store
'da',
'de',
'en',
'el',
// 'eo', not supported by ms-store
'es',
'eu',
'fa',
'fi',
'fr',
'gl',
'hr',
'hu',
'id',
'it',
'ja-jp',
'km',
'ko',
'lt',
'nb',
'nl-nl',
'pl',
'pt',
'pt-BR',
'ru',
// 'sc', not supported by ms-store
'sk',
'sq',
'sr',
'sv',
'ta',
'te',
'tr',
'uk',
'zh-cn',
'zh-tw',
],
}

// see https://www.electron.build/configuration/nsis
Expand Down
41 changes: 41 additions & 0 deletions electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -759,6 +759,47 @@
publisher: 'CN=C13753E5-D590-467C-9FCA-6799E1A5EC1E',
publisherDisplayName: 'merlinux',
identityName: 'merlinux.DeltaChat',
languages: [
'ar',
'az',
'bg',
'ca',
'cs',
'da',
'de',
'en',
'el',
'es',
'eu',
'fa',
'fi',
'fr',
'gl',
'hr',
'hu',
'id',
'it',
'ja-jp',
'km',
'ko',
'lt',
'nb',
'nl-nl',
'pl',
'pt',
'pt-BR',
'ru',
'sk',
'sq',
'sr',
'sv',
'ta',
'te',
'tr',
'uk',
'zh-cn',
'zh-tw',
],
},
nsis: { oneClick: false, allowToChangeInstallationDirectory: false },
}

0 comments on commit 45c8343

Please sign in to comment.