aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-16 08:44:02 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-16 13:00:52 +0530
commitb3b9a29225c5107a7517f648f0c02428f5d097b9 (patch)
treecae5fcb6f44ac3b29e3b4b6332a18c117c27acc1 /src/index.js
parent[Housekeeping] Use consistent trigger to skip CI builds. Upgrade recipes subm... (diff)
downloadferdium-app-b3b9a29225c5107a7517f648f0c02428f5d097b9.tar.gz
ferdium-app-b3b9a29225c5107a7517f648f0c02428f5d097b9.tar.zst
ferdium-app-b3b9a29225c5107a7517f648f0c02428f5d097b9.zip
Expose Chrome version in 'About' dialog.
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js
index d251af958..840591ed5 100644
--- a/src/index.js
+++ b/src/index.js
@@ -161,7 +161,7 @@ if (!settings.get('enableGPUAcceleration')) {
161} 161}
162 162
163app.setAboutPanelOptions({ 163app.setAboutPanelOptions({
164 applicationVersion: `Version: ${ferdiVersion}\nElectron: ${process.versions.electron}\nNode.js: ${process.version}\nPlatform: ${osName()}\nArch: ${process.arch}\nBuild date: ${new Date(Number(buildInfo.timestamp))}\nGit SHA: ${buildInfo.gitHashShort}\nGit branch: ${buildInfo.gitBranch}`, 164 applicationVersion: `Version: ${ferdiVersion}\nElectron: ${process.versions.electron}\nChrome: ${process.versions.chrome}\nNode.js: ${process.versions.node}\nPlatform: ${osName()}\nArch: ${process.arch}\nBuild date: ${new Date(Number(buildInfo.timestamp))}\nGit SHA: ${buildInfo.gitHashShort}\nGit branch: ${buildInfo.gitBranch}`,
165 version: '', 165 version: '',
166}); 166});
167 167