Minor tweaks

This commit is contained in:
Birunthan Mohanathas 2013-01-10 17:32:53 +02:00
parent 15d6872b72
commit fba5fb9995

View File

@ -1,6 +1,5 @@
#define APSTUDIO_READONLY_SYMBOLS
#include <windows.h>
#undef APSTUDIO_READONLY_SYMBOLS
#include <VerRsrc.h>
#include "../../Version.h"
/////////////////////////////////////////////////////////////////////////////
//
@ -9,35 +8,33 @@
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,4,0
PRODUCTVERSION 2,3,0,1172
PRODUCTVERSION PRODUCTVER
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS VS_FF_DEBUG
#else
FILEFLAGS 0x0L
#endif
FILEOS VOS_NT_WINDOWS32
FILEOS VOS_NT_WINDOWS32
FILETYPE VFT_DLL
FILESUBTYPE VFT_UNKNOWN
BEGIN
{
BLOCK "StringFileInfo"
BEGIN
{
BLOCK "040904E4"
BEGIN
{
VALUE "FileVersion", "1.0.4.0"
VALUE "LegalCopyright", "© 2012 - Brian Ferguson"
// Don't change the entries below!
VALUE "ProductName", "Rainmeter"
#ifdef _WIN64
VALUE "ProductVersion", "2.3.0.1172 (64-bit)"
VALUE "ProductVersion", STRPRODUCTVER " (64-bit)"
#else
VALUE "ProductVersion", "2.3.0.1172 (32-bit)"
VALUE "ProductVersion", STRPRODUCTVER " (32-bit)"
#endif //_WIN64
END
END
}
}
BLOCK "VarFileInfo"
BEGIN
{
VALUE "Translation", 0x409, 1252
END
END
}
}