2.6.5
This commit is contained in:
parent
a8455292f4
commit
f9bc373381
13
NEWS
13
NEWS
|
@ -1,3 +1,16 @@
|
||||||
|
Overview of changes leading to 2.6.5
|
||||||
|
Friday, April 17, 2020
|
||||||
|
====================================
|
||||||
|
- Add experimental meson build system. Autotools is still the primary
|
||||||
|
and supported build system.
|
||||||
|
- AAT is now always preferred for horizontal scripts when both AAT and OT
|
||||||
|
layout tables exist at the same time.
|
||||||
|
- Subsetter improvements.
|
||||||
|
- New API:
|
||||||
|
+hb_ft_font_lock_face()
|
||||||
|
+hb_ft_font_unlock_face()
|
||||||
|
|
||||||
|
|
||||||
Overview of changes leading to 2.6.4
|
Overview of changes leading to 2.6.4
|
||||||
Monday, October 29, 2019
|
Monday, October 29, 2019
|
||||||
====================================
|
====================================
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
AC_INIT([HarfBuzz],
|
AC_INIT([HarfBuzz],
|
||||||
[2.6.4],
|
[2.6.5],
|
||||||
[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.47.0',
|
meson_version: '>= 0.47.0',
|
||||||
default_options : ['cpp_std=c++11'],
|
default_options : ['cpp_std=c++11'],
|
||||||
version: '2.6.4')
|
version: '2.6.5')
|
||||||
|
|
||||||
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')
|
||||||
|
|
||||||
|
|
|
@ -195,7 +195,7 @@ hb_ft_font_get_face (hb_font_t *font)
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Return value:
|
* Return value:
|
||||||
* Since: REPLACEME
|
* Since: 2.6.5
|
||||||
**/
|
**/
|
||||||
FT_Face
|
FT_Face
|
||||||
hb_ft_font_lock_face (hb_font_t *font)
|
hb_ft_font_lock_face (hb_font_t *font)
|
||||||
|
@ -217,7 +217,7 @@ hb_ft_font_lock_face (hb_font_t *font)
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Return value:
|
* Return value:
|
||||||
* Since: REPLACEME
|
* Since: 2.6.5
|
||||||
**/
|
**/
|
||||||
void
|
void
|
||||||
hb_ft_font_unlock_face (hb_font_t *font)
|
hb_ft_font_unlock_face (hb_font_t *font)
|
||||||
|
|
|
@ -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 4
|
#define HB_VERSION_MICRO 5
|
||||||
|
|
||||||
#define HB_VERSION_STRING "2.6.4"
|
#define HB_VERSION_STRING "2.6.5"
|
||||||
|
|
||||||
#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