From 4e7510dea905eabcd40667f1f51d7bf3354d8d56 Mon Sep 17 00:00:00 2001 From: tomasz1986 Date: Mon, 8 Feb 2021 23:48:05 +0900 Subject: [PATCH] build: Fix strings in versioninfo for Windows (fixes #7340) (#7342) --- build.go | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/build.go b/build.go index cc23c92dc..347953f6d 100644 --- a/build.go +++ b/build.go @@ -666,11 +666,14 @@ func shouldBuildSyso(dir string) (string, error) { }, }, "StringFileInfo": M{ - "FileDescription": "Open Source Continuous File Synchronization", - "LegalCopyright": "The Syncthing Authors", - "FileVersion": version, - "ProductVersion": version, - "ProductName": "Syncthing", + "CompanyName": "The Syncthing Authors", + "FileDescription": "Syncthing - Open Source Continuous File Synchronization", + "FileVersion": version, + "InternalName": "syncthing", + "LegalCopyright": "The Syncthing Authors", + "OriginalFilename": "syncthing", + "ProductName": "Syncthing", + "ProductVersion": version, }, "IconPath": "assets/logo.ico", })