aboutsummaryrefslogtreecommitdiff
path: root/build.go
diff options
context:
space:
mode:
authortomasz1986 <twilczynski@naver.com>2021-02-08 23:48:05 +0900
committerGitHub <noreply@github.com>2021-02-08 15:48:05 +0100
commit4e7510dea905eabcd40667f1f51d7bf3354d8d56 (patch)
tree998e97ad46f9b7f9caab1c985b3996455254e211 /build.go
parentc0f353c0e8949f9ec8707b297b7adcb195ded5a1 (diff)
downloadsyncthing-4e7510dea905eabcd40667f1f51d7bf3354d8d56.tar.gz
syncthing-4e7510dea905eabcd40667f1f51d7bf3354d8d56.zip
build: Fix strings in versioninfo for Windows (fixes #7340) (#7342)
Diffstat (limited to 'build.go')
-rw-r--r--build.go13
1 files 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",
})