SDA-4717 - Bump version 25.1.0 (#2217)

* SDA-4717 Bump SDA and electron version

* SDA-4717 Update event
This commit is contained in:
Kiran Niranjan
2024-11-04 17:16:47 +05:30
committed by GitHub
parent 96c7c9165f
commit f9baa9d453
4 changed files with 9 additions and 13 deletions

12
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "symphony", "name": "symphony",
"version": "24.11.0", "version": "25.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "symphony", "name": "symphony",
"version": "24.11.0", "version": "25.1.0",
"hasInstallScript": true, "hasInstallScript": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
@@ -40,7 +40,7 @@
"cheerio": "v1.0.0-rc.12", "cheerio": "v1.0.0-rc.12",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"del": "3.0.0", "del": "3.0.0",
"electron": "32.0.1", "electron": "33.0.2",
"electron-builder": "^24.13.2", "electron-builder": "^24.13.2",
"electron-devtools-installer": "^3.2.0", "electron-devtools-installer": "^3.2.0",
"electron-icon-maker": "0.0.5", "electron-icon-maker": "0.0.5",
@@ -6310,9 +6310,9 @@
} }
}, },
"node_modules/electron": { "node_modules/electron": {
"version": "32.0.1", "version": "33.0.2",
"resolved": "https://repo.symphony.com/artifactory/api/npm/npm-virtual-dev/electron/-/electron-32.0.1.tgz", "resolved": "https://repo.symphony.com/artifactory/api/npm/npm-virtual-dev/electron/-/electron-33.0.2.tgz",
"integrity": "sha512-5Hd5Jaf9niYVR2hZxoRd3gOrcxPOxQV1XPV5WaoSfT9jLJHFadhlKtuSDIk3U6rQZke+aC7GqPPAv55nWFCMsA==", "integrity": "sha512-C2WksfP0COsMHbYXSJG68j6S3TjuGDrw/YT42B526yXalIlNQZ2GeAYKryg6AEMkIp3p8TUfDRD0+HyiyCt/nw==",
"dev": true, "dev": true,
"hasInstallScript": true, "hasInstallScript": true,
"dependencies": { "dependencies": {

View File

@@ -1,7 +1,7 @@
{ {
"name": "symphony", "name": "symphony",
"productName": "Symphony", "productName": "Symphony",
"version": "24.12.0", "version": "25.1.0",
"clientVersion": "2.0.1", "clientVersion": "2.0.1",
"buildNumber": "0", "buildNumber": "0",
"searchAPIVersion": "1.55.3", "searchAPIVersion": "1.55.3",
@@ -181,7 +181,7 @@
"cheerio": "v1.0.0-rc.12", "cheerio": "v1.0.0-rc.12",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"del": "3.0.0", "del": "3.0.0",
"electron": "32.1.2", "electron": "33.0.2",
"electron-builder": "^24.13.2", "electron-builder": "^24.13.2",
"electron-devtools-installer": "^3.2.0", "electron-devtools-installer": "^3.2.0",
"electron-icon-maker": "0.0.5", "electron-icon-maker": "0.0.5",

View File

@@ -559,10 +559,6 @@ export class WindowHandler {
}); });
}); });
this.mainWindow.once('ready-to-show', (event: Event) => {
logger.info(`window-handler: Main Window ready to show: ${event}`);
});
this.mainWebContents.on( this.mainWebContents.on(
'did-fail-load', 'did-fail-load',
(_, errorCode: number, errorDescription: string) => { (_, errorCode: number, errorDescription: string) => {

View File

@@ -220,7 +220,7 @@ class Notification extends NotificationHandler {
// This is a workaround to fix an issue with electron framework // This is a workaround to fix an issue with electron framework
// https://github.com/electron/electron/issues/611 // https://github.com/electron/electron/issues/611
notificationWindow.on('resize', (event) => { notificationWindow.on('will-resize', (event) => {
event.preventDefault(); event.preventDefault();
}); });