Skip to content

Commit

Permalink
add arch to about window
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex313031 committed Feb 7, 2024
1 parent 54d0eff commit f775eb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/gui/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export function buildWindowMenu(window: electron.BrowserWindow) {
} else {
currentOS = 'BSD';
}
const archType = Os.arch();
/**
* @summary Toggle the main window's devtools
*/
Expand Down Expand Up @@ -150,7 +151,7 @@ export function buildWindowMenu(window: electron.BrowserWindow) {
'Chromium : ' + chromeVer,
'Node : ' + nodeVer,
'V8 : ' + v8Ver,
'OS : ' + currentOS
'OS : ' + currentOS + ' ' + archType
]
electron.dialog.showMessageBox({
type: 'info',
Expand Down

0 comments on commit f775eb9

Please sign in to comment.