Skip to content

Commit

Permalink
fix(spie): add app name to notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
robsonos committed Nov 25, 2024
1 parent 70c3c48 commit fb6017a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/spie/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { BrowserWindow, app } from 'electron';

import App from './app/app';
import { electronAppName } from './app/constants';
import ElectronEvents from './app/events/electron.events';
import SerialPortEvents from './app/events/serial-port.events';
import UpdateEvents from './app/events/update.events';

export default class Main {
static initialize(): void {
//
if (process.platform === 'win32') {
app.setAppUserModelId(electronAppName);
}
}

static bootstrapApp(): void {
Expand Down

0 comments on commit fb6017a

Please sign in to comment.