mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
8.4.0
This commit is contained in:
parent
5b34058d35
commit
63973005bc
6 changed files with 21 additions and 7 deletions
13
NEWS
13
NEWS
|
@ -1,3 +1,16 @@
|
|||
Overview of changes leading to 8.4.0
|
||||
Saturday, March 29, 2024
|
||||
====================================
|
||||
- Add /bigobj to MSVC compiler flags in meson build, to fix building hb-subset.cc
|
||||
- Specify minimum versions of various dependencies in meson and autotools build.
|
||||
- When subsetting, place variation store at the end of “GDEF” table to fix
|
||||
shaping issues with some versions of Adobe InDesign.
|
||||
- Various build fixes.
|
||||
|
||||
- New API:
|
||||
+hb_buffer_set_random_state()
|
||||
+hb_buffer_get_random_state()
|
||||
|
||||
Overview of changes leading to 8.3.1
|
||||
Saturday, March 16, 2024
|
||||
====================================
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AC_PREREQ([2.64])
|
||||
AC_INIT([HarfBuzz],
|
||||
[8.3.1],
|
||||
[8.4.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-8-4-0"><title>Index of new symbols in 8.4.0</title><xi:include href="xml/api-index-8.4.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-8-3-1"><title>Index of new symbols in 8.3.1</title><xi:include href="xml/api-index-8.3.1.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-8-2-0"><title>Index of new symbols in 8.2.0</title><xi:include href="xml/api-index-8.2.0.xml"><xi:fallback /></xi:include></index>
|
||||
<index id="api-index-8-1-0"><title>Index of new symbols in 8.1.0</title><xi:include href="xml/api-index-8.1.0.xml"><xi:fallback /></xi:include></index>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
project('harfbuzz', 'c', 'cpp',
|
||||
meson_version: '>= 0.55.0',
|
||||
version: '8.3.1',
|
||||
version: '8.4.0',
|
||||
default_options: [
|
||||
'cpp_eh=none', # Just to support msvc, we are passing -fno-exceptions also anyway
|
||||
# 'cpp_rtti=false', # Do NOT enable, wraps inherit it and ICU needs RTTI
|
||||
|
|
|
@ -1375,7 +1375,7 @@ hb_buffer_get_not_found_glyph (const hb_buffer_t *buffer)
|
|||
* Defaults to 1 and when buffer contents are cleared.
|
||||
* A value of 0 disables randomness during shaping.
|
||||
*
|
||||
* XSince: REPLACEME
|
||||
* Since: 8.4.0
|
||||
**/
|
||||
void
|
||||
hb_buffer_set_random_state (hb_buffer_t *buffer,
|
||||
|
@ -1396,7 +1396,7 @@ hb_buffer_set_random_state (hb_buffer_t *buffer,
|
|||
* Return value:
|
||||
* The @buffer random state
|
||||
*
|
||||
* XSince: REPLACEME
|
||||
* Since: 8.4.0
|
||||
**/
|
||||
unsigned
|
||||
hb_buffer_get_random_state (const hb_buffer_t *buffer)
|
||||
|
|
|
@ -47,20 +47,20 @@ HB_BEGIN_DECLS
|
|||
*
|
||||
* The minor component of the library version available at compile-time.
|
||||
*/
|
||||
#define HB_VERSION_MINOR 3
|
||||
#define HB_VERSION_MINOR 4
|
||||
/**
|
||||
* HB_VERSION_MICRO:
|
||||
*
|
||||
* The micro component of the library version available at compile-time.
|
||||
*/
|
||||
#define HB_VERSION_MICRO 1
|
||||
#define HB_VERSION_MICRO 0
|
||||
|
||||
/**
|
||||
* HB_VERSION_STRING:
|
||||
*
|
||||
* A string literal containing the library version available at compile-time.
|
||||
*/
|
||||
#define HB_VERSION_STRING "8.3.1"
|
||||
#define HB_VERSION_STRING "8.4.0"
|
||||
|
||||
/**
|
||||
* HB_VERSION_ATLEAST:
|
||||
|
|
Loading…
Add table
Reference in a new issue