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:
-rw-r--r--VERSION.cmake1
-rw-r--r--src/gui/version.rc.in11
2 files changed, 8 insertions, 4 deletions
diff --git a/VERSION.cmake b/VERSION.cmake
index 27b2f8f6d..adeed8c15 100644
--- a/VERSION.cmake
+++ b/VERSION.cmake
@@ -1,6 +1,7 @@
set( MIRALL_VERSION_MAJOR 2 )
set( MIRALL_VERSION_MINOR 2 )
set( MIRALL_VERSION_PATCH 0 )
+set( MIRALL_VERSION_YEAR 2016 )
set( MIRALL_SOVERSION 0 )
if ( NOT DEFINED MIRALL_VERSION_SUFFIX )
diff --git a/src/gui/version.rc.in b/src/gui/version.rc.in
index 7e56f454f..467272f2c 100644
--- a/src/gui/version.rc.in
+++ b/src/gui/version.rc.in
@@ -8,6 +8,7 @@
#define VER_PRODUCTNAME_STR "@APPLICATION_NAME@"
#define VER_COMPANYNAME_STR "@APPLICATION_VENDOR@"
+#define VER_COPYRIGHT_STR "© @MIRALL_VERSION_YEAR@"
VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
@@ -19,10 +20,12 @@ BEGIN
BEGIN
BLOCK "080904b0"
BEGIN
- VALUE "CompanyName", VER_COMPANYNAME_STR
- VALUE "FileVersion", VER_FILEVERSION_STR
- VALUE "ProductVersion", VER_PRODUCTVERSION_STR
- VALUE "ProductName", VER_PRODUCTNAME_STR
+ VALUE "CompanyName", VER_COMPANYNAME_STR
+ VALUE "LegalCopyright", VER_COPYRIGHT_STR
+ VALUE "FileVersion", VER_FILEVERSION_STR
+ VALUE "FileDescription", VER_PRODUCTVERSION_STR
+ VALUE "ProductVersion", VER_PRODUCTVERSION_STR
+ VALUE "ProductName", VER_PRODUCTNAME_STR
END
END