From f775eb9f7e4a2acc36c0a5bc21e929ab0da41133 Mon Sep 17 00:00:00 2001 From: Alexander Frick Date: Wed, 7 Feb 2024 00:20:54 -0600 Subject: [PATCH] add arch to about window --- lib/gui/menu.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gui/menu.ts b/lib/gui/menu.ts index 9c6cba66e9..fa8ee70eae 100644 --- a/lib/gui/menu.ts +++ b/lib/gui/menu.ts @@ -48,6 +48,7 @@ export function buildWindowMenu(window: electron.BrowserWindow) { } else { currentOS = 'BSD'; } + const archType = Os.arch(); /** * @summary Toggle the main window's devtools */ @@ -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',