Skip to content
This repository has been archived by the owner on Sep 9, 2019. It is now read-only.

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
khaledhosny committed Aug 10, 2019
1 parent 6060e13 commit dc14956
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions source/texk/web2c/harftexdir/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
==============================================================
HarfTeX 0.4.0 2019-07-18
==============================================================

- Fix abug in reading CFF table in soe fonts causing the engine to abort.
- Update luaharfbuzz to fix a logic error when populating Lua dictionaries from
C arrays (#11).
- Remove the newly introduced get_char_tounicode callback, its functionality can
be implemented on top if existing callbacks.
- Do not require setting font index for TTC fonts, for compatibility with
LuaTeX, though setting the index is still recommended.
- Fix handling fonts with sbix table (like Apple Color Emoji).



==============================================================
HarfTeX 0.3.1 2019-07-18
==============================================================
Expand Down
6 changes: 3 additions & 3 deletions source/texk/web2c/harftexdir/luatex.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ int luatex_revision = '1';
const char *luatex_version_string = "1.10.1";
const char *engine_name = my_name;

int harftex_version = 3;
int harftex_revision = '1';
const char *harftex_version_string = "0.3.1";
int harftex_version = 4;
int harftex_revision = '0';
const char *harftex_version_string = "0.4.0";

#include <kpathsea/c-ctype.h>
#include <kpathsea/line.h>
Expand Down

0 comments on commit dc14956

Please sign in to comment.