pull/1844/head
Mikael Finstad 2 years ago
parent 02cdd13bf7
commit 240285fef3
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -39,7 +39,7 @@ const appVersion = app.getVersion();
app.name = appName;
const isStoreBuild = true || process.mas;
const isStoreBuild = process.windowsStore || process.mas;
const showVersion = !isStoreBuild;
@ -57,7 +57,7 @@ if (isLinux) {
}
if (!showVersion) {
// https://github.com/mifi/lossless-cut/issues/1882
aboutPanelOptions.applicationVersion = `${true ? 'Microsoft Store' : 'App Store'} edition, based on GitHub v${appVersion}`;
aboutPanelOptions.applicationVersion = `${process.windowsStore ? 'Microsoft Store' : 'App Store'} edition, based on GitHub v${appVersion}`;
}
// https://www.electronjs.org/docs/latest/api/app#appsetaboutpaneloptionsoptions

Loading…
Cancel
Save