2018-01-18 10:32:52 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftver.rc */
|
|
|
|
/* */
|
|
|
|
/* FreeType VERSIONINFO resource for Windows DLLs. */
|
|
|
|
/* */
|
2019-02-23 10:07:09 +01:00
|
|
|
/* Copyright (C) 2018-2019 by */
|
2018-01-18 10:32:52 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2018-01-19 03:29:48 +01:00
|
|
|
#include<windows.h>
|
2017-09-23 20:04:49 +02:00
|
|
|
|
* Version 2.10.0 released.
==========================
Tag sources with `VER-2-10-0'.
* docs/VERSION.TXT: Add entry for version 2.10.0.
* docs/CHANGES: Updated.
* README, Jamfile (RefDoc), src/base/ftver.rc,
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/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.9.1/2.10.0/, s/291/2100/.
* include/freetype/freetype.h (FREETYPE_MINOR): Set to 10.
(FREETYPE_PATCH): Set to 0.
* builds/unix/configure.raw (version_info): Set to 23:0:17.
* CMakeLists.txt (VERSION_MINOR): Set to 10.
(VERSION_PATCH): Set to 0.
* builds/toplevel.mk (version, winversion): Since the minor version
number has two digits now, never omit the patch number. We would
get ambiguous zip file names otherwise.
(dist): Remove remnants of `docmaker' tool.
(do-dist): Remove unused intermediate files.
* src/cff/cffparse.c (destrict_c2s_item): Guard function with
CFF_CONFIG_OPTION_OLD_ENGINE macro.
2019-03-15 07:27:02 +01:00
|
|
|
#define FT_VERSION 2,10,0,0
|
|
|
|
#define FT_VERSION_STR "2.10.0"
|
2017-09-23 20:04:49 +02:00
|
|
|
|
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
|
|
FILEVERSION FT_VERSION
|
|
|
|
PRODUCTVERSION FT_VERSION
|
|
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
|
|
#ifdef _DEBUG
|
|
|
|
FILEFLAGS VS_FF_DEBUG
|
|
|
|
#endif
|
2018-07-25 05:01:34 +02:00
|
|
|
#ifdef DLL_EXPORT
|
2017-09-23 20:04:49 +02:00
|
|
|
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
|
2019-01-22 20:31:44 +01:00
|
|
|
VALUE "LegalCopyright", "\251 2018-2019 The FreeType Project www.freetype.org. All rights reserved."
|
2017-09-23 20:04:49 +02:00
|
|
|
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
|