Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion electron-builder.json5
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,26 @@
"displayName": "OpenScreen",
"backgroundColor": "transparent",
"capabilities": ["runFullTrust", "microphone", "webcam"],
"languages": ["en-US", "fr-FR"],
// Mirrors SUPPORTED_LOCALES in src/i18n/config.ts. This list is what the Store
// shows as "supported languages" on the product page and what lets the listing
// surface in each language's Store search — declaring only en-US/fr-FR advertised
// 2 of the 13 languages the app actually ships. Bare tags (ar, es, ...) match every
// region of that language, which is what the renderer's locale resolution does too.
"languages": [
"en-US",
"fr-FR",
"ar",
"es",
"it",
"ja-JP",
"ko-KR",
"pt-BR",
"ru",
"tr",
"vi",
"zh-CN",
"zh-TW"
],
"showNameOnTiles": true
}
}
Loading