2.6.8
This commit is contained in:
parent
8c84fee2e5
commit
e4203c1469
13
NEWS
13
NEWS
|
@ -1,3 +1,16 @@
|
||||||
|
Overview of changes leading to 2.6.8
|
||||||
|
Monday, June 22, 2020
|
||||||
|
====================================
|
||||||
|
- New API to fetch glyph alternates from GSUB table.
|
||||||
|
- hb-coretext build fix for macOS < 10.10.
|
||||||
|
- Meson build fixes, cmake port removal is postponed but please prepare for
|
||||||
|
it and give us feedback.
|
||||||
|
Autotools is still our main build system however please consider
|
||||||
|
experimenting with meson also for packaging the library.
|
||||||
|
- New API:
|
||||||
|
+hb_ot_layout_lookup_get_glyph_alternates()
|
||||||
|
|
||||||
|
|
||||||
Overview of changes leading to 2.6.7
|
Overview of changes leading to 2.6.7
|
||||||
Wednesday, June 3, 2020
|
Wednesday, June 3, 2020
|
||||||
====================================
|
====================================
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
AC_INIT([HarfBuzz],
|
AC_INIT([HarfBuzz],
|
||||||
[2.6.7],
|
[2.6.8],
|
||||||
[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.7')
|
version: '2.6.8')
|
||||||
|
|
||||||
warning('Meson is not our main build system for building *nix packages yet we encourage packagers to test it and give us feedback about it.')
|
warning('Meson is not our main build system for building *nix packages yet we encourage packagers to test it and give us feedback about it.')
|
||||||
|
|
||||||
|
|
|
@ -1989,7 +1989,7 @@ struct hb_get_glyph_alternates_dispatch_t :
|
||||||
*
|
*
|
||||||
* Return value: total number of alternates found in the specific lookup index for the given glyph id.
|
* Return value: total number of alternates found in the specific lookup index for the given glyph id.
|
||||||
*
|
*
|
||||||
* Since: REPLACEME
|
* Since: 2.6.8
|
||||||
**/
|
**/
|
||||||
HB_EXTERN unsigned
|
HB_EXTERN unsigned
|
||||||
hb_ot_layout_lookup_get_glyph_alternates (hb_face_t *face,
|
hb_ot_layout_lookup_get_glyph_alternates (hb_face_t *face,
|
||||||
|
|
|
@ -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 7
|
#define HB_VERSION_MICRO 8
|
||||||
|
|
||||||
#define HB_VERSION_STRING "2.6.7"
|
#define HB_VERSION_STRING "2.6.8"
|
||||||
|
|
||||||
#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