diff options
author | Akira TAGOH <akira@tagoh.org> | 2017-09-09 22:34:36 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2017-09-09 22:34:36 +0900 |
commit | 4d3410bd08a0f61272ca1dbb1dd27ac8c5f222de (patch) | |
tree | 9856bb7be1daefbb1af1ca9d875508eb481424af | |
parent | 37339b7b2c804df4306e80a5cf0d33bc11a33be6 (diff) |
Bump version to 2.12.52.12.5
-rw-r--r-- | README | 41 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | fontconfig/fontconfig.h | 2 |
3 files changed, 41 insertions, 4 deletions
@@ -1,12 +1,49 @@ Fontconfig Font configuration and customization library - Version 2.12.4 - 2017-07-05 + Version 2.12.5 + 2017-09-09 Check INSTALL for compilation and installation instructions. Report bugs to https://bugs.freedesktop.org in the fontconfig module. +2.12.5 + +Akira TAGOH (17): + Add FcPatternGetWithBinding() to obtain the binding type of the value in FcPattern. + Add FcConfigParseAndLoadFromMemory() to load a configuration from memory. + Bug 101726 - Sans config pulls in Microsoft Serifed font + Fix gcc warnings with enabling libxml2 + Add und-zsye.orth to support emoji in lang + Add more code points to und-zsye.orth + Keep the same behavior to the return value of FcConfigParseAndLoad + Do not ship fcobjshash.gperf in archive + Accept 4 digit script tag in FcLangNormalize(). + Fix to work the debugging option on fc-validate + Add und_zmth.orth to support Math in lang + Polish und_zmth.orth for Libertinus Math + Polish und_zmth.orth more for Cambria Math and Minion Math + Update similar to emoji's + fc-blanks: fall back to the static data available in repo if downloaded data is corrupted + Update docs + Update libtool versioning + +Behdad Esfahbod (14): + Pass --pic to gperf + Add generic family matching for "emoji" and "math" + [fc-query] Support listing named instances + Add Twitter Color Emoji + Add EmojiOne Mozilla font + [fc-lang] Allow using ".." instead of "-" in ranges + Minor + Remove unneeded codepoints + Adjust color emoji config some more + Ignore 'und-' prefix for in FcLangCompare + Minor + Fix sign-difference compare warning + Fix warning + Fix weight mapping + 2.12.4 Akira TAGOH (5): diff --git a/configure.ac b/configure.ac index 16406c42..3cd7c47f 100644 --- a/configure.ac +++ b/configure.ac @@ -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.12.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig]) +AC_INIT([fontconfig], [2.12.5], [https://bugs.freedesktop.org/enter_bug.cgi?product=fontconfig]) AM_INIT_AUTOMAKE([1.11 parallel-tests dist-bzip2]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) diff --git a/fontconfig/fontconfig.h b/fontconfig/fontconfig.h index 00ab409e..ecc1d908 100644 --- a/fontconfig/fontconfig.h +++ b/fontconfig/fontconfig.h @@ -53,7 +53,7 @@ typedef int FcBool; #define FC_MAJOR 2 #define FC_MINOR 12 -#define FC_REVISION 4 +#define FC_REVISION 5 #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION)) |