harfbuzzjs 0.3.4 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build-subset.sh CHANGED
@@ -7,7 +7,6 @@ em++ \
7
7
  -fno-rtti \
8
8
  -fno-threadsafe-statics \
9
9
  -fvisibility-inlines-hidden \
10
- -flto \
11
10
  -Oz \
12
11
  -I. \
13
12
  -DHB_TINY \
package/hb-subset.symbols CHANGED
@@ -22,6 +22,7 @@ _hb_subset_input_pin_axis_location
22
22
  _hb_subset_input_pin_axis_to_default
23
23
  _hb_subset_input_reference
24
24
  _hb_subset_input_set
25
+ _hb_subset_input_set_axis_range
25
26
  _hb_subset_input_set_flags
26
27
  _hb_subset_input_set_user_data
27
28
  _hb_subset_input_unicode_set
package/hb-subset.wasm CHANGED
Binary file
package/hb.wasm CHANGED
Binary file
package/hbjs.cc CHANGED
@@ -170,7 +170,7 @@ static hb_bool_t do_trace (hb_buffer_t *buffer,
170
170
  if (user_data->stop_phase != HB_SHAPE_DONT_STOP) {
171
171
  // Do we need to start stopping?
172
172
  char buf[12];
173
- snprintf (buf, 12, "%d ", user_data->stop_at);
173
+ snprintf (buf, 12, "%u ", user_data->stop_at);
174
174
  if ((user_data->current_phase == user_data->stop_phase) &&
175
175
  (strncmp(message, "end lookup ", 11) == 0) &&
176
176
  (strncmp(message + 11, buf, strlen(buf)) == 0)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harfbuzzjs",
3
- "version": "0.3.4",
3
+ "version": "0.3.6",
4
4
  "description": "Minimal version of HarfBuzz for JavaScript use",
5
5
  "main": "index.js",
6
6
  "scripts": {