mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-28 12:35:40 +01:00
no update menu item for windows store
This commit is contained in:
parent
f91d748a7c
commit
c9d3452f05
@ -11,7 +11,7 @@ import {
|
|||||||
} from 'electron';
|
} from 'electron';
|
||||||
|
|
||||||
import { Main } from '../main';
|
import { Main } from '../main';
|
||||||
import { isMacAppStore } from '../scripts/utils';
|
import { isMacAppStore, isWindowsStore } from '../scripts/utils';
|
||||||
|
|
||||||
import { ConstantsService } from 'jslib/services/constants.service';
|
import { ConstantsService } from 'jslib/services/constants.service';
|
||||||
|
|
||||||
@ -584,11 +584,15 @@ export class MenuMain {
|
|||||||
firstMenuOptions);
|
firstMenuOptions);
|
||||||
|
|
||||||
// About menu
|
// About menu
|
||||||
template[template.length - 1].submenu =
|
const aboutMenuAdditions: MenuItemConstructorOptions[] = [
|
||||||
(template[template.length - 1].submenu as MenuItemConstructorOptions[]).concat([
|
|
||||||
{ type: 'separator' },
|
{ type: 'separator' },
|
||||||
updateMenuItem,
|
];
|
||||||
{
|
|
||||||
|
if (!isWindowsStore()) {
|
||||||
|
aboutMenuAdditions.push(updateMenuItem);
|
||||||
|
}
|
||||||
|
|
||||||
|
aboutMenuAdditions.push({
|
||||||
label: this.main.i18nService.t('aboutBitwarden'),
|
label: this.main.i18nService.t('aboutBitwarden'),
|
||||||
click: () => {
|
click: () => {
|
||||||
const aboutInformation = this.main.i18nService.t('version', app.getVersion()) +
|
const aboutInformation = this.main.i18nService.t('version', app.getVersion()) +
|
||||||
@ -608,8 +612,10 @@ export class MenuMain {
|
|||||||
clipboard.writeText(aboutInformation);
|
clipboard.writeText(aboutInformation);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
});
|
||||||
]);
|
|
||||||
|
template[template.length - 1].submenu =
|
||||||
|
(template[template.length - 1].submenu as MenuItemConstructorOptions[]).concat(aboutMenuAdditions);
|
||||||
}
|
}
|
||||||
|
|
||||||
this.menu = Menu.buildFromTemplate(template);
|
this.menu = Menu.buildFromTemplate(template);
|
||||||
|
Loading…
Reference in New Issue
Block a user