summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2014-11-29 19:23:22 +0300
committerAndrey Nazarov <skuller@skuller.net>2014-12-01 23:04:39 +0300
commit3762fe5c58439fc146325ea8707333bfead13317 (patch)
tree8d785a060be37ac40d9eeec0de8a682b4ceb7f55
parentcfc40873cc6677b05abbc6da4b4d483135e28ade (diff)
Update Windows resources.
Change file description strings to differentiate between x86 and x86_64 builds.
-rw-r--r--src/windows/res/baseq2.rc6
-rw-r--r--src/windows/res/q2pro.rc6
-rw-r--r--src/windows/res/q2proded.rc6
3 files changed, 12 insertions, 6 deletions
diff --git a/src/windows/res/baseq2.rc b/src/windows/res/baseq2.rc
index 5ea59ec..8d55fe8 100644
--- a/src/windows/res/baseq2.rc
+++ b/src/windows/res/baseq2.rc
@@ -13,8 +13,10 @@
#endif
#ifdef _WIN64
+#define VER_FILEDESCRIPTION_STR "Q2PRO baseq2 game module (64-bit)"
#define VER_ORIGINALFILENAME_STR "gamex86_64.dll"
#else
+#define VER_FILEDESCRIPTION_STR "Q2PRO baseq2 game module"
#define VER_ORIGINALFILENAME_STR "gamex86.dll"
#endif
@@ -35,11 +37,11 @@ BEGIN
BEGIN
VALUE "Comments", "http://skuller.net/q2pro/"
VALUE "CompanyName", "skuller.net"
- VALUE "FileDescription", "Q2PRO baseq2 game module"
+ VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "FileVersion", VERSION
VALUE "InternalName", "baseq2"
- VALUE "LegalCopyright", "Copyright © 2012 skuller.net"
+ VALUE "LegalCopyright", "Copyright © 2014 skuller.net"
VALUE "ProductName", "Q2PRO"
VALUE "ProductVersion", VERSION
END
diff --git a/src/windows/res/q2pro.rc b/src/windows/res/q2pro.rc
index 9443f36..f748c1d 100644
--- a/src/windows/res/q2pro.rc
+++ b/src/windows/res/q2pro.rc
@@ -13,8 +13,10 @@
#endif
#ifdef _WIN64
+#define VER_FILEDESCRIPTION_STR "Q2PRO OpenGL client (64-bit)"
#define VER_ORIGINALFILENAME_STR "q2pro64.exe"
#else
+#define VER_FILEDESCRIPTION_STR "Q2PRO OpenGL client"
#define VER_ORIGINALFILENAME_STR "q2pro.exe"
#endif
@@ -35,11 +37,11 @@ BEGIN
BEGIN
VALUE "Comments", "http://skuller.net/q2pro/"
VALUE "CompanyName", "skuller.net"
- VALUE "FileDescription", "Q2PRO OpenGL client"
+ VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "FileVersion", VERSION
VALUE "InternalName", "q2pro"
- VALUE "LegalCopyright", "Copyright © 2012 skuller.net"
+ VALUE "LegalCopyright", "Copyright © 2014 skuller.net"
VALUE "ProductName", "Q2PRO"
VALUE "ProductVersion", VERSION
END
diff --git a/src/windows/res/q2proded.rc b/src/windows/res/q2proded.rc
index f9286ad..f97dfcc 100644
--- a/src/windows/res/q2proded.rc
+++ b/src/windows/res/q2proded.rc
@@ -13,8 +13,10 @@
#endif
#ifdef _WIN64
+#define VER_FILEDESCRIPTION_STR "Q2PRO dedicated server (64-bit)"
#define VER_ORIGINALFILENAME_STR "q2proded64.exe"
#else
+#define VER_FILEDESCRIPTION_STR "Q2PRO dedicated server"
#define VER_ORIGINALFILENAME_STR "q2proded.exe"
#endif
@@ -35,11 +37,11 @@ BEGIN
BEGIN
VALUE "Comments", "http://skuller.net/q2pro/"
VALUE "CompanyName", "skuller.net"
- VALUE "FileDescription", "Q2PRO dedicated server"
+ VALUE "FileDescription", VER_FILEDESCRIPTION_STR
VALUE "OriginalFilename", VER_ORIGINALFILENAME_STR
VALUE "FileVersion", VERSION
VALUE "InternalName", "q2proded"
- VALUE "LegalCopyright", "Copyright © 2012 skuller.net"
+ VALUE "LegalCopyright", "Copyright © 2014 skuller.net"
VALUE "ProductName", "Q2PRO"
VALUE "ProductVersion", VERSION
END