2.8.1
This commit is contained in:
parent
d3e84413fd
commit
b37f03f16b
9
NEWS
9
NEWS
@ -1,3 +1,12 @@
|
|||||||
|
Overview of changes leading to 2.8.1
|
||||||
|
Tuesday, May 4, 2021
|
||||||
|
====================================
|
||||||
|
- Subsetter now fully supports GSUB/GPOS/GDEF tables (including variations); as
|
||||||
|
such, layout tables are retained by subsetter by default. (Garret Rieger, Qunxin Liu)
|
||||||
|
- Build scripts no longer check for FontConfig as HarfBuzz does not use it.
|
||||||
|
- hb-view supports iTerm2 and kitty inline image protocols (Khaled Hosny),
|
||||||
|
it can also use Chafa for terminal graphics if available (Hans Petter Jansson).
|
||||||
|
|
||||||
Overview of changes leading to 2.8.0
|
Overview of changes leading to 2.8.0
|
||||||
Tuesday, March 16, 2021
|
Tuesday, March 16, 2021
|
||||||
====================================
|
====================================
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ([2.64])
|
AC_PREREQ([2.64])
|
||||||
AC_INIT([HarfBuzz],
|
AC_INIT([HarfBuzz],
|
||||||
[2.8.0],
|
[2.8.1],
|
||||||
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
||||||
[harfbuzz],
|
[harfbuzz],
|
||||||
[http://harfbuzz.org/])
|
[http://harfbuzz.org/])
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
project('harfbuzz', 'c', 'cpp',
|
project('harfbuzz', 'c', 'cpp',
|
||||||
meson_version: '>= 0.47.0',
|
meson_version: '>= 0.47.0',
|
||||||
version: '2.8.0',
|
version: '2.8.1',
|
||||||
default_options: [
|
default_options: [
|
||||||
'cpp_eh=none', # Just to support msvc, we are passing -fno-rtti also anyway
|
'cpp_eh=none', # Just to support msvc, we are passing -fno-rtti also anyway
|
||||||
'cpp_rtti=false', # Just to support msvc, we are passing -fno-exceptions also anyway
|
'cpp_rtti=false', # Just to support msvc, we are passing -fno-exceptions also anyway
|
||||||
|
@ -53,14 +53,14 @@ HB_BEGIN_DECLS
|
|||||||
*
|
*
|
||||||
* The micro component of the library version available at compile-time.
|
* The micro component of the library version available at compile-time.
|
||||||
*/
|
*/
|
||||||
#define HB_VERSION_MICRO 0
|
#define HB_VERSION_MICRO 1
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HB_VERSION_STRING:
|
* HB_VERSION_STRING:
|
||||||
*
|
*
|
||||||
* A string literal containing the library version available at compile-time.
|
* A string literal containing the library version available at compile-time.
|
||||||
*/
|
*/
|
||||||
#define HB_VERSION_STRING "2.8.0"
|
#define HB_VERSION_STRING "2.8.1"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HB_VERSION_ATLEAST:
|
* HB_VERSION_ATLEAST:
|
||||||
|
Loading…
Reference in New Issue
Block a user