NEWS | 13 +++++++++++++ configure.ac | 2 +- test/shaping/README.md | 5 ++++- 3 files changed, 18 insertions(+), 2 deletions(-)
New commits: commit dabf32a5ad706726412ba5c64e1ea614a707b928 Author: Behdad Esfahbod <[email protected]> Date: Tue Feb 23 15:38:43 2016 +0900 1.2.1 diff --git a/NEWS b/NEWS index d8daee7..b1b63b2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +Overview of changes leading to 1.2.1 +Friday, February 23, 2016 +==================================== + +- CoreText: Fix bug with wrong scale if font scale was changed later. + https://github.com/libass/libass/issues/212 +- CoreText: Drastically speed up font initialization. +- CoreText: Fix tiny leak. +- Group ZWJ/ZWNJ with previous syllable under cluster-level=0. + https://github.com/behdad/harfbuzz/issues/217 +- Add test/shaping/README.md about how to add tests to the suite. + + Overview of changes leading to 1.2.0 Friday, February 19, 2016 ==================================== diff --git a/configure.ac b/configure.ac index d4c8f95..d12d4b8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.64]) AC_INIT([HarfBuzz], - [1.2.0], + [1.2.1], [http://bugs.freedesktop.org/enter_bug.cgi?product=harfbuzz], [harfbuzz], [http://harfbuzz.org/]) commit 525cc7d28cbe4e8149ddba677224f134dc0a3274 Author: Behdad Esfahbod <[email protected]> Date: Tue Feb 23 15:19:27 2016 +0900 Add note re only adding tests with Free Software fonts diff --git a/test/shaping/README.md b/test/shaping/README.md index 050ae13..bf09909 100644 --- a/test/shaping/README.md +++ b/test/shaping/README.md @@ -30,8 +30,11 @@ what this does is: $ ./hb-unicode-encode 41 42 43 627 | ./record-it.sh ../../util/hb-shape font.ttf >> tests/test-name.test ``` -If you created a new test file, add it to Makefile.am so it is run. +If you created a new test file, add it to `Makefile.am` so it is run. Check that `make test` does indeed run it, and that the test passes. When everything looks good, `git add` the new font as well as new test file if you created any. You can see what new files are there by running `git status tests fonts/sha1sum`. And commit! + +*Note!* Please only add tests using Open Source fonts, preferably under +OFL or similar license. _______________________________________________ HarfBuzz mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/harfbuzz
