[Fontconfig] fontconfig: Branch 'master' - 3 commits

Akira TAGOH tagoh at kemper.freedesktop.org
Sat Sep 9 13:46:28 UTC 2017


 README                  |   41 +++++++++++++++++++++++++++++++++++++++--
 configure.ac            |    8 ++++----
 doc/fcconfig.fncs       |    2 +-
 doc/fcpattern.fncs      |    2 +-
 fontconfig/fontconfig.h |    2 +-
 5 files changed, 46 insertions(+), 9 deletions(-)

New commits:
commit 4d3410bd08a0f61272ca1dbb1dd27ac8c5f222de
Author: Akira TAGOH <akira at tagoh.org>
Date:   Sat Sep 9 22:34:36 2017 +0900

    Bump version to 2.12.5

diff --git a/README b/README
index 3a7390d..40f807c 100644
--- a/README
+++ b/README
@@ -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 16406c4..3cd7c47 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 00ab409..ecc1d90 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))
 
commit 37339b7b2c804df4306e80a5cf0d33bc11a33be6
Author: Akira TAGOH <akira at tagoh.org>
Date:   Sat Sep 9 22:34:21 2017 +0900

    Update libtool versioning

diff --git a/configure.ac b/configure.ac
index 74b6795..16406c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -74,11 +74,11 @@ dnl libtool versioning
 dnl bump revision when fixing bugs
 dnl bump current and age, reset revision to zero when adding APIs
 dnl bump current, leave age, reset revision to zero when changing/removing APIS
-LIBT_CURRENT=10
-LIBT_REVISION=4
+LIBT_CURRENT=11
+LIBT_REVISION=0
 AC_SUBST(LIBT_CURRENT)
 AC_SUBST(LIBT_REVISION)
-LIBT_AGE=9
+LIBT_AGE=10
 
 LIBT_VERSION_INFO="$LIBT_CURRENT:$LIBT_REVISION:$LIBT_AGE"
 AC_SUBST(LIBT_VERSION_INFO)
commit 36a3ced9495c236beb1676efb8fda4b1292179a7
Author: Akira TAGOH <akira at tagoh.org>
Date:   Sat Sep 9 22:17:16 2017 +0900

    Update docs

diff --git a/doc/fcconfig.fncs b/doc/fcconfig.fncs
index 59a2227..7377192 100644
--- a/doc/fcconfig.fncs
+++ b/doc/fcconfig.fncs
@@ -388,7 +388,7 @@ and dparsed.  If 'complain' is FcFalse, no warning will be displayed if
 'file' does not exist. Error and warning messages will be output to stderr.
 Returns FcFalse if fsome error occurred while loading the file, either a
 parse error, semantic error or allocation failure. Otherwise returns FcTrue.
- at SINCE@		2.13.0
+ at SINCE@		2.12.5
 @@
 
 @RET@		const FcChar8 *
diff --git a/doc/fcpattern.fncs b/doc/fcpattern.fncs
index e1987ff..928f0bc 100644
--- a/doc/fcpattern.fncs
+++ b/doc/fcpattern.fncs
@@ -212,7 +212,7 @@ and <parameter>b</parameter> binding for that associated with the property
 <parameter>object</parameter>.
 The Value returned is not a copy, but rather refers to the data stored
 within the pattern directly.  Applications must not free this value.
- at SINCE@		2.13.0
+ at SINCE@		2.12.5
 @@
 
 @RET@		FcResult


More information about the Fontconfig mailing list