Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Molkentin <danimo@owncloud.com>2016-02-15 17:42:02 +0300
committerDaniel Molkentin <danimo@owncloud.com>2016-02-15 17:51:48 +0300
commit37924b9c7fbf55862f162ef7ef5601a96928f59d (patch)
treef453f152ba15212a70e65c22b04f9641cd56dacf /src/gui/version.rc.in
parenta6c2ccc6ccd25758bb5b71fe2b8d45e3d5bc6a08 (diff)
Win32: More complete resource specification
Add application and vendor name Addresses #4473
Diffstat (limited to 'src/gui/version.rc.in')
-rw-r--r--src/gui/version.rc.in14
1 files changed, 11 insertions, 3 deletions
diff --git a/src/gui/version.rc.in b/src/gui/version.rc.in
index 09ea09202..7e56f454f 100644
--- a/src/gui/version.rc.in
+++ b/src/gui/version.rc.in
@@ -6,16 +6,24 @@
#define VER_PRODUCTVERSION @MIRALL_VERSION_MAJOR@,@MIRALL_VERSION_MINOR@,@MIRALL_VERSION_PATCH@,@MIRALL_VERSION_BUILD@
#define VER_PRODUCTVERSION_STR "@MIRALL_VERSION_MAJOR@.@MIRALL_VERSION_MINOR@.@MIRALL_VERSION_PATCH@.@MIRALL_VERSION_BUILD@\0"
+#define VER_PRODUCTNAME_STR "@APPLICATION_NAME@"
+#define VER_COMPANYNAME_STR "@APPLICATION_VENDOR@"
+
VS_VERSION_INFO VERSIONINFO
- FILEVERSION VER_FILEVERSION
- PRODUCTVERSION VER_PRODUCTVERSION
+FILEVERSION VER_FILEVERSION
+PRODUCTVERSION VER_PRODUCTVERSION
+FILEOS VOS__WINDOWS32
+FILETYPE VFT_APP
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "080904b0"
BEGIN
- VALUE "FileVersion", VER_FILEVERSION_STR
+ VALUE "CompanyName", VER_COMPANYNAME_STR
+ VALUE "FileVersion", VER_FILEVERSION_STR
VALUE "ProductVersion", VER_PRODUCTVERSION_STR
+ VALUE "ProductName", VER_PRODUCTNAME_STR
+
END
END
BLOCK "VarFileInfo"