mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Bump Electron to v24
This commit is contained in:
committed by
Salah Benmoussati
parent
5eb67dbe63
commit
9460db9f0e
3121
package-lock.json
generated
3121
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -174,7 +174,7 @@
|
||||
"builder-util-runtime": "^9.0.3",
|
||||
"cross-env": "7.0.3",
|
||||
"del": "3.0.0",
|
||||
"electron": "^23.1.0",
|
||||
"electron": "^24",
|
||||
"electron-builder": "^24.2.1",
|
||||
"electron-icon-maker": "0.0.5",
|
||||
"electron-osx-sign": "^0.6.0",
|
||||
|
||||
@@ -103,7 +103,7 @@ export const cleanAppCacheOnCrash = (window: BrowserWindow): void => {
|
||||
) {
|
||||
return;
|
||||
}
|
||||
const options = {
|
||||
const options: Electron.MessageBoxOptions = {
|
||||
type: 'question',
|
||||
title: i18n.t('Relaunch Application')(),
|
||||
message: i18n.t(
|
||||
|
||||
@@ -178,7 +178,7 @@ export const titleBarChangeDialog = async (
|
||||
if (!focusedWindow || !windowExists(focusedWindow)) {
|
||||
return;
|
||||
}
|
||||
const options = {
|
||||
const options: Electron.MessageBoxOptions = {
|
||||
type: 'question',
|
||||
title: i18n.t('Relaunch Application')(),
|
||||
message: i18n.t(
|
||||
@@ -208,7 +208,7 @@ export const restartDialog = async (configFields: any) => {
|
||||
if (!focusedWindow || !windowExists(focusedWindow)) {
|
||||
return;
|
||||
}
|
||||
const options = {
|
||||
const options: Electron.MessageBoxOptions = {
|
||||
type: 'question',
|
||||
title: i18n.t('Relaunch Application')(),
|
||||
message: i18n.t(
|
||||
|
||||
@@ -2343,7 +2343,7 @@ export class WindowHandler {
|
||||
`window handler: build expired, will inform the user and quit the app!`,
|
||||
);
|
||||
|
||||
const options = {
|
||||
const options: Electron.MessageBoxOptions = {
|
||||
type: 'error',
|
||||
title: i18n.t('Build expired')(),
|
||||
message: i18n.t(
|
||||
|
||||
Reference in New Issue
Block a user