From d08dc5de734505b7016a517e27f7ab6eef06e271 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 3 Jun 2012 20:31:32 +0000 Subject: version info fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@289 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Chat/chat_10.vcxproj | 1 + plugins/Chat/chat_10.vcxproj.filters | 3 ++ plugins/Chat/version.rc | 54 ++++++++++++++++++++++++++++++++++ plugins/Clist/clist_10.vcxproj | 1 + plugins/Clist/clist_10.vcxproj.filters | 3 ++ plugins/Clist/version.rc | 54 ++++++++++++++++++++++++++++++++++ plugins/Db3x/db3x_10.vcxproj | 1 + plugins/Db3x/db3x_10.vcxproj.filters | 3 ++ plugins/Db3x/version.rc | 54 ++++++++++++++++++++++++++++++++++ plugins/SRMM/srmm_10.vcxproj | 1 + plugins/SRMM/srmm_10.vcxproj.filters | 3 ++ plugins/SRMM/version.rc | 54 ++++++++++++++++++++++++++++++++++ 12 files changed, 232 insertions(+) create mode 100644 plugins/Chat/version.rc create mode 100644 plugins/Clist/version.rc create mode 100644 plugins/Db3x/version.rc create mode 100644 plugins/SRMM/version.rc (limited to 'plugins') diff --git a/plugins/Chat/chat_10.vcxproj b/plugins/Chat/chat_10.vcxproj index f3e9f17442..d03a518bc1 100644 --- a/plugins/Chat/chat_10.vcxproj +++ b/plugins/Chat/chat_10.vcxproj @@ -286,6 +286,7 @@ + diff --git a/plugins/Chat/chat_10.vcxproj.filters b/plugins/Chat/chat_10.vcxproj.filters index c89ecebf6a..0ddf24be60 100644 --- a/plugins/Chat/chat_10.vcxproj.filters +++ b/plugins/Chat/chat_10.vcxproj.filters @@ -193,5 +193,8 @@ Resource Files + + Resource Files + \ No newline at end of file diff --git a/plugins/Chat/version.rc b/plugins/Chat/version.rc new file mode 100644 index 0000000000..da2313cc27 --- /dev/null +++ b/plugins/Chat/version.rc @@ -0,0 +1,54 @@ +#include "version.h" +#include "resource.h" +#include "winres.h" +#include "richedit.h" + +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page( 1252) +#endif //_WIN32 + +#ifndef _MAC +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "\0" + VALUE "CompanyName", "Miranda\0" + VALUE "FileDescription", "Group chats\0" + VALUE "FileVersion", __VERSION_STRING "\0" + VALUE "InternalName", "chat\0" + VALUE "LegalCopyright", "Copyright ( c) 2002-12 Miranda team\0" + VALUE "LegalTrademarks", "\0" + VALUE "OriginalFilename", "chat.dll\0" + VALUE "PrivateBuild", "\0" + VALUE "ProductName", "Chat plugin\0" + VALUE "ProductVersion", __VERSION_STRING "\0" + VALUE "SpecialBuild", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // !_MAC diff --git a/plugins/Clist/clist_10.vcxproj b/plugins/Clist/clist_10.vcxproj index 94570c3cc3..bbb16e8d90 100644 --- a/plugins/Clist/clist_10.vcxproj +++ b/plugins/Clist/clist_10.vcxproj @@ -237,6 +237,7 @@ + diff --git a/plugins/Clist/clist_10.vcxproj.filters b/plugins/Clist/clist_10.vcxproj.filters index e57e70760f..cdb7418639 100644 --- a/plugins/Clist/clist_10.vcxproj.filters +++ b/plugins/Clist/clist_10.vcxproj.filters @@ -69,5 +69,8 @@ Resource Files + + Resource Files + \ No newline at end of file diff --git a/plugins/Clist/version.rc b/plugins/Clist/version.rc new file mode 100644 index 0000000000..ea2b4a0834 --- /dev/null +++ b/plugins/Clist/version.rc @@ -0,0 +1,54 @@ +#include "version.h" +#include "resource.h" +#include "winres.h" +#include "richedit.h" + +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page( 1252) +#endif //_WIN32 + +#ifndef _MAC +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "\0" + VALUE "CompanyName", "Miranda\0" + VALUE "FileDescription", "Contact list classic\0" + VALUE "FileVersion", __VERSION_STRING "\0" + VALUE "InternalName", "clist_classic\0" + VALUE "LegalCopyright", "Copyright ( c) 2002-12 Miranda team\0" + VALUE "LegalTrademarks", "\0" + VALUE "OriginalFilename", "clist_classic.dll\0" + VALUE "PrivateBuild", "\0" + VALUE "ProductName", "Contact list plugin\0" + VALUE "ProductVersion", __VERSION_STRING "\0" + VALUE "SpecialBuild", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // !_MAC diff --git a/plugins/Db3x/db3x_10.vcxproj b/plugins/Db3x/db3x_10.vcxproj index b244d5a437..938f153c84 100644 --- a/plugins/Db3x/db3x_10.vcxproj +++ b/plugins/Db3x/db3x_10.vcxproj @@ -226,6 +226,7 @@ + diff --git a/plugins/Db3x/db3x_10.vcxproj.filters b/plugins/Db3x/db3x_10.vcxproj.filters index cb5137171a..cd9abbcb11 100644 --- a/plugins/Db3x/db3x_10.vcxproj.filters +++ b/plugins/Db3x/db3x_10.vcxproj.filters @@ -58,5 +58,8 @@ Resource Files + + Resource Files + \ No newline at end of file diff --git a/plugins/Db3x/version.rc b/plugins/Db3x/version.rc new file mode 100644 index 0000000000..9ffcfbac25 --- /dev/null +++ b/plugins/Db3x/version.rc @@ -0,0 +1,54 @@ +#include "version.h" +#include "resource.h" +#include "winres.h" +#include "richedit.h" + +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page( 1252) +#endif //_WIN32 + +#ifndef _MAC +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "\0" + VALUE "CompanyName", "Miranda\0" + VALUE "FileDescription", "Miranda database plugin\0" + VALUE "FileVersion", __VERSION_STRING "\0" + VALUE "InternalName", "db3x\0" + VALUE "LegalCopyright", "Copyright (c) 2002-12 Miranda team\0" + VALUE "LegalTrademarks", "\0" + VALUE "OriginalFilename", "db3x.dll\0" + VALUE "PrivateBuild", "\0" + VALUE "ProductName", "Database plugin\0" + VALUE "ProductVersion", __VERSION_STRING "\0" + VALUE "SpecialBuild", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // !_MAC diff --git a/plugins/SRMM/srmm_10.vcxproj b/plugins/SRMM/srmm_10.vcxproj index aa9f3cd6f1..e606ac061f 100644 --- a/plugins/SRMM/srmm_10.vcxproj +++ b/plugins/SRMM/srmm_10.vcxproj @@ -251,6 +251,7 @@ + diff --git a/plugins/SRMM/srmm_10.vcxproj.filters b/plugins/SRMM/srmm_10.vcxproj.filters index b84a46c26b..4be72d8c8d 100644 --- a/plugins/SRMM/srmm_10.vcxproj.filters +++ b/plugins/SRMM/srmm_10.vcxproj.filters @@ -129,5 +129,8 @@ Resource Files + + Resource Files + \ No newline at end of file diff --git a/plugins/SRMM/version.rc b/plugins/SRMM/version.rc new file mode 100644 index 0000000000..4b72425296 --- /dev/null +++ b/plugins/SRMM/version.rc @@ -0,0 +1,54 @@ +#include "version.h" +#include "resource.h" +#include "winres.h" +#include "richedit.h" + +#ifdef _WIN32 +LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US +#pragma code_page( 1252) +#endif //_WIN32 + +#ifndef _MAC +///////////////////////////////////////////////////////////////////////////// +// +// Version +// + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x40004L + FILETYPE 0x2L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments", "\0" + VALUE "CompanyName", "Miranda\0" + VALUE "FileDescription", "Send and receive instant messages\0" + VALUE "FileVersion", __VERSION_STRING "\0" + VALUE "InternalName", "jabber\0" + VALUE "LegalCopyright", "Copyright ( c) 2002-12 Miranda team\0" + VALUE "LegalTrademarks", "\0" + VALUE "OriginalFilename", "srmm.dll\0" + VALUE "PrivateBuild", "\0" + VALUE "ProductName", "SRMM plugin\0" + VALUE "ProductVersion", __VERSION_STRING "\0" + VALUE "SpecialBuild", "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END + +#endif // !_MAC -- cgit v1.2.3