From 055cf03539798c2b6864e9df74b380d081a09e6b Mon Sep 17 00:00:00 2001 From: NamH Date: Wed, 21 Feb 2024 15:13:18 +0700 Subject: [PATCH] chore: add app version into log (#2116) Signed-off-by: James Co-authored-by: James --- electron/main.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/electron/main.ts b/electron/main.ts index 13e181cdf..de18b8f9d 100644 --- a/electron/main.ts +++ b/electron/main.ts @@ -83,6 +83,7 @@ function createMainWindow() { /* Enable dev tools for development */ if (!app.isPackaged) mainWindow.webContents.openDevTools() + log(`Version: ${app.getVersion()}`) } /**