diff --git a/src/vs/platform/windows/electron-main/windowsService.ts b/src/vs/platform/windows/electron-main/windowsService.ts index 491a34db330..b7c065e346a 100644 --- a/src/vs/platform/windows/electron-main/windowsService.ts +++ b/src/vs/platform/windows/electron-main/windowsService.ts @@ -505,9 +505,15 @@ export class WindowsService implements IWindowsService, IURLHandler, IDisposable this.logService.trace('windowsService#openAboutDialog'); const lastActiveWindow = this.windowsMainService.getFocusedWindow() || this.windowsMainService.getLastActiveWindow(); + let version = app.getVersion(); + + if (product.target) { + version = `${version} (${product.target} setup)`; + } + const detail = nls.localize('aboutDetail', "Version: {0}\nCommit: {1}\nDate: {2}\nElectron: {3}\nChrome: {4}\nNode.js: {5}\nV8: {6}\nArchitecture: {7}", - app.getVersion(), + version, product.commit || 'Unknown', product.date || 'Unknown', process.versions['electron'],