@img/sharp-libvips-dev 0.0.3 → 1.0.0
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.
|
@@ -40,7 +40,7 @@ HB_BEGIN_DECLS
|
|
|
40
40
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_INVALID: Initial, unset feature type
|
|
41
41
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_ALL_TYPOGRAPHIC: [All Typographic Features](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type0)
|
|
42
42
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES: [Ligatures](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type1)
|
|
43
|
-
* @
|
|
43
|
+
* @HB_AAT_LAYOUT_FEATURE_TYPE_CURSIVE_CONNECTION: [Cursive Connection](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type2)
|
|
44
44
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_LETTER_CASE: [Letter Case](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type3)
|
|
45
45
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_VERTICAL_SUBSTITUTION: [Vertical Substitution](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type4)
|
|
46
46
|
* @HB_AAT_LAYOUT_FEATURE_TYPE_LINGUISTIC_REARRANGEMENT: [Linguistic Rearrangement](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM09/AppendixF.html#Type5)
|
|
@@ -88,7 +88,7 @@ typedef enum
|
|
|
88
88
|
|
|
89
89
|
HB_AAT_LAYOUT_FEATURE_TYPE_ALL_TYPOGRAPHIC = 0,
|
|
90
90
|
HB_AAT_LAYOUT_FEATURE_TYPE_LIGATURES = 1,
|
|
91
|
-
|
|
91
|
+
HB_AAT_LAYOUT_FEATURE_TYPE_CURSIVE_CONNECTION = 2,
|
|
92
92
|
HB_AAT_LAYOUT_FEATURE_TYPE_LETTER_CASE = 3,
|
|
93
93
|
HB_AAT_LAYOUT_FEATURE_TYPE_VERTICAL_SUBSTITUTION = 4,
|
|
94
94
|
HB_AAT_LAYOUT_FEATURE_TYPE_LINGUISTIC_REARRANGEMENT = 5,
|
|
@@ -56,7 +56,7 @@ HB_BEGIN_DECLS
|
|
|
56
56
|
/**
|
|
57
57
|
* HB_SCRIPT_CANADIAN_ABORIGINAL:
|
|
58
58
|
*
|
|
59
|
-
* Use #HB_SCRIPT_CANADIAN_SYLLABICS instead
|
|
59
|
+
* Use #HB_SCRIPT_CANADIAN_SYLLABICS instead.
|
|
60
60
|
*
|
|
61
61
|
* Deprecated: 0.9.20
|
|
62
62
|
*/
|
|
@@ -301,6 +301,15 @@ hb_font_get_glyph_shape (hb_font_t *font,
|
|
|
301
301
|
hb_draw_funcs_t *dfuncs, void *draw_data);
|
|
302
302
|
|
|
303
303
|
|
|
304
|
+
/**
|
|
305
|
+
* HB_AAT_LAYOUT_FEATURE_TYPE_CURISVE_CONNECTION:
|
|
306
|
+
*
|
|
307
|
+
* Use #HB_AAT_LAYOUT_FEATURE_TYPE_CURSIVE_CONNECTION instead.
|
|
308
|
+
*
|
|
309
|
+
* Deprecated: 8.3.0
|
|
310
|
+
*/
|
|
311
|
+
#define HB_AAT_LAYOUT_FEATURE_TYPE_CURISVE_CONNECTION HB_AAT_LAYOUT_FEATURE_TYPE_CURSIVE_CONNECTION
|
|
312
|
+
|
|
304
313
|
#endif
|
|
305
314
|
|
|
306
315
|
|
|
@@ -73,6 +73,9 @@ typedef struct hb_subset_plan_t hb_subset_plan_t;
|
|
|
73
73
|
* OS/2 will not be recalculated.
|
|
74
74
|
* @HB_SUBSET_FLAGS_NO_LAYOUT_CLOSURE: If set don't perform glyph closure on layout
|
|
75
75
|
* substitution rules (GSUB). Since: 7.2.0.
|
|
76
|
+
* @HB_SUBSET_FLAGS_IFTB_REQUIREMENTS: If set enforce requirements on the output subset
|
|
77
|
+
* to allow it to be used with incremental font transfer IFTB patches. Primarily,
|
|
78
|
+
* this forces all outline data to use long (32 bit) offsets. Since: EXPERIMENTAL
|
|
76
79
|
*
|
|
77
80
|
* List of boolean properties that can be configured on the subset input.
|
|
78
81
|
*
|
|
@@ -90,6 +93,9 @@ typedef enum { /*< flags >*/
|
|
|
90
93
|
HB_SUBSET_FLAGS_GLYPH_NAMES = 0x00000080u,
|
|
91
94
|
HB_SUBSET_FLAGS_NO_PRUNE_UNICODE_RANGES = 0x00000100u,
|
|
92
95
|
HB_SUBSET_FLAGS_NO_LAYOUT_CLOSURE = 0x00000200u,
|
|
96
|
+
#ifdef HB_EXPERIMENTAL_API
|
|
97
|
+
HB_SUBSET_FLAGS_IFTB_REQUIREMENTS = 0x00000400u,
|
|
98
|
+
#endif
|
|
93
99
|
} hb_subset_flags_t;
|
|
94
100
|
|
|
95
101
|
/**
|
|
@@ -47,20 +47,20 @@ HB_BEGIN_DECLS
|
|
|
47
47
|
*
|
|
48
48
|
* The minor component of the library version available at compile-time.
|
|
49
49
|
*/
|
|
50
|
-
#define HB_VERSION_MINOR
|
|
50
|
+
#define HB_VERSION_MINOR 3
|
|
51
51
|
/**
|
|
52
52
|
* HB_VERSION_MICRO:
|
|
53
53
|
*
|
|
54
54
|
* The micro component of the library version available at compile-time.
|
|
55
55
|
*/
|
|
56
|
-
#define HB_VERSION_MICRO
|
|
56
|
+
#define HB_VERSION_MICRO 0
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* HB_VERSION_STRING:
|
|
60
60
|
*
|
|
61
61
|
* A string literal containing the library version available at compile-time.
|
|
62
62
|
*/
|
|
63
|
-
#define HB_VERSION_STRING "8.
|
|
63
|
+
#define HB_VERSION_STRING "8.3.0"
|
|
64
64
|
|
|
65
65
|
/**
|
|
66
66
|
* HB_VERSION_ATLEAST:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@img/sharp-libvips-dev",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source",
|
|
5
5
|
"author": "Lovell Fuller <npm@lovell.info>",
|
|
6
6
|
"homepage": "https://sharp.pixelplumbing.com",
|
package/versions.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"fribidi": "1.0.13",
|
|
12
12
|
"gdkpixbuf": "2.42.10",
|
|
13
13
|
"glib": "2.78.1",
|
|
14
|
-
"harfbuzz": "8.
|
|
14
|
+
"harfbuzz": "8.3.0",
|
|
15
15
|
"heif": "1.17.3",
|
|
16
16
|
"highway": "1.0.7",
|
|
17
17
|
"imagequant": "2.4.1",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"rsvg": "2.57.0",
|
|
25
25
|
"spng": "0.7.4",
|
|
26
26
|
"tiff": "4.6.0",
|
|
27
|
-
"vips": "8.15.0
|
|
27
|
+
"vips": "8.15.0",
|
|
28
28
|
"webp": "1.3.2",
|
|
29
29
|
"xml": "2.11.5",
|
|
30
30
|
"zlib-ng": "2.1.4"
|