Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,19 @@ const template = [
await shell.openExternal('https://rapidpowerestimator.readthedocs.io/en/latest/');
},
},
{
label: 'About',
click: () => {
dialog.showMessageBox(mainWindow, {
type: 'info',
title: 'Rapid Power Estimator',
message: 'Rapid Power Estimator\nVersion: 0.0.1\nAuthor: © 2024 Rapid Silicon Inc. \nType: Engineering',
buttons: ['OK'],
});
},
},
],
},
},
];

const startFlaskServer = () => {
Expand Down
Loading