fonttools 4.56.0__cp312-cp312-musllinux_1_2_aarch64.whl → 4.57.0__cp312-cp312-musllinux_1_2_aarch64.whl

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.

Potentially problematic release.


This version of fonttools might be problematic. Click here for more details.

Files changed (40) hide show
  1. fontTools/__init__.py +1 -1
  2. fontTools/config/__init__.py +15 -0
  3. fontTools/cu2qu/cu2qu.c +6 -6
  4. fontTools/cu2qu/cu2qu.cpython-312-aarch64-linux-musl.so +0 -0
  5. fontTools/feaLib/ast.py +8 -3
  6. fontTools/feaLib/builder.py +32 -9
  7. fontTools/feaLib/lexer.c +5 -5
  8. fontTools/feaLib/lexer.cpython-312-aarch64-linux-musl.so +0 -0
  9. fontTools/feaLib/parser.py +58 -0
  10. fontTools/misc/bezierTools.c +6 -6
  11. fontTools/misc/bezierTools.cpython-312-aarch64-linux-musl.so +0 -0
  12. fontTools/misc/testTools.py +2 -1
  13. fontTools/otlLib/optimize/gpos.py +7 -1
  14. fontTools/pens/momentsPen.c +5 -5
  15. fontTools/pens/momentsPen.cpython-312-aarch64-linux-musl.so +0 -0
  16. fontTools/qu2cu/qu2cu.c +6 -6
  17. fontTools/qu2cu/qu2cu.cpython-312-aarch64-linux-musl.so +0 -0
  18. fontTools/ttLib/__init__.py +4 -0
  19. fontTools/ttLib/__main__.py +47 -8
  20. fontTools/ttLib/tables/D__e_b_g.py +20 -2
  21. fontTools/ttLib/tables/_c_m_a_p.py +19 -6
  22. fontTools/ttLib/tables/_g_l_y_f.py +9 -4
  23. fontTools/ttLib/tables/_g_v_a_r.py +4 -2
  24. fontTools/ttLib/tables/otConverters.py +5 -2
  25. fontTools/ttLib/tables/otTables.py +5 -1
  26. fontTools/ttLib/ttFont.py +3 -5
  27. fontTools/ttLib/ttGlyphSet.py +0 -10
  28. fontTools/ttx.py +13 -1
  29. fontTools/varLib/__init__.py +92 -89
  30. fontTools/varLib/hvar.py +113 -0
  31. fontTools/varLib/iup.c +6 -6
  32. fontTools/varLib/iup.cpython-312-aarch64-linux-musl.so +0 -0
  33. fontTools/varLib/varStore.py +1 -1
  34. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info}/METADATA +16 -2
  35. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info}/RECORD +270 -269
  36. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info}/WHEEL +1 -1
  37. {fonttools-4.56.0.data → fonttools-4.57.0.data}/data/share/man/man1/ttx.1 +0 -0
  38. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info}/entry_points.txt +0 -0
  39. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info/licenses}/LICENSE +0 -0
  40. {fonttools-4.56.0.dist-info → fonttools-4.57.0.dist-info}/top_level.txt +0 -0
@@ -41,7 +41,7 @@ class OnlineVarStoreBuilder(object):
41
41
  def setSupports(self, supports):
42
42
  self._model = None
43
43
  self._supports = list(supports)
44
- if not self._supports[0]:
44
+ if self._supports and not self._supports[0]:
45
45
  del self._supports[0] # Drop base master support
46
46
  self._cache = None
47
47
  self._data = None
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: fonttools
3
- Version: 4.56.0
3
+ Version: 4.57.0
4
4
  Summary: Tools to manipulate font files
5
5
  Home-page: http://github.com/fonttools/fonttools
6
6
  Author: Just van Rossum
@@ -80,6 +80,7 @@ Dynamic: description
80
80
  Dynamic: description-content-type
81
81
  Dynamic: home-page
82
82
  Dynamic: license
83
+ Dynamic: license-file
83
84
  Dynamic: maintainer
84
85
  Dynamic: maintainer-email
85
86
  Dynamic: platform
@@ -391,6 +392,19 @@ Have fun!
391
392
  Changelog
392
393
  ~~~~~~~~~
393
394
 
395
+ 4.57.0 (released 2025-04-03)
396
+ ----------------------------
397
+
398
+ - [ttLib.__main__] Add `--no-recalc-timestamp` flag (#3771)
399
+ - [ttLib.__main__] Add `-b` (recalcBBoxes=False) flag (#3772)
400
+ - [cmap] Speed up glyphOrder loading from cmap (#3774)
401
+ - [ttLib.__main__] Improvements around the `-t` flag (#3776)
402
+ - [Debg] Fix parsing from XML; add roundtrip tests (#3781)
403
+ - [fealib] Support \*Base.MinMax tables (#3783, #3786)
404
+ - [config] Add OPTIMIZE_FONT_SPEED (#3784)
405
+ - [varLib.hvar] New module to add HVAR table to the font (#3780)
406
+ - [otlLib.optimize] Fix crash when the provided TTF does not contain a `GPOS` (#3794)
407
+
394
408
  4.56.0 (released 2025-02-07)
395
409
  ----------------------------
396
410