@img/sharp-libvips-dev 1.2.0-rc.3 → 1.2.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.
Files changed (38) hide show
  1. package/include/fontconfig/fontconfig.h +12 -2
  2. package/include/glib-2.0/girepository/girepository.h +3 -0
  3. package/include/glib-2.0/glib/gmarkup.h +4 -0
  4. package/include/libheif/heif.h +16 -2603
  5. package/include/libheif/heif_aux_images.h +182 -0
  6. package/include/libheif/heif_brands.h +373 -0
  7. package/include/libheif/heif_color.h +357 -0
  8. package/include/libheif/heif_context.h +329 -0
  9. package/include/libheif/heif_cxx.h +6 -6
  10. package/include/libheif/heif_decoding.h +162 -0
  11. package/include/libheif/heif_encoding.h +391 -0
  12. package/include/libheif/heif_entity_groups.h +60 -0
  13. package/include/libheif/heif_error.h +302 -0
  14. package/include/libheif/heif_image.h +352 -0
  15. package/include/libheif/heif_image_handle.h +120 -0
  16. package/include/libheif/heif_items.h +45 -45
  17. package/include/libheif/heif_library.h +216 -0
  18. package/include/libheif/heif_metadata.h +133 -0
  19. package/include/libheif/heif_plugin.h +53 -41
  20. package/include/libheif/heif_properties.h +73 -36
  21. package/include/libheif/heif_regions.h +95 -95
  22. package/include/libheif/heif_security.h +102 -0
  23. package/include/libheif/heif_sequences.h +577 -0
  24. package/include/libheif/heif_tai_timestamps.h +202 -0
  25. package/include/libheif/heif_tiling.h +137 -0
  26. package/include/libheif/heif_uncompressed.h +109 -0
  27. package/include/libheif/heif_version.h +2 -2
  28. package/include/libpng16/png.h +7 -7
  29. package/include/libpng16/pngconf.h +1 -1
  30. package/include/libpng16/pnglibconf.h +1 -1
  31. package/include/pango-1.0/pango/pango-attributes.h +1 -1
  32. package/include/pango-1.0/pango/pango-features.h +2 -2
  33. package/include/png.h +7 -7
  34. package/include/pngconf.h +1 -1
  35. package/include/pnglibconf.h +1 -1
  36. package/include/vips/version.h +4 -4
  37. package/package.json +1 -1
  38. package/versions.json +5 -5
@@ -54,8 +54,8 @@ typedef int FcBool;
54
54
  */
55
55
 
56
56
  #define FC_MAJOR 2
57
- #define FC_MINOR 16
58
- #define FC_REVISION 2
57
+ #define FC_MINOR 17
58
+ #define FC_REVISION 1
59
59
 
60
60
  #define FC_VERSION ((FC_MAJOR * 10000) + (FC_MINOR * 100) + (FC_REVISION))
61
61
 
@@ -485,6 +485,9 @@ FcConfigAppFontAddDir (FcConfig *config,
485
485
  FcPublic void
486
486
  FcConfigAppFontClear (FcConfig *config);
487
487
 
488
+ FcPublic void
489
+ FcConfigPreferAppFont (FcConfig *config, FcBool flag);
490
+
488
491
  FcPublic FcBool
489
492
  FcConfigSubstituteWithPat (FcConfig *config,
490
493
  FcPattern *p,
@@ -605,9 +608,16 @@ FcPublic void
605
608
  FcFontSetPrint (const FcFontSet *s);
606
609
 
607
610
  /* fcdefault.c */
611
+ FcPublic FcStrSet *
612
+ FcConfigGetDefaultLangs (FcConfig *config);
613
+
608
614
  FcPublic FcStrSet *
609
615
  FcGetDefaultLangs (void);
610
616
 
617
+ FcPublic void
618
+ FcConfigSetDefaultSubstitute (FcConfig *config,
619
+ FcPattern *pattern);
620
+
611
621
  FcPublic void
612
622
  FcDefaultSubstitute (FcPattern *pattern);
613
623
 
@@ -242,6 +242,9 @@ void gi_cclosure_marshal_generic (GClosure *closure,
242
242
  void *invocation_hint,
243
243
  void *marshal_data);
244
244
 
245
+ GI_AVAILABLE_IN_2_86
246
+ GIRepository *gi_repository_dup_default (void);
247
+
245
248
  #include <girepository/girepository-autocleanups.h>
246
249
 
247
250
  G_END_DECLS
@@ -143,6 +143,10 @@ typedef struct _GMarkupParser GMarkupParser;
143
143
  * errors are intended to be set from these callbacks. If you set an error
144
144
  * from a callback, g_markup_parse_context_parse() will report that error
145
145
  * back to its caller.
146
+ *
147
+ * Refer to the [GMarkup](../glib/markup.html) documentation to understand
148
+ * the scope and limitations of `GMarkupParser`. In particular, it is not a
149
+ * full XML parser and it must not be used to process untrusted data.
146
150
  */
147
151
  struct _GMarkupParser
148
152
  {