From 13dec1dbebf7493e8bfea8584bf9c4b36a94849c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 8 Jun 2013 02:23:52 +0000 Subject: [PATCH] Simplify the version information resource definition a little. Put the correct data into FileVersion and InternalName fields and remove LegalTrademarks, PrivateBuild and SpecialBuild completely as they are optional and shouldn't be present if the corresponding flags are not set, see http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058(v=vs.85).aspx git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74122 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/version.rc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/msw/version.rc b/src/msw/version.rc index b3214af..981e3bf 100644 --- a/src/msw/version.rc +++ b/src/msw/version.rc @@ -53,15 +53,12 @@ BEGIN VALUE "Comments", "wxWidgets cross-platform GUI framework\0" VALUE "CompanyName", "wxWidgets development team\0" VALUE "FileDescription", "wxWidgets for MSW\0" - VALUE "FileVersion", "wxWidgets Library " wxVERSION_NUM_DOT_STRING "\0" - VALUE "InternalName", "wxMSW\0" + VALUE "FileVersion", wxVERSION_NUM_DOT_STRING "\0" + VALUE "InternalName", wxSTRINGIZE(WXDLLNAME) "\0" VALUE "LegalCopyright", "Copyright © 1993-2013 wxWidgets development team\0" - VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", wxSTRINGIZE(WXDLLNAME) ".dll\0" - VALUE "PrivateBuild", "\0" VALUE "ProductName", "wxWidgets\0" VALUE "ProductVersion", wxVERSION_NUM_DOT_STRING "\0" - VALUE "SpecialBuild", "\0" END END BLOCK "VarFileInfo" -- 2.7.4