67a42aa887
======================= Tag sources with `VER-2-9'. * docs/VERSION.TXT: Add entry for version 2.9. * README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj, builds/windows/vc2005/index.html, builds/windows/vc2008/freetype.vcproj, builds/windows/vc2008/index.html, builds/windows/vc2010/freetype.vcxproj, builds/windows/vc2010/index.html, builds/windows/visualc/freetype.dsp, builds/windows/visualc/freetype.vcproj, builds/windows/visualc/index.html, builds/windows/visualce/freetype.dsp, builds/windows/visualce/freetype.vcproj, builds/windows/visualce/index.html, builds/windows/ftver.rc, builds/wince/vc2005-ce/freetype.vcproj, builds/wince/vc2005-ce/index.html, builds/wince/vc2008-ce/freetype.vcproj, builds/wince/vc2008-ce/index.html: s/2.8.1/2.9/, s/281/29/. * include/freetype/freetype.h (FREETYPE_MINOR): Set to 9. (FREETYPE_PATCH): Set to 0. * builds/unix/configure.raw (version_info): Set to 22:0:16. * CMakeLists.txt (VERSION_PATCH): Set to 1.
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
#include<Windows.h>
|
|
|
|
#define FT_VERSION 2,9,0,0
|
|
#define FT_VERSION_STR "2.9.0"
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION FT_VERSION
|
|
PRODUCTVERSION FT_VERSION
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
#ifdef _DEBUG
|
|
FILEFLAGS VS_FF_DEBUG
|
|
#endif
|
|
#ifdef _DLL
|
|
FILETYPE VFT_DLL
|
|
#define FT_FILENAME "freetype.dll"
|
|
#else
|
|
FILETYPE VFT_STATIC_LIB
|
|
#define FT_FILENAME "freetype.lib"
|
|
#endif
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904E4"
|
|
BEGIN
|
|
VALUE "CompanyName", "The FreeType Project"
|
|
VALUE "FileDescription", "Font Rendering Library"
|
|
VALUE "FileVersion", FT_VERSION_STR
|
|
VALUE "ProductName", "FreeType"
|
|
VALUE "ProductVersion", FT_VERSION_STR
|
|
VALUE "LegalCopyright", "© 2017 The FreeType Project www.freetype.org. All rights reserved."
|
|
VALUE "InternalName", "freetype"
|
|
VALUE "OriginalFilename", FT_FILENAME
|
|
END
|
|
END
|
|
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
/* The following line should only be modified for localized versions. */
|
|
/* It consists of any number of WORD,WORD pairs, with each pair */
|
|
/* describing a "language,codepage" combination supported by the file. */
|
|
VALUE "Translation", 0x409, 1252
|
|
END
|
|
END
|