2.6.7
This commit is contained in:
parent
2309186468
commit
fb46a32ed0
12
NEWS
12
NEWS
|
@ -1,3 +1,15 @@
|
||||||
|
Overview of changes leading to 2.6.7
|
||||||
|
Wednesday, June 3, 2020
|
||||||
|
====================================
|
||||||
|
- Update to Unicode 13.0.0.
|
||||||
|
- Fix hb_ot_layout_get_ligature_carets for fonts without lcar table, it was
|
||||||
|
completely broken for all the other fonts since 2.1.2.
|
||||||
|
- As a part of our migration to meson, this release will be the last one
|
||||||
|
to provide cmake port files but autotools still is our main build system.
|
||||||
|
There is a possibility that the next version or the after be released
|
||||||
|
using meson.
|
||||||
|
|
||||||
|
|
||||||
Overview of changes leading to 2.6.6
|
Overview of changes leading to 2.6.6
|
||||||
Tuesday, May 12, 2020
|
Tuesday, May 12, 2020
|
||||||
====================================
|
====================================
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
AC_INIT([HarfBuzz],
|
AC_INIT([HarfBuzz],
|
||||||
[2.6.6],
|
[2.6.7],
|
||||||
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
||||||
[harfbuzz],
|
[harfbuzz],
|
||||||
[http://harfbuzz.org/])
|
[http://harfbuzz.org/])
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
project('harfbuzz', 'c', 'cpp',
|
project('harfbuzz', 'c', 'cpp',
|
||||||
meson_version: '>= 0.53.0',
|
meson_version: '>= 0.53.0',
|
||||||
default_options : ['cpp_std=c++11'],
|
default_options : ['cpp_std=c++11'],
|
||||||
version: '2.6.6')
|
version: '2.6.7')
|
||||||
|
|
||||||
warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now')
|
warning('Meson is not our main build system yet, don\'t use it for packaging HarfBuzz for *nix distros for now')
|
||||||
|
|
||||||
|
|
|
@ -368,7 +368,7 @@ typedef enum
|
||||||
/*12.0*/HB_SCRIPT_WANCHO = HB_TAG ('W','c','h','o'),
|
/*12.0*/HB_SCRIPT_WANCHO = HB_TAG ('W','c','h','o'),
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since REPLACEME
|
* Since 2.6.7
|
||||||
*/
|
*/
|
||||||
/*13.0*/HB_SCRIPT_CHORASMIAN = HB_TAG ('C','h','r','s'),
|
/*13.0*/HB_SCRIPT_CHORASMIAN = HB_TAG ('C','h','r','s'),
|
||||||
/*13.0*/HB_SCRIPT_DIVES_AKURU = HB_TAG ('D','i','a','k'),
|
/*13.0*/HB_SCRIPT_DIVES_AKURU = HB_TAG ('D','i','a','k'),
|
||||||
|
|
|
@ -38,9 +38,9 @@ HB_BEGIN_DECLS
|
||||||
|
|
||||||
#define HB_VERSION_MAJOR 2
|
#define HB_VERSION_MAJOR 2
|
||||||
#define HB_VERSION_MINOR 6
|
#define HB_VERSION_MINOR 6
|
||||||
#define HB_VERSION_MICRO 6
|
#define HB_VERSION_MICRO 7
|
||||||
|
|
||||||
#define HB_VERSION_STRING "2.6.6"
|
#define HB_VERSION_STRING "2.6.7"
|
||||||
|
|
||||||
#define HB_VERSION_ATLEAST(major,minor,micro) \
|
#define HB_VERSION_ATLEAST(major,minor,micro) \
|
||||||
((major)*10000+(minor)*100+(micro) <= \
|
((major)*10000+(minor)*100+(micro) <= \
|
||||||
|
|
Loading…
Reference in New Issue