[HarfBuzz] harfbuzz: Branch 'master' - 2 commits
Behdad Esfahbod
behdad at kemper.freedesktop.org
Wed Jul 9 14:45:24 PDT 2014
NEWS | 17 +++++++++++++++++
configure.ac | 2 +-
src/hb-ot-name-table.hh | 2 +-
3 files changed, 19 insertions(+), 2 deletions(-)
New commits:
commit ea001374b86c4f1b24246c08a3d66d2a0e95a827
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Wed Jul 9 17:28:43 2014 -0400
0.9.30
diff --git a/NEWS b/NEWS
index b7ac415..bddf457 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+Overview of changes leading to 0.9.30
+Wednesday, July 9, 2014
+=====================================
+- Update to Unicode 7.0.0:
+ * New scripts Manichaean and Psalter Pahlavi are shaped using
+ Arabic shaper.
+ * All the other new scripts to through the generic shaper for
+ now.
+- Minor Indic improvements.
+- Fix graphite2 backend cluster mapping [crasher!]
+- API changes:
+ * New HB_SCRIPT_* values for Unicode 7.0 scripts.
+ * New function hb_ot_layout_language_get_required_feature().
+- Build fixes.
+
+
Overview of changes leading to 0.9.29
Thursday, May 29, 2014
=====================================
@@ -10,6 +26,7 @@ Thursday, May 29, 2014
* Allow digits and a some punctuation as consonant placeholders.
- Build fixes.
+
Overview of changes leading to 0.9.28
Monday, April 28, 2014
=====================================
diff --git a/configure.ac b/configure.ac
index ef71edf..085d4b5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
AC_PREREQ([2.64])
AC_INIT([HarfBuzz],
- [0.9.29],
+ [0.9.30],
[http://bugs.freedesktop.org/enter_bug.cgi?product=harfbuzz],
[harfbuzz],
[http://harfbuzz.org/])
commit 8b16ff12590200afb08e8821e3f14d2fdf8efbda
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Wed Jul 9 17:40:52 2014 -0400
[uniscribe] Fix build after recent changes to Offset
diff --git a/src/hb-ot-name-table.hh b/src/hb-ot-name-table.hh
index 07dc056..31d9fac 100644
--- a/src/hb-ot-name-table.hh
+++ b/src/hb-ot-name-table.hh
@@ -121,7 +121,7 @@ struct name
/* We only implement format 0 for now. */
USHORT format; /* Format selector (=0/1). */
USHORT count; /* Number of name records. */
- Offset stringOffset; /* Offset to start of string storage (from start of table). */
+ Offset<> stringOffset; /* Offset to start of string storage (from start of table). */
NameRecord nameRecord[VAR]; /* The name records where count is the number of records. */
public:
DEFINE_SIZE_ARRAY (6, nameRecord);
More information about the HarfBuzz
mailing list