Update README that missed changes mistakenly

This commit is contained in:
Akira TAGOH 2020-11-28 10:52:12 +09:00
parent 776d09dbaf
commit 98764d54a7
3 changed files with 29 additions and 4 deletions

29
README
View File

@ -1,12 +1,37 @@
Fontconfig
Font configuration and customization library
Version 2.13.91 (2.14 RC1)
2019-06-10
Version 2.13.92 (2.14 RC2)
2019-08-09
Check INSTALL for compilation and installation instructions.
Report bugs to https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new.
2.13.92 (2.14 RC2)
Akira TAGOH (18):
Fix a typo on masking face id
Don't clean up pre-built docs if no docbook installed.
Fix obtaining real path from pre-defined names for Win32
Fix a crash when running with FC_DEBUG=256
Improve the performance a bit
Fix a typo
Add English name first into a cache
FcConfigParseAndLoad*() should returns false on config errors
Clean up temporary directory for tests
Add docs for missing properties
Fix the fail on fc-cache
Fix memory leaks
Fix a memory leak in FcFreeTypeQuery*()
Add 35-lang-normalize.conf
Add FC_FONT_HAS_HINT property to see if font has hinting or not.
Fix failing the check of prep table in some fonts
Fix the fails of make check when SOURCE_DATE_EPOCH is set
Improve the performance a bit
Egmont Koblinger (1):
Fix the linear interpolation during weight mapping
2.13.91 (2.14 RC1)
Akira TAGOH (74):

View File

@ -33,7 +33,7 @@ dnl This is the package version number, not the shared library
dnl version. This same version number must appear in fontconfig/fontconfig.h
dnl Yes, it is a pain to synchronize version numbers. Unfortunately, it's
dnl not possible to extract the version number here from fontconfig.h
AC_INIT([fontconfig], [2.13.91], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
AC_INIT([fontconfig], [2.13.92], [https://gitlab.freedesktop.org/fontconfig/fontconfig/issues/new])
AM_INIT_AUTOMAKE([1.11 parallel-tests dist-xz])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])

View File

@ -53,7 +53,7 @@ typedef int FcBool;
#define FC_MAJOR 2
#define FC_MINOR 13
#define FC_REVISION 91
#define FC_REVISION 92
#define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))