mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
7.3.0
This commit is contained in:
parent
4bbcff2c5c
commit
4584bcdc32
6 changed files with 27 additions and 5 deletions
21
NEWS
21
NEWS
|
@ -1,3 +1,24 @@
|
|||
Overview of changes leading to 7.3.0
|
||||
Tuesday, May 9, 2023
|
||||
====================================
|
||||
- Speedup applying glyph variation in VarComposites fonts (over 40% speedup).
|
||||
(Behdad Esfahbod)
|
||||
- Speedup instancing some fonts (over 20% speedup in instancing RobotoFlex).
|
||||
(Behdad Esfahbod)
|
||||
- Speedup shaping some fonts (over 30% speedup in shaping Roboto).
|
||||
(Behdad Esfahbod)
|
||||
- Support subsetting VarComposites and beyond-64k fonts. (Behdad Esfahbod)
|
||||
- New configuration macro HB_MINIMIZE_MEMORY_USAGE to favor optimizing memory
|
||||
usage over speed. (Behdad Esfahbod)
|
||||
- Supporting setting the mapping between old and new glyph indices during
|
||||
subsetting. (Garret Rieger)
|
||||
- Various fixes and improvements.
|
||||
(Behdad Esfahbod, Denis Rochette, Garret Rieger, Han Seung Min, Qunxin Liu)
|
||||
|
||||
- New API:
|
||||
+hb_subset_input_old_to_new_glyph_mapping()
|
||||
|
||||
|
||||
Overview of changes leading to 7.2.0
|
||||
Thursday, April 27, 2023
|
||||
====================================
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.64])
|
||||
AC_INIT([HarfBuzz],
|
||||
[7.2.0],
|
||||
[7.3.0],
|
||||
[https://github.com/harfbuzz/harfbuzz/issues/new],
|
||||
[harfbuzz],
|
||||
[http://harfbuzz.org/])
|
||||
|
|
|
@ -120,6 +120,7 @@
|
|||
<index id="api-index-full"><title>API Index</title><xi:include href="xml/api-index-full.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="deprecated-api-index"><title>Index of deprecated API</title><xi:include href="xml/api-index-deprecated.xml"><xi:fallback /></xi:include></index>
|
||||
|
||||
<index id="api-index-7-3-0"><title>Index of new symbols in 7.3.0</title><xi:include href="xml/api-index-7.3.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-7-1-0"><title>Index of new symbols in 7.1.0</title><xi:include href="xml/api-index-7.1.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-7-0-0"><title>Index of new symbols in 7.0.0</title><xi:include href="xml/api-index-7.0.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-6-0-0"><title>Index of new symbols in 6.0.0</title><xi:include href="xml/api-index-6.0.0.xml"><xi:fallback /></xi:include></index>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
project('harfbuzz', 'c', 'cpp',
|
||||
meson_version: '>= 0.55.0',
|
||||
version: '7.2.0',
|
||||
version: '7.3.0',
|
||||
default_options: [
|
||||
'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway
|
||||
'cpp_rtti=false', # Just to support msvc, we are passing -fno-rtti also anyway
|
||||
|
|
|
@ -543,7 +543,7 @@ hb_subset_preprocess (hb_face_t *source)
|
|||
*
|
||||
* Return value: (transfer none): pointer to the #hb_map_t of the custom glyphs ID map.
|
||||
*
|
||||
* XSince: REPLACEME
|
||||
* Since: 7.3.0
|
||||
**/
|
||||
HB_EXTERN hb_map_t*
|
||||
hb_subset_input_old_to_new_glyph_mapping (hb_subset_input_t *input)
|
||||
|
|
|
@ -47,7 +47,7 @@ HB_BEGIN_DECLS
|
|||
*
|
||||
* The minor component of the library version available at compile-time.
|
||||
*/
|
||||
#define HB_VERSION_MINOR 2
|
||||
#define HB_VERSION_MINOR 3
|
||||
/**
|
||||
* HB_VERSION_MICRO:
|
||||
*
|
||||
|
@ -60,7 +60,7 @@ HB_BEGIN_DECLS
|
|||
*
|
||||
* A string literal containing the library version available at compile-time.
|
||||
*/
|
||||
#define HB_VERSION_STRING "7.2.0"
|
||||
#define HB_VERSION_STRING "7.3.0"
|
||||
|
||||
/**
|
||||
* HB_VERSION_ATLEAST:
|
||||
|
|
Loading…
Add table
Reference in a new issue