diff --git a/package.json b/package.json index f97d7ae..ad7978d 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "@types/electron-squirrel-startup": "^1.0.2", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", - "electron": "38.1.2", + "electron": "38.5.0", "eslint": "^8.57.1", "eslint-plugin-import": "^2.32.0", "json-schema-typed": "^8.0.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 567c666..902bdda 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -85,8 +85,8 @@ importers: specifier: ^5.62.0 version: 5.62.0(eslint@8.57.1)(typescript@4.5.5) electron: - specifier: 38.1.2 - version: 38.1.2 + specifier: 38.5.0 + version: 38.5.0 eslint: specifier: ^8.57.1 version: 8.57.1 @@ -1372,8 +1372,8 @@ packages: resolution: {integrity: sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==} engines: {node: '>=8.0.0'} - electron@38.1.2: - resolution: {integrity: sha512-WXUcN3W8h8NTTZViA3KNX0rV2YBU0X0mEUM3ubupXTDY4QtIN7tmiqYVOKSKpR2LckTmBWGuEeY4D6xVoffwKQ==} + electron@38.5.0: + resolution: {integrity: sha512-dbC7V+eZweerYMJfxQldzHOg37a1VdNMCKxrJxlkp3cA30gOXtXSg4ZYs07L5+QwI19WOy1uyvtEUgbw1RRsCQ==} engines: {node: '>= 12.20.55'} hasBin: true @@ -1715,12 +1715,12 @@ packages: glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me glob@8.1.0: resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==} engines: {node: '>=12'} - deprecated: Glob versions prior to v9 are no longer supported + deprecated: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me global-agent@3.0.0: resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} @@ -2876,6 +2876,7 @@ packages: tar@6.2.1: resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} engines: {node: '>=10'} + deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me temp@0.9.4: resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==} @@ -4118,7 +4119,7 @@ snapshots: '@types/mute-stream@0.0.4': dependencies: - '@types/node': 22.18.6 + '@types/node': 24.5.2 '@types/node@22.18.6': dependencies: @@ -4138,7 +4139,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.18.6 + '@types/node': 24.5.2 optional: true '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@4.5.5))(eslint@8.57.1)(typescript@4.5.5)': @@ -4787,7 +4788,7 @@ snapshots: - supports-color optional: true - electron@38.1.2: + electron@38.5.0: dependencies: '@electron/get': 2.0.3 '@types/node': 22.18.6 diff --git a/src/main.ts b/src/main.ts index d67c18c..d19b5e6 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,6 @@ import { IUpdateInfo, updateElectronApp } from "update-electron-app"; -import { BrowserWindow, app, shell, Notification } from "electron"; +import { BrowserWindow, Notification, app, shell } from "electron"; import started from "electron-squirrel-startup"; import { autoLaunch } from "./native/autoLaunch"; @@ -26,17 +26,17 @@ const acquiredLock = app.requestSingleInstanceLock(); const onNotifyUser = (_info: IUpdateInfo) => { const notification = new Notification({ - title: 'Update Available', - body: 'Restart the app to install the update.', - silent: true - }) + title: "Update Available", + body: "Restart the app to install the update.", + silent: true, + }); - notification.show() -} + notification.show(); +}; if (acquiredLock) { // start auto update logic - updateElectronApp({onNotifyUser}) + updateElectronApp({ onNotifyUser }); // create and configure the app when electron is ready app.on("ready", () => { @@ -54,7 +54,7 @@ if (acquiredLock) { // Windows specific fix for notifications if (process.platform === "win32") { - app.setAppUserModelId("chat.stoat.notifications"); + app.setAppUserModelId("com.squirrel.Stoat.stoat-desktop"); } });