fonttools 4.55.4__cp313-cp313-musllinux_1_2_aarch64.whl → 4.61.1__cp313-cp313-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.
- fontTools/__init__.py +1 -1
- fontTools/annotations.py +30 -0
- fontTools/cffLib/CFF2ToCFF.py +65 -10
- fontTools/cffLib/__init__.py +61 -26
- fontTools/cffLib/specializer.py +4 -1
- fontTools/cffLib/transforms.py +11 -6
- fontTools/config/__init__.py +15 -0
- fontTools/cu2qu/cu2qu.c +6567 -5579
- fontTools/cu2qu/cu2qu.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/cu2qu/cu2qu.py +36 -4
- fontTools/cu2qu/ufo.py +14 -0
- fontTools/designspaceLib/__init__.py +8 -3
- fontTools/designspaceLib/statNames.py +14 -7
- fontTools/feaLib/ast.py +24 -15
- fontTools/feaLib/builder.py +139 -66
- fontTools/feaLib/error.py +1 -1
- fontTools/feaLib/lexer.c +7038 -7995
- fontTools/feaLib/lexer.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/feaLib/parser.py +75 -40
- fontTools/feaLib/variableScalar.py +6 -1
- fontTools/fontBuilder.py +50 -44
- fontTools/merge/__init__.py +1 -1
- fontTools/merge/cmap.py +33 -1
- fontTools/merge/tables.py +12 -1
- fontTools/misc/bezierTools.c +14913 -17013
- fontTools/misc/bezierTools.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/misc/bezierTools.py +4 -1
- fontTools/misc/configTools.py +3 -1
- fontTools/misc/enumTools.py +23 -0
- fontTools/misc/etree.py +4 -27
- fontTools/misc/filesystem/__init__.py +68 -0
- fontTools/misc/filesystem/_base.py +134 -0
- fontTools/misc/filesystem/_copy.py +45 -0
- fontTools/misc/filesystem/_errors.py +54 -0
- fontTools/misc/filesystem/_info.py +75 -0
- fontTools/misc/filesystem/_osfs.py +164 -0
- fontTools/misc/filesystem/_path.py +67 -0
- fontTools/misc/filesystem/_subfs.py +92 -0
- fontTools/misc/filesystem/_tempfs.py +34 -0
- fontTools/misc/filesystem/_tools.py +34 -0
- fontTools/misc/filesystem/_walk.py +55 -0
- fontTools/misc/filesystem/_zipfs.py +204 -0
- fontTools/misc/fixedTools.py +1 -1
- fontTools/misc/loggingTools.py +1 -1
- fontTools/misc/psCharStrings.py +17 -2
- fontTools/misc/sstruct.py +2 -6
- fontTools/misc/symfont.py +6 -8
- fontTools/misc/testTools.py +5 -1
- fontTools/misc/textTools.py +4 -2
- fontTools/misc/visitor.py +32 -16
- fontTools/misc/xmlWriter.py +44 -8
- fontTools/mtiLib/__init__.py +1 -3
- fontTools/otlLib/builder.py +402 -155
- fontTools/otlLib/optimize/gpos.py +49 -63
- fontTools/pens/filterPen.py +218 -26
- fontTools/pens/momentsPen.c +5514 -5584
- fontTools/pens/momentsPen.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/pens/pointPen.py +61 -18
- fontTools/pens/roundingPen.py +2 -2
- fontTools/pens/t2CharStringPen.py +31 -11
- fontTools/qu2cu/qu2cu.c +6581 -6168
- fontTools/qu2cu/qu2cu.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/subset/__init__.py +283 -25
- fontTools/subset/svg.py +2 -3
- fontTools/ttLib/__init__.py +4 -0
- fontTools/ttLib/__main__.py +47 -8
- fontTools/ttLib/removeOverlaps.py +7 -5
- fontTools/ttLib/reorderGlyphs.py +8 -7
- fontTools/ttLib/sfnt.py +11 -9
- fontTools/ttLib/tables/D__e_b_g.py +20 -2
- fontTools/ttLib/tables/G_V_A_R_.py +5 -0
- fontTools/ttLib/tables/S__i_l_f.py +2 -2
- fontTools/ttLib/tables/T_S_I__0.py +14 -3
- fontTools/ttLib/tables/T_S_I__1.py +2 -5
- fontTools/ttLib/tables/T_S_I__5.py +18 -7
- fontTools/ttLib/tables/__init__.py +1 -0
- fontTools/ttLib/tables/_a_v_a_r.py +12 -3
- fontTools/ttLib/tables/_c_m_a_p.py +20 -7
- fontTools/ttLib/tables/_c_v_t.py +3 -2
- fontTools/ttLib/tables/_f_p_g_m.py +3 -1
- fontTools/ttLib/tables/_g_l_y_f.py +45 -21
- fontTools/ttLib/tables/_g_v_a_r.py +67 -19
- fontTools/ttLib/tables/_h_d_m_x.py +4 -4
- fontTools/ttLib/tables/_h_m_t_x.py +7 -3
- fontTools/ttLib/tables/_l_o_c_a.py +2 -2
- fontTools/ttLib/tables/_n_a_m_e.py +11 -6
- fontTools/ttLib/tables/_p_o_s_t.py +9 -7
- fontTools/ttLib/tables/otBase.py +5 -12
- fontTools/ttLib/tables/otConverters.py +5 -2
- fontTools/ttLib/tables/otData.py +1 -1
- fontTools/ttLib/tables/otTables.py +33 -30
- fontTools/ttLib/tables/otTraverse.py +2 -1
- fontTools/ttLib/tables/sbixStrike.py +3 -3
- fontTools/ttLib/ttFont.py +666 -120
- fontTools/ttLib/ttGlyphSet.py +0 -10
- fontTools/ttLib/woff2.py +10 -13
- fontTools/ttx.py +13 -1
- fontTools/ufoLib/__init__.py +300 -202
- fontTools/ufoLib/converters.py +103 -30
- fontTools/ufoLib/errors.py +8 -0
- fontTools/ufoLib/etree.py +1 -1
- fontTools/ufoLib/filenames.py +171 -106
- fontTools/ufoLib/glifLib.py +303 -205
- fontTools/ufoLib/kerning.py +98 -48
- fontTools/ufoLib/utils.py +46 -15
- fontTools/ufoLib/validators.py +121 -99
- fontTools/unicodedata/Blocks.py +35 -20
- fontTools/unicodedata/Mirrored.py +446 -0
- fontTools/unicodedata/ScriptExtensions.py +63 -37
- fontTools/unicodedata/Scripts.py +173 -152
- fontTools/unicodedata/__init__.py +10 -2
- fontTools/varLib/__init__.py +198 -109
- fontTools/varLib/avar/__init__.py +0 -0
- fontTools/varLib/avar/__main__.py +72 -0
- fontTools/varLib/avar/build.py +79 -0
- fontTools/varLib/avar/map.py +108 -0
- fontTools/varLib/avar/plan.py +1004 -0
- fontTools/varLib/{avar.py → avar/unbuild.py} +70 -59
- fontTools/varLib/avarPlanner.py +3 -999
- fontTools/varLib/featureVars.py +21 -7
- fontTools/varLib/hvar.py +113 -0
- fontTools/varLib/instancer/__init__.py +180 -65
- fontTools/varLib/interpolatableHelpers.py +3 -0
- fontTools/varLib/iup.c +7564 -6903
- fontTools/varLib/iup.cpython-313-aarch64-linux-musl.so +0 -0
- fontTools/varLib/models.py +17 -2
- fontTools/varLib/mutator.py +11 -0
- fontTools/varLib/varStore.py +10 -38
- fontTools/voltLib/__main__.py +206 -0
- fontTools/voltLib/ast.py +4 -0
- fontTools/voltLib/parser.py +16 -8
- fontTools/voltLib/voltToFea.py +347 -166
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info}/METADATA +269 -1410
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info}/RECORD +318 -294
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info}/WHEEL +1 -1
- fonttools-4.61.1.dist-info/licenses/LICENSE.external +388 -0
- {fonttools-4.55.4.data → fonttools-4.61.1.data}/data/share/man/man1/ttx.1 +0 -0
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info}/entry_points.txt +0 -0
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info/licenses}/LICENSE +0 -0
- {fonttools-4.55.4.dist-info → fonttools-4.61.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: fonttools
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.61.1
|
|
4
4
|
Summary: Tools to manipulate font files
|
|
5
5
|
Home-page: http://github.com/fonttools/fonttools
|
|
6
6
|
Author: Just van Rossum
|
|
@@ -14,24 +14,23 @@ Classifier: Environment :: Console
|
|
|
14
14
|
Classifier: Environment :: Other Environment
|
|
15
15
|
Classifier: Intended Audience :: Developers
|
|
16
16
|
Classifier: Intended Audience :: End Users/Desktop
|
|
17
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
18
17
|
Classifier: Natural Language :: English
|
|
19
18
|
Classifier: Operating System :: OS Independent
|
|
20
19
|
Classifier: Programming Language :: Python
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
23
20
|
Classifier: Programming Language :: Python :: 3.10
|
|
24
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
25
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
26
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
25
|
Classifier: Programming Language :: Python :: 3
|
|
28
26
|
Classifier: Topic :: Text Processing :: Fonts
|
|
29
27
|
Classifier: Topic :: Multimedia :: Graphics
|
|
30
28
|
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
|
|
31
|
-
Requires-Python: >=3.
|
|
29
|
+
Requires-Python: >=3.10
|
|
30
|
+
Description-Content-Type: text/x-rst
|
|
32
31
|
License-File: LICENSE
|
|
32
|
+
License-File: LICENSE.external
|
|
33
33
|
Provides-Extra: ufo
|
|
34
|
-
Requires-Dist: fs<3,>=2.2.0; extra == "ufo"
|
|
35
34
|
Provides-Extra: lxml
|
|
36
35
|
Requires-Dist: lxml>=4.0; extra == "lxml"
|
|
37
36
|
Provides-Extra: woff
|
|
@@ -39,7 +38,7 @@ Requires-Dist: brotli>=1.0.1; platform_python_implementation == "CPython" and ex
|
|
|
39
38
|
Requires-Dist: brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "woff"
|
|
40
39
|
Requires-Dist: zopfli>=0.1.4; extra == "woff"
|
|
41
40
|
Provides-Extra: unicode
|
|
42
|
-
Requires-Dist: unicodedata2>=
|
|
41
|
+
Requires-Dist: unicodedata2>=17.0.0; python_version <= "3.14" and extra == "unicode"
|
|
43
42
|
Provides-Extra: graphite
|
|
44
43
|
Requires-Dist: lz4>=1.7.4.2; extra == "graphite"
|
|
45
44
|
Provides-Extra: interpolatable
|
|
@@ -55,14 +54,13 @@ Requires-Dist: xattr; sys_platform == "darwin" and extra == "type1"
|
|
|
55
54
|
Provides-Extra: pathops
|
|
56
55
|
Requires-Dist: skia-pathops>=0.5.0; extra == "pathops"
|
|
57
56
|
Provides-Extra: repacker
|
|
58
|
-
Requires-Dist: uharfbuzz>=0.
|
|
57
|
+
Requires-Dist: uharfbuzz>=0.45.0; extra == "repacker"
|
|
59
58
|
Provides-Extra: all
|
|
60
|
-
Requires-Dist: fs<3,>=2.2.0; extra == "all"
|
|
61
59
|
Requires-Dist: lxml>=4.0; extra == "all"
|
|
62
60
|
Requires-Dist: brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "all"
|
|
63
61
|
Requires-Dist: brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "all"
|
|
64
62
|
Requires-Dist: zopfli>=0.1.4; extra == "all"
|
|
65
|
-
Requires-Dist: unicodedata2>=
|
|
63
|
+
Requires-Dist: unicodedata2>=17.0.0; python_version <= "3.14" and extra == "all"
|
|
66
64
|
Requires-Dist: lz4>=1.7.4.2; extra == "all"
|
|
67
65
|
Requires-Dist: scipy; platform_python_implementation != "PyPy" and extra == "all"
|
|
68
66
|
Requires-Dist: munkres; platform_python_implementation == "PyPy" and extra == "all"
|
|
@@ -71,13 +69,15 @@ Requires-Dist: matplotlib; extra == "all"
|
|
|
71
69
|
Requires-Dist: sympy; extra == "all"
|
|
72
70
|
Requires-Dist: xattr; sys_platform == "darwin" and extra == "all"
|
|
73
71
|
Requires-Dist: skia-pathops>=0.5.0; extra == "all"
|
|
74
|
-
Requires-Dist: uharfbuzz>=0.
|
|
72
|
+
Requires-Dist: uharfbuzz>=0.45.0; extra == "all"
|
|
75
73
|
Dynamic: author
|
|
76
74
|
Dynamic: author-email
|
|
77
75
|
Dynamic: classifier
|
|
78
76
|
Dynamic: description
|
|
77
|
+
Dynamic: description-content-type
|
|
79
78
|
Dynamic: home-page
|
|
80
79
|
Dynamic: license
|
|
80
|
+
Dynamic: license-file
|
|
81
81
|
Dynamic: maintainer
|
|
82
82
|
Dynamic: maintainer-email
|
|
83
83
|
Dynamic: platform
|
|
@@ -95,7 +95,7 @@ What is this?
|
|
|
95
95
|
fonts to and from an XML text format, which is also called TTX. It
|
|
96
96
|
supports TrueType, OpenType, AFM and to an extent Type 1 and some
|
|
97
97
|
Mac-specific formats. The project has an `MIT open-source
|
|
98
|
-
|
|
98
|
+
license <LICENSE>`__.
|
|
99
99
|
| Among other things this means you can use it free of charge.
|
|
100
100
|
|
|
101
101
|
`User documentation <https://fonttools.readthedocs.io/en/latest/>`_ and
|
|
@@ -105,7 +105,7 @@ are available at `Read the Docs <https://fonttools.readthedocs.io/>`_.
|
|
|
105
105
|
Installation
|
|
106
106
|
~~~~~~~~~~~~
|
|
107
107
|
|
|
108
|
-
FontTools requires `Python <http://www.python.org/download/>`__ 3.
|
|
108
|
+
FontTools requires `Python <http://www.python.org/download/>`__ 3.10
|
|
109
109
|
or later. We try to follow the same schedule of minimum Python version support as
|
|
110
110
|
NumPy (see `NEP 29 <https://numpy.org/neps/nep-0029-deprecation_policy.html>`__).
|
|
111
111
|
|
|
@@ -168,18 +168,6 @@ are required to unlock the extra features named "ufo", etc.
|
|
|
168
168
|
|
|
169
169
|
*Extra:* ``lxml``
|
|
170
170
|
|
|
171
|
-
- ``Lib/fontTools/ufoLib``
|
|
172
|
-
|
|
173
|
-
Package for reading and writing UFO source files; it requires:
|
|
174
|
-
|
|
175
|
-
* `fs <https://pypi.org/pypi/fs>`__: (aka ``pyfilesystem2``) filesystem
|
|
176
|
-
abstraction layer.
|
|
177
|
-
|
|
178
|
-
* `enum34 <https://pypi.org/pypi/enum34>`__: backport for the built-in ``enum``
|
|
179
|
-
module (only required on Python < 3.4).
|
|
180
|
-
|
|
181
|
-
*Extra:* ``ufo``
|
|
182
|
-
|
|
183
171
|
- ``Lib/fontTools/ttLib/woff2.py``
|
|
184
172
|
|
|
185
173
|
Module to compress/decompress WOFF 2.0 web fonts; it requires:
|
|
@@ -208,7 +196,7 @@ are required to unlock the extra features named "ufo", etc.
|
|
|
208
196
|
|
|
209
197
|
* `unicodedata2 <https://pypi.python.org/pypi/unicodedata2>`__:
|
|
210
198
|
``unicodedata`` backport for Python 3.x updated to the latest Unicode
|
|
211
|
-
version
|
|
199
|
+
version 17.0.
|
|
212
200
|
|
|
213
201
|
*Extra:* ``unicode``
|
|
214
202
|
|
|
@@ -223,7 +211,11 @@ are required to unlock the extra features named "ufo", etc.
|
|
|
223
211
|
for Python, which internally uses `NumPy <https://pypi.python.org/pypi/numpy>`__
|
|
224
212
|
arrays and hence is very fast;
|
|
225
213
|
* `munkres <https://pypi.python.org/pypi/munkres>`__: a pure-Python
|
|
226
|
-
module that implements the Hungarian or Kuhn-Munkres algorithm.
|
|
214
|
+
module that implements the Hungarian or Kuhn-Munkres algorithm. Slower than
|
|
215
|
+
SciPy, but useful for minimalistic systems where adding SciPy is undesirable.
|
|
216
|
+
|
|
217
|
+
This ensures both performance (via SciPy) and minimal footprint (via Munkres)
|
|
218
|
+
are possible.
|
|
227
219
|
|
|
228
220
|
To plot the results to a PDF or HTML format, you also need to install:
|
|
229
221
|
|
|
@@ -272,6 +264,17 @@ are required to unlock the extra features named "ufo", etc.
|
|
|
272
264
|
|
|
273
265
|
*Extra:* ``pathops``
|
|
274
266
|
|
|
267
|
+
- ``Lib/fontTools/ufoLib``
|
|
268
|
+
|
|
269
|
+
Package for reading and writing UFO source files; if available, it will use:
|
|
270
|
+
|
|
271
|
+
* `fs <https://pypi.org/pypi/fs>`__: (aka ``pyfilesystem2``) filesystem abstraction layer
|
|
272
|
+
|
|
273
|
+
for reading and writing UFOs to the local filesystem or zip files (.ufoz), instead of
|
|
274
|
+
the built-in ``fontTools.misc.filesystem`` package.
|
|
275
|
+
The reader and writer classes can in theory also accept any object compatible the
|
|
276
|
+
``fs.base.FS`` interface, although not all have been tested.
|
|
277
|
+
|
|
275
278
|
- ``Lib/fontTools/pens/cocoaPen.py`` and ``Lib/fontTools/pens/quartzPen.py``
|
|
276
279
|
|
|
277
280
|
Pens for drawing glyphs with Cocoa ``NSBezierPath`` or ``CGPath`` require:
|
|
@@ -342,7 +345,7 @@ How to make a new release
|
|
|
342
345
|
automate that too.
|
|
343
346
|
|
|
344
347
|
|
|
345
|
-
|
|
348
|
+
Acknowledgments
|
|
346
349
|
~~~~~~~~~~~~~~~~
|
|
347
350
|
|
|
348
351
|
In alphabetical order:
|
|
@@ -353,7 +356,7 @@ Vincent Connare, David Corbett, Simon Cozens, Dave Crossland, Simon Daniels,
|
|
|
353
356
|
Peter Dekkers, Behdad Esfahbod, Behnam Esfahbod, Hannes Famira, Sam Fishman,
|
|
354
357
|
Matt Fontaine, Takaaki Fuji, Rob Hagemans, Yannis Haralambous, Greg Hitchcock,
|
|
355
358
|
Jeremie Hornus, Khaled Hosny, John Hudson, Denis Moyogo Jacquerye, Jack Jansen,
|
|
356
|
-
Tom Kacvinsky, Jens Kutilek, Antoine Leca, Werner Lemberg, Tal Leming, Peter
|
|
359
|
+
Tom Kacvinsky, Jens Kutilek, Antoine Leca, Werner Lemberg, Tal Leming, Liang Hai, Peter
|
|
357
360
|
Lofting, Cosimo Lupo, Olli Meier, Masaya Nakamura, Dave Opstad, Laurence Penney,
|
|
358
361
|
Roozbeh Pournader, Garret Rieger, Read Roberts, Colin Rofls, Guido van Rossum,
|
|
359
362
|
Just van Rossum, Andreas Seidel, Georg Seifert, Chris Simpkins, Miguel Sousa,
|
|
@@ -389,6 +392,241 @@ Have fun!
|
|
|
389
392
|
Changelog
|
|
390
393
|
~~~~~~~~~
|
|
391
394
|
|
|
395
|
+
4.61.1 (released 2025-12-12)
|
|
396
|
+
----------------------------
|
|
397
|
+
|
|
398
|
+
- [otlLib] buildCoverage: return empty Coverage instead of None (#4003, #4004).
|
|
399
|
+
- [instancer] bug fix in ``avar2`` full instancing (#4002).
|
|
400
|
+
- [designspaceLib] Preserve empty conditionsets when serializing to XML (#4001).
|
|
401
|
+
- [fontBu ilder] Fix FontBuilder ``setupOS2()`` default params globally polluted (#3996, #3997).
|
|
402
|
+
- [ttFont] Add more typing annotations to ttFont, xmlWriter, sfnt, varLib.models and others (#3952, #3826).
|
|
403
|
+
- Explicitly test and declare support for Python 3.14, even though we were already shipping pre-built wheels for it (#3990).
|
|
404
|
+
|
|
405
|
+
4.60.2 (released 2025-12-09)
|
|
406
|
+
----------------------------
|
|
407
|
+
|
|
408
|
+
- **Backport release** Same as 4.61.0 but without "Drop support for EOL Python 3.9" change to allow
|
|
409
|
+
downstream projects still on Python 3.9 to avail of the security fix for CVE-2025-66034 (#3994, #3999).
|
|
410
|
+
|
|
411
|
+
4.61.0 (released 2025-11-28)
|
|
412
|
+
----------------------------
|
|
413
|
+
|
|
414
|
+
- [varLib.main]: **SECURITY** Only use basename(vf.filename) to prevent path traversal attacks when
|
|
415
|
+
running ``fonttools varLib`` command, or code which invokes ``fonttools.varLib.main()``.
|
|
416
|
+
Fixes CVE-2025-66034, see:
|
|
417
|
+
https://github.com/fonttools/fonttools/security/advisories/GHSA-768j-98cg-p3fv.
|
|
418
|
+
- [feaLib] Sort BaseLangSysRecords by tag (#3986).
|
|
419
|
+
- Drop support for EOL Python 3.9 (#3982).
|
|
420
|
+
- [instancer] Support --remove-overlaps for fonts with CFF2 table (#3975).
|
|
421
|
+
- [CFF2ToCFF] Add --remove-overlaps option (#3976).
|
|
422
|
+
- [feaLib] Raise an error for rsub with NULL target (#3979).
|
|
423
|
+
- [bezierTools] Fix logic bug in curveCurveIntersections (#3963).
|
|
424
|
+
- [feaLib] Error when condition sets have the same name (#3958).
|
|
425
|
+
- [cu2qu.ufo] skip processing empty glyphs to support sparse kerning masters (#3956).
|
|
426
|
+
- [unicodedata] Update to Unicode 17. Require ``unicodedata2 >= 17.0.0`` when installed with 'unicode' extra.
|
|
427
|
+
|
|
428
|
+
4.60.1 (released 2025-09-29)
|
|
429
|
+
----------------------------
|
|
430
|
+
|
|
431
|
+
- [ufoLib] Reverted accidental method name change in ``UFOReader.getKerningGroupConversionRenameMaps``
|
|
432
|
+
that broke compatibility with downstream projects like defcon (#3948, #3947, robotools/defcon#478).
|
|
433
|
+
- [ufoLib] Added test coverage for ``getKerningGroupConversionRenameMaps`` method (#3950).
|
|
434
|
+
- [subset] Don't try to subset BASE table; pass it through by default instead (#3949).
|
|
435
|
+
- [subset] Remove empty BaseRecord entries in MarkBasePos lookups (#3897, #3892).
|
|
436
|
+
- [subset] Add pruning for MarkLigPos and MarkMarkPos lookups (#3946).
|
|
437
|
+
- [subset] Remove duplicate features when subsetting (#3945).
|
|
438
|
+
- [Docs] Added documentation for the visitor module (#3944).
|
|
439
|
+
|
|
440
|
+
4.60.0 (released 2025-09-17)
|
|
441
|
+
----------------------------
|
|
442
|
+
|
|
443
|
+
- [pointPen] Allow ``reverseFlipped`` parameter of ``DecomposingPointPen`` to take a ``ReverseFlipped``
|
|
444
|
+
enum value to control whether/how to reverse contour direction of flipped components, in addition to
|
|
445
|
+
the existing True/False. This allows to set ``ReverseFlipped.ON_CURVE_FIRST`` to ensure that
|
|
446
|
+
the decomposed outline starts with an on-curve point before being reversed, for better consistency
|
|
447
|
+
with other segment-oriented contour transformations. The change is backward compatible, and the
|
|
448
|
+
default behavior hasn't changed (#3934).
|
|
449
|
+
- [filterPen] Added ``ContourFilterPointPen``, base pen for buffered contour operations, and
|
|
450
|
+
``OnCurveStartPointPen`` filter to ensure contours start with an on-curve point (#3934).
|
|
451
|
+
- [cu2qu] Fixed difference in cython vs pure-python complex division by real number (#3930).
|
|
452
|
+
- [varLib.avar] Refactored and added some new sub-modules and scripts (#3926).
|
|
453
|
+
* ``varLib.avar.build`` module to build avar (and a missing fvar) binaries into a possibly empty TTFont,
|
|
454
|
+
* ``varLib.avar.unbuild`` module to print a .designspace snippet that would generate the same avar binary,
|
|
455
|
+
* ``varLib.avar.map`` module to take TTFont and do the mapping, in user/normalized space,
|
|
456
|
+
* ``varLib.avar.plan`` module moved from ``varLib.avarPlanner``.
|
|
457
|
+
The bare ``fonttools varLib.avar`` script is deprecated, in favour of ``fonttools varLib.avar.build`` (or ``unbuild``).
|
|
458
|
+
- [interpolatable] Clarify ``linear_sum_assignment`` backend options and minimal dependency
|
|
459
|
+
usage (#3927).
|
|
460
|
+
- [post] Speed up ``build_psNameMapping`` (#3923).
|
|
461
|
+
- [ufoLib] Added typing annotations to fontTools.ufoLib (#3875).
|
|
462
|
+
|
|
463
|
+
4.59.2 (released 2025-08-27)
|
|
464
|
+
----------------------------
|
|
465
|
+
|
|
466
|
+
- [varLib] Clear ``USE_MY_METRICS`` component flags when inconsistent across masters (#3912).
|
|
467
|
+
- [varLib.instancer] Avoid negative advance width/height values when instatiating HVAR/VVAR,
|
|
468
|
+
(unlikely in well-behaved fonts) (#3918).
|
|
469
|
+
- [subset] Fix shaping behaviour when pruning empty mark sets (#3915, harfbuzz/harfbuzz#5499).
|
|
470
|
+
- [cu2qu] Fixed ``dot()`` product of perpendicular vectors not always returning exactly 0.0
|
|
471
|
+
in all Python implementations (#3911)
|
|
472
|
+
- [varLib.instancer] Implemented fully-instantiating ``avar2`` fonts (#3909).
|
|
473
|
+
- [feaLib] Allow float values in ``VariableScalar``'s axis locations (#3906, #3907).
|
|
474
|
+
- [cu2qu] Handle special case in ``calc_intersect`` for degenerate cubic curves where 3 to 4
|
|
475
|
+
control points are equal (#3904).
|
|
476
|
+
|
|
477
|
+
4.59.1 (released 2025-08-14)
|
|
478
|
+
----------------------------
|
|
479
|
+
|
|
480
|
+
- [featureVars] Update OS/2.usMaxContext if possible after addFeatureVariationsRaw (#3894).
|
|
481
|
+
- [vhmtx] raise TTLibError('not enough data...') when hmtx/vmtx are truncated (#3843, #3901).
|
|
482
|
+
- [feaLib] Combine duplicate features that have the same set of lookups regardless of the order in which those lookups are added to the feature (#3895).
|
|
483
|
+
- [varLib] Deprecate ``varLib.mutator`` in favor of ``varLib.instancer``. The latter
|
|
484
|
+
provides equivalent full (static font) instancing in addition to partial VF instancing.
|
|
485
|
+
CLI users should replace ``fonttools varLib.mutator`` with ``fonttools varLib.instancer``.
|
|
486
|
+
API users should migrate to ``fontTools.varLib.instancer.instantiateVariableFont`` (#2680).
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
4.59.0 (released 2025-07-16)
|
|
490
|
+
----------------------------
|
|
491
|
+
|
|
492
|
+
- Removed hard-dependency on pyfilesystem2 (``fs`` package) from ``fonttools[ufo]`` extra.
|
|
493
|
+
This is replaced by the `fontTools.misc.filesystem` package, a stdlib-only, drop-in
|
|
494
|
+
replacement for the subset of the pyfilesystem2's API used by ``fontTools.ufoLib``.
|
|
495
|
+
The latter should continue to work with the upstream ``fs`` (we even test with/without).
|
|
496
|
+
Clients who wish to continue using ``fs`` can do so by depending on it directly instead
|
|
497
|
+
of via the ``fonttools[ufo]`` extra (#3885, #3620).
|
|
498
|
+
- [xmlWriter] Replace illegal XML characters (e.g. control or non-characters) with "?"
|
|
499
|
+
when dumping to ttx (#3868, #71).
|
|
500
|
+
- [varLib.hvar] Fixed vertical metrics fields copy/pasta error (#3884).
|
|
501
|
+
- Micro optimizations in ttLib and sstruct modules (#3878, #3879).
|
|
502
|
+
- [unicodedata] Add Garay script to RTL_SCRIPTS (#3882).
|
|
503
|
+
- [roundingPen] Remove unreliable kwarg usage. Argument names aren’t consistent among
|
|
504
|
+
point pens’ ``.addComponent()`` implementations, in particular ``baseGlyphName``
|
|
505
|
+
vs ``glyphName`` (#3880).
|
|
506
|
+
|
|
507
|
+
4.58.5 (released 2025-07-03)
|
|
508
|
+
----------------------------
|
|
509
|
+
|
|
510
|
+
- [feaLib] Don't try to combine ligature & multisub rules (#3874).
|
|
511
|
+
- [feaLib/ast] Use weakref proxies to avoid cycles in visitor (#3873).
|
|
512
|
+
- [varLib.instancer] Fixed instancing CFF2 fonts where VarData contains more than 64k items (#3858).
|
|
513
|
+
|
|
514
|
+
4.58.4 (released 2025-06-13)
|
|
515
|
+
----------------------------
|
|
516
|
+
|
|
517
|
+
- [feaLib] Allow for empty MarkFilter & MarkAttach sets (#3856).
|
|
518
|
+
|
|
519
|
+
4.58.3 (released 2025-06-13)
|
|
520
|
+
----------------------------
|
|
521
|
+
|
|
522
|
+
- [feaLib] Fixed iterable check for Python 3.13.4 and newer (#3854, #3855).
|
|
523
|
+
|
|
524
|
+
4.58.2 (released 2025-06-06)
|
|
525
|
+
----------------------------
|
|
526
|
+
|
|
527
|
+
- [ttLib.reorderGlyphs] Handle CFF2 when reordering glyphs (#3852)
|
|
528
|
+
- [subset] Copy name IDs in use before scrapping or scrambling them for webfonts (#3853)
|
|
529
|
+
|
|
530
|
+
4.58.1 (released 2025-05-28)
|
|
531
|
+
----------------------------
|
|
532
|
+
|
|
533
|
+
- [varLib] Make sure that fvar named instances only reuse name ID 2 or 17 if they are at the default location across all axes, to match OT spec requirement (#3831).
|
|
534
|
+
- [feaLib] Improve single substitution promotion to multiple/ligature substitutions, fixing a few bugs as well (#3849).
|
|
535
|
+
- [loggingTools] Make ``Timer._time`` a static method that doesn't take self, makes it easier to override (#3836).
|
|
536
|
+
- [featureVars] Use ``None`` for empty ConditionSet, which translates to a null offset in the compiled table (#3850).
|
|
537
|
+
- [feaLib] Raise an error on conflicting ligature substitution rules instead of silently taking the last one (#3835).
|
|
538
|
+
- Add typing annotations to T2CharStringPen (#3837).
|
|
539
|
+
- [feaLib] Add single substitutions that were promoted to multiple or ligature substitutions to ``aalt`` feature (#3847).
|
|
540
|
+
- [featureVars] Create a default ``LangSys`` in a ``ScriptRecord`` if missing when adding feature variations to existing GSUB later in the build (#3838).
|
|
541
|
+
- [symfont] Added a ``main()``.
|
|
542
|
+
- [cffLib.specializer] Fix rmoveto merging when blends used (#3839, #3840).
|
|
543
|
+
- [pyftmerge] Add support for cmap format 14 in the merge tool (#3830).
|
|
544
|
+
- [varLib.instancer/cff2] Fix vsindex of Private dicts when instantiating (#3828, #3232).
|
|
545
|
+
- Update text file read to use UTF-8 with optional BOM so it works with e.g. Windows Notepad.exe (#3824).
|
|
546
|
+
- [varLib] Ensure that instances only reuse name ID 2 or 17 if they are at the default location across all axes (#3831).
|
|
547
|
+
- [varLib] Create a dflt LangSys in a ScriptRecord when adding variations later, to fix an avoidable crash in an edge case (#3838).
|
|
548
|
+
|
|
549
|
+
4.58.0 (released 2025-05-10)
|
|
550
|
+
----------------------------
|
|
551
|
+
|
|
552
|
+
- Drop Python 3.8, require 3.9+ (#3819)
|
|
553
|
+
- [HVAR, VVAR] Prune unused regions when using a direct mapping (#3797)
|
|
554
|
+
- [Docs] Improvements to ufoLib documentation (#3721)
|
|
555
|
+
- [Docs] Improvements to varLib documentation (#3727)
|
|
556
|
+
- [Docs] Improvements to Pens and pen-module documentation (#3724)
|
|
557
|
+
- [Docs] Miscellany updates to docs (misc modules and smaller modules) (#3730)
|
|
558
|
+
- [subset] Close codepoints over BiDi mirror variants. (#3801)
|
|
559
|
+
- [feaLib] Fix serializing ChainContextPosStatement and
|
|
560
|
+
ChainContextSubstStatement in some rare cases (#3788)
|
|
561
|
+
- [designspaceLib] Clarify user expectations for getStatNames (#2892)
|
|
562
|
+
- [GVAR] Add support for new `GVAR` table (#3728)
|
|
563
|
+
- [TSI0, TSI5] Derive number of entries to decompile from data length (#2477)
|
|
564
|
+
- [ttLib] Fix `AttributeError` when reporting table overflow (#3808)
|
|
565
|
+
- [ttLib] Apply rounding more often in getCoordinates (#3798)
|
|
566
|
+
- [ttLib] Ignore component bounds if empty (#3799)
|
|
567
|
+
- [ttLib] Change the separator for duplicate glyph names from "#" to "." (#3809)
|
|
568
|
+
- [feaLib] Support subtable breaks in CursivePos, MarkBasePos, MarkToLigPos and
|
|
569
|
+
MarkToMarkPos lookups (#3800, #3807)
|
|
570
|
+
- [feaLib] If the same lookup has single substitutions and ligature
|
|
571
|
+
substitutions, upgrade single substitutions to ligature substitutions with
|
|
572
|
+
one input glyph (#3805)
|
|
573
|
+
- [feaLib] Correctly handle <NULL> in single pos lookups (#3803)
|
|
574
|
+
- [feaLib] Remove duplicates from class pair pos classes instead of raising an
|
|
575
|
+
error (#3804)
|
|
576
|
+
- [feaLib] Support creating extension lookups using useExtenion lookup flag
|
|
577
|
+
instead of silently ignoring it (#3811)
|
|
578
|
+
- [STAT] Add typing for the simpler STAT arguments (#3812)
|
|
579
|
+
- [otlLib.builder] Add future import for annotations (#3814)
|
|
580
|
+
- [cffLib] Fix reading supplement encoding (#3813)
|
|
581
|
+
- [voltLib] Add some missing functionality and fixes to voltLib and VoltToFea,
|
|
582
|
+
making the conversion to feature files more robust. Add also `fonttools
|
|
583
|
+
voltLib` command line tool to compile VOLT sources directly (doing an
|
|
584
|
+
intermediate fea conversion internally) (#3818)
|
|
585
|
+
- [pens] Add some PointPen annotations (#3820)
|
|
586
|
+
|
|
587
|
+
4.57.0 (released 2025-04-03)
|
|
588
|
+
----------------------------
|
|
589
|
+
|
|
590
|
+
- [ttLib.__main__] Add `--no-recalc-timestamp` flag (#3771)
|
|
591
|
+
- [ttLib.__main__] Add `-b` (recalcBBoxes=False) flag (#3772)
|
|
592
|
+
- [cmap] Speed up glyphOrder loading from cmap (#3774)
|
|
593
|
+
- [ttLib.__main__] Improvements around the `-t` flag (#3776)
|
|
594
|
+
- [Debg] Fix parsing from XML; add roundtrip tests (#3781)
|
|
595
|
+
- [fealib] Support \*Base.MinMax tables (#3783, #3786)
|
|
596
|
+
- [config] Add OPTIMIZE_FONT_SPEED (#3784)
|
|
597
|
+
- [varLib.hvar] New module to add HVAR table to the font (#3780)
|
|
598
|
+
- [otlLib.optimize] Fix crash when the provided TTF does not contain a `GPOS` (#3794)
|
|
599
|
+
|
|
600
|
+
4.56.0 (released 2025-02-07)
|
|
601
|
+
----------------------------
|
|
602
|
+
|
|
603
|
+
- [varStore] Sort the input todo list with the same sorting key used for the opimizer's output (#3767).
|
|
604
|
+
- [otData] Fix DeviceTable's ``DeltaValue`` repeat value which caused a crash after importing from XML and then compiling a GPOS containing Device tables (#3758).
|
|
605
|
+
- [feaLib] Make ``FeatureLibError`` pickleable, so client can e.g. use feaLib to can compile features in parallel with multiprocessing (#3762).
|
|
606
|
+
- [varLib/gvar] Removed workaround for old, long-fixed macOS bug about composite glyphs with all zero deltas (#1381, #1788).
|
|
607
|
+
- [Docs] Updated ttLib documentation, beefed up TTFont and TTGlyphSet explanations (#3720).
|
|
608
|
+
|
|
609
|
+
4.55.8 (released 2025-01-29)
|
|
610
|
+
----------------------------
|
|
611
|
+
|
|
612
|
+
- [MetaTools] Fixed bug in buildUCD.py script whereby the first non-header line of some UCD text file was being skipped. This affected in particular the U+00B7 (MIDDLE DOT) entry of ScriptExtensions.txt (#3756).
|
|
613
|
+
|
|
614
|
+
4.55.7 (released 2025-01-28)
|
|
615
|
+
----------------------------
|
|
616
|
+
|
|
617
|
+
- Shorten the changelog included in PyPI package description to accommodate maximum length limit imposed by Azure DevOps. No actual code changes since v4.55.6 (#3754).
|
|
618
|
+
|
|
619
|
+
4.55.6 (released 2025-01-24)
|
|
620
|
+
----------------------------
|
|
621
|
+
|
|
622
|
+
- [glyf] Fixed regression introduced in 4.55.5 when computing bounds of nested composite glyphs with transformed components (#3752).
|
|
623
|
+
|
|
624
|
+
4.55.5 (released 2025-01-23)
|
|
625
|
+
----------------------------
|
|
626
|
+
|
|
627
|
+
- [glyf] Fixed recalcBounds of transformed components with unrounded coordinates (#3750).
|
|
628
|
+
- [feaLib] Allow duplicate script/language statements (#3749).
|
|
629
|
+
|
|
392
630
|
4.55.4 (released 2025-01-21)
|
|
393
631
|
----------------------------
|
|
394
632
|
|
|
@@ -2020,1383 +2258,4 @@ Minor release to fix uploading wheels to PyPI.
|
|
|
2020
2258
|
- [cffLib] Make sure glyph names are unique (#1699).
|
|
2021
2259
|
- [feaLib] Fix feature parser to correctly handle octal numbers (#1700).
|
|
2022
2260
|
|
|
2023
|
-
|
|
2024
|
-
----------------------------
|
|
2025
|
-
|
|
2026
|
-
- NOTE: This is the last scheduled release to support Python 2.7. The upcoming fonttools
|
|
2027
|
-
v4.x series is going to require Python 3.6 or greater.
|
|
2028
|
-
- [varLib] Added new ``varLib.instancer`` module for partially instantiating variable
|
|
2029
|
-
fonts. This extends (and will eventually replace) ``varLib.mutator`` module, as
|
|
2030
|
-
it allows to create not just full static instances from a variable font, but also
|
|
2031
|
-
"partial" or "less variable" fonts where some of the axes are dropped or
|
|
2032
|
-
instantiated at a particular value.
|
|
2033
|
-
Also available from the command-line as `fonttools varLib.instancer --help`
|
|
2034
|
-
(#1537, #1628).
|
|
2035
|
-
- [cffLib] Added support for ``FDSelect`` format 4 (#1677).
|
|
2036
|
-
- [subset] Added support for subsetting ``sbix`` (Apple bitmap color font) table.
|
|
2037
|
-
- [t1Lib] Fixed issue parsing ``eexec`` section in Type1 fonts when whitespace
|
|
2038
|
-
characters are interspersed among the trailing zeros (#1676).
|
|
2039
|
-
- [cffLib.specializer] Fixed bug in ``programToCommands`` with CFF2 charstrings (#1669).
|
|
2040
|
-
|
|
2041
|
-
3.43.2 (released 2019-07-10)
|
|
2042
|
-
----------------------------
|
|
2043
|
-
|
|
2044
|
-
- [featureVars] Fixed region-merging code on python3 (#1659).
|
|
2045
|
-
- [varLib.cff] Fixed merging of sparse PrivateDict items (#1653).
|
|
2046
|
-
|
|
2047
|
-
3.43.1 (released 2019-06-19)
|
|
2048
|
-
----------------------------
|
|
2049
|
-
|
|
2050
|
-
- [subset] Fixed regression when passing ``--flavor=woff2`` option with an input font
|
|
2051
|
-
that was already compressed as WOFF 1.0 (#1650).
|
|
2052
|
-
|
|
2053
|
-
3.43.0 (released 2019-06-18)
|
|
2054
|
-
----------------------------
|
|
2055
|
-
|
|
2056
|
-
- [woff2] Added support for compressing/decompressing WOFF2 fonts with non-transformed
|
|
2057
|
-
``glyf`` and ``loca`` tables, as well as with transformed ``hmtx`` table.
|
|
2058
|
-
Removed ``Snippets/woff2_compress.py`` and ``Snippets/woff2_decompress.py`` scripts,
|
|
2059
|
-
and replaced them with a new console entry point ``fonttools ttLib.woff2``
|
|
2060
|
-
that provides two sub-commands ``compress`` and ``decompress``.
|
|
2061
|
-
- [varLib.cff] Fixed bug when merging CFF2 ``PrivateDicts``. The ``PrivateDict``
|
|
2062
|
-
data from the first region font was incorrecty used for all subsequent fonts.
|
|
2063
|
-
The bug would only affect variable CFF2 fonts with hinting (#1643, #1644).
|
|
2064
|
-
Also, fixed a merging bug when VF masters have no blends or marking glyphs (#1632,
|
|
2065
|
-
#1642).
|
|
2066
|
-
- [loggingTools] Removed unused backport of ``LastResortLogger`` class.
|
|
2067
|
-
- [subset] Gracefully handle partial MATH table (#1635).
|
|
2068
|
-
- [featureVars] Avoid duplicate references to ``rvrn`` feature record in
|
|
2069
|
-
``DefaultLangSys`` tables when calling ``addFeatureVariations`` on a font that
|
|
2070
|
-
does not already have a ``GSUB`` table (aa8a5bc6).
|
|
2071
|
-
- [varLib] Fixed merging of class-based kerning. Before, the process could introduce
|
|
2072
|
-
rogue kerning values and variations for random classes against class zero (everything
|
|
2073
|
-
not otherwise classed).
|
|
2074
|
-
- [varLib] Fixed merging GPOS tables from master fonts with different number of
|
|
2075
|
-
``SinglePos`` subtables (#1621, #1641).
|
|
2076
|
-
- [unicodedata] Updated Blocks, Scripts and ScriptExtensions to Unicode 12.1.
|
|
2077
|
-
|
|
2078
|
-
3.42.0 (released 2019-05-28)
|
|
2079
|
-
----------------------------
|
|
2080
|
-
|
|
2081
|
-
- [OS/2] Fixed sign of ``fsType``: it should be ``uint16``, not ``int16`` (#1619).
|
|
2082
|
-
- [subset] Skip out-of-range class values in mark attachment (#1478).
|
|
2083
|
-
- [fontBuilder] Add an empty ``DSIG`` table with ``setupDummyDSIG`` method (#1621).
|
|
2084
|
-
- [varLib.merger] Fixed bug whereby ``GDEF.GlyphClassDef`` were being dropped
|
|
2085
|
-
when generating instance via ``varLib.mutator`` (#1614).
|
|
2086
|
-
- [varLib] Added command-line options ``-v`` and ``-q`` to configure logging (#1613).
|
|
2087
|
-
- [subset] Update font extents in head table (#1612).
|
|
2088
|
-
- [subset] Make --retain-gids truncate empty glyphs after the last non-empty glyph
|
|
2089
|
-
(#1611).
|
|
2090
|
-
- [requirements] Updated ``unicodedata2`` backport for Unicode 12.0.
|
|
2091
|
-
|
|
2092
|
-
3.41.2 (released 2019-05-13)
|
|
2093
|
-
----------------------------
|
|
2094
|
-
|
|
2095
|
-
- [cffLib] Fixed issue when importing a ``CFF2`` variable font from XML, whereby
|
|
2096
|
-
the VarStore state was not propagated to PrivateDict (#1598).
|
|
2097
|
-
- [varLib] Don't drop ``post`` glyph names when building CFF2 variable font (#1609).
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
3.41.1 (released 2019-05-13)
|
|
2101
|
-
----------------------------
|
|
2102
|
-
|
|
2103
|
-
- [designspaceLib] Added ``loadSourceFonts`` method to load source fonts using
|
|
2104
|
-
custom opener function (#1606).
|
|
2105
|
-
- [head] Round font bounding box coordinates to integers to fix compile error
|
|
2106
|
-
if CFF font has float coordinates (#1604, #1605).
|
|
2107
|
-
- [feaLib] Don't write ``None`` in ``ast.ValueRecord.asFea()`` (#1599).
|
|
2108
|
-
- [subset] Fixed issue ``AssertionError`` when using ``--desubroutinize`` option
|
|
2109
|
-
(#1590, #1594).
|
|
2110
|
-
- [graphite] Fixed bug in ``Silf`` table's ``decompile`` method unmasked by
|
|
2111
|
-
previous typo fix (#1597). Decode languange code as UTF-8 in ``Sill`` table's
|
|
2112
|
-
``decompile`` method (#1600).
|
|
2113
|
-
|
|
2114
|
-
3.41.0 (released 2019-04-29)
|
|
2115
|
-
----------------------------
|
|
2116
|
-
|
|
2117
|
-
- [varLib/cffLib] Added support for building ``CFF2`` variable font from sparse
|
|
2118
|
-
masters, or masters with more than one model (multiple ``VarStore.VarData``).
|
|
2119
|
-
In ``cffLib.specializer``, added support for ``CFF2`` CharStrings with
|
|
2120
|
-
``blend`` operators (#1547, #1591).
|
|
2121
|
-
- [subset] Fixed subsetting ``HVAR`` and ``VVAR`` with ``--retain-gids`` option,
|
|
2122
|
-
and when advances mapping is null while sidebearings mappings are non-null
|
|
2123
|
-
(#1587, #1588).
|
|
2124
|
-
- Added ``otlLib.maxContextCalc`` module to compute ``OS/2.usMaxContext`` value.
|
|
2125
|
-
Calculate it automatically when compiling features with feaLib. Added option
|
|
2126
|
-
``--recalc-max-context`` to ``subset`` module (#1582).
|
|
2127
|
-
- [otBase/otTables] Fixed ``AttributeError`` on missing OT table fields after
|
|
2128
|
-
importing font from TTX (#1584).
|
|
2129
|
-
- [graphite] Fixed typo ``Silf`` table's ``decompile`` method (#1586).
|
|
2130
|
-
- [otlLib] Better compress ``GPOS`` SinglePos (LookupType 1) subtables (#1539).
|
|
2131
|
-
|
|
2132
|
-
3.40.0 (released 2019-04-08)
|
|
2133
|
-
----------------------------
|
|
2134
|
-
|
|
2135
|
-
- [subset] Fixed error while subsetting ``VVAR`` with ``--retain-gids``
|
|
2136
|
-
option (#1552).
|
|
2137
|
-
- [designspaceLib] Use up-to-date default location in ``findDefault`` method
|
|
2138
|
-
(#1554).
|
|
2139
|
-
- [voltLib] Allow passing file-like object to Parser.
|
|
2140
|
-
- [arrayTools/glyf] ``calcIntBounds`` (used to compute bounding boxes of glyf
|
|
2141
|
-
table's glyphs) now uses ``otRound`` instead of ``round3`` (#1566).
|
|
2142
|
-
- [svgLib] Added support for converting more SVG shapes to path ``d`` strings
|
|
2143
|
-
(ellipse, line, polyline), as well as support for ``transform`` attributes.
|
|
2144
|
-
Only ``matrix`` transformations are currently supported (#1564, #1564).
|
|
2145
|
-
- [varLib] Added support for building ``VVAR`` table from ``vmtx`` and ``VORG``
|
|
2146
|
-
tables (#1551).
|
|
2147
|
-
- [fontBuilder] Enable making CFF2 fonts with ``post`` table format 2 (#1557).
|
|
2148
|
-
- Fixed ``DeprecationWarning`` on invalid escape sequences (#1562).
|
|
2149
|
-
|
|
2150
|
-
3.39.0 (released 2019-03-19)
|
|
2151
|
-
----------------------------
|
|
2152
|
-
|
|
2153
|
-
- [ttLib/glyf] Raise more specific error when encountering recursive
|
|
2154
|
-
component references (#1545, #1546).
|
|
2155
|
-
- [Doc/designspaceLib] Defined new ``public.skipExportGlyphs`` lib key (#1534,
|
|
2156
|
-
unified-font-object/ufo-spec#84).
|
|
2157
|
-
- [varLib] Use ``vmtx`` to compute vertical phantom points; or ``hhea.ascent``
|
|
2158
|
-
and ``head.unitsPerEM`` if ``vmtx`` is missing (#1528).
|
|
2159
|
-
- [gvar/cvar] Sort XML element's min/value/max attributes in TupleVariation
|
|
2160
|
-
toXML to improve readability of TTX dump (#1527).
|
|
2161
|
-
- [varLib.plot] Added support for 2D plots with only 1 variation axis (#1522).
|
|
2162
|
-
- [designspaceLib] Use axes maps when normalizing locations in
|
|
2163
|
-
DesignSpaceDocument (#1226, #1521), and when finding default source (#1535).
|
|
2164
|
-
- [mutator] Set ``OVERLAP_SIMPLE`` and ``OVERLAP_COMPOUND`` glyf flags by
|
|
2165
|
-
default in ``instantiateVariableFont``. Added ``--no-overlap`` cli option
|
|
2166
|
-
to disable this (#1518).
|
|
2167
|
-
- [subset] Fixed subsetting ``VVAR`` table (#1516, #1517).
|
|
2168
|
-
Fixed subsetting an ``HVAR`` table that has an ``AdvanceWidthMap`` when the
|
|
2169
|
-
option ``--retain-gids`` is used.
|
|
2170
|
-
- [feaLib] Added ``forceChained`` in MultipleSubstStatement (#1511).
|
|
2171
|
-
Fixed double indentation of ``subtable`` statement (#1512).
|
|
2172
|
-
Added support for ``subtable`` statement in more places than just PairPos
|
|
2173
|
-
lookups (#1520).
|
|
2174
|
-
Handle lookupflag 0 and lookupflag without a value (#1540).
|
|
2175
|
-
- [varLib] In ``load_designspace``, provide a default English name for the
|
|
2176
|
-
``ital`` axis tag.
|
|
2177
|
-
- Remove pyftinspect because it is unmaintained and bitrotted.
|
|
2178
|
-
|
|
2179
|
-
3.38.0 (released 2019-02-18)
|
|
2180
|
-
----------------------------
|
|
2181
|
-
|
|
2182
|
-
- [cffLib] Fixed RecursionError when unpickling or deepcopying TTFont with
|
|
2183
|
-
CFF table (#1488, 649dc49).
|
|
2184
|
-
- [subset] Fixed AttributeError when using --desubroutinize option (#1490).
|
|
2185
|
-
Also, fixed desubroutinizing bug when subrs contain hints (#1499).
|
|
2186
|
-
- [CPAL] Make Color a subclass of namedtuple (173a0f5).
|
|
2187
|
-
- [feaLib] Allow hyphen in glyph class names.
|
|
2188
|
-
- [feaLib] Added 'tables' option to __main__.py (#1497).
|
|
2189
|
-
- [feaLib] Add support for special-case contextual positioning formatting
|
|
2190
|
-
(#1501).
|
|
2191
|
-
- [svgLib] Support converting SVG basic shapes (rect, circle, etc.) into
|
|
2192
|
-
equivalent SVG paths (#1500, #1508).
|
|
2193
|
-
- [Snippets] Added name-viewer.ipynb Jupyter notebook.
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
3.37.3 (released 2019-02-05)
|
|
2197
|
-
----------------------------
|
|
2198
|
-
|
|
2199
|
-
- The previous release accidentally changed several files from Unix to DOS
|
|
2200
|
-
line-endings. Fix that.
|
|
2201
|
-
|
|
2202
|
-
3.37.2 (released 2019-02-05)
|
|
2203
|
-
----------------------------
|
|
2204
|
-
|
|
2205
|
-
- [varLib] Temporarily revert the fix to ``load_masters()``, which caused a
|
|
2206
|
-
crash in ``interpolate_layout()`` when ``deepcopy``-ing OTFs.
|
|
2207
|
-
|
|
2208
|
-
3.37.1 (released 2019-02-05)
|
|
2209
|
-
----------------------------
|
|
2210
|
-
|
|
2211
|
-
- [varLib] ``load_masters()`` now actually assigns the fonts it loads to the
|
|
2212
|
-
source.font attributes.
|
|
2213
|
-
- [varLib] Fixed an MVAR table generation crash when sparse masters were
|
|
2214
|
-
involved.
|
|
2215
|
-
- [voltLib] ``parse_coverage_()`` returns a tuple instead of an ast.Enum.
|
|
2216
|
-
- [feaLib] A MarkClassDefinition inside a block is no longer doubly indented
|
|
2217
|
-
compared to the rest of the block.
|
|
2218
|
-
|
|
2219
|
-
3.37.0 (released 2019-01-28)
|
|
2220
|
-
----------------------------
|
|
2221
|
-
|
|
2222
|
-
- [svgLib] Added support for converting elliptical arcs to cubic bezier curves
|
|
2223
|
-
(#1464).
|
|
2224
|
-
- [py23] Added backport for ``math.isfinite``.
|
|
2225
|
-
- [varLib] Apply HIDDEN flag to fvar axis if designspace axis has attribute
|
|
2226
|
-
``hidden=1``.
|
|
2227
|
-
- Fixed "DeprecationWarning: invalid escape sequence" in Python 3.7.
|
|
2228
|
-
- [voltLib] Fixed parsing glyph groups. Distinguish different PROCESS_MARKS.
|
|
2229
|
-
Accept COMPONENT glyph type.
|
|
2230
|
-
- [feaLib] Distinguish missing value and explicit ``<NULL>`` for PairPos2
|
|
2231
|
-
format A (#1459). Round-trip ``useExtension`` keyword. Implemented
|
|
2232
|
-
``ValueRecord.asFea`` method.
|
|
2233
|
-
- [subset] Insert empty widths into hdmx when retaining gids (#1458).
|
|
2234
|
-
|
|
2235
|
-
3.36.0 (released 2019-01-17)
|
|
2236
|
-
----------------------------
|
|
2237
|
-
|
|
2238
|
-
- [ttx] Added ``--no-recalc-timestamp`` option to keep the original font's
|
|
2239
|
-
``head.modified`` timestamp (#1455, #46).
|
|
2240
|
-
- [ttx/psCharStrings] Fixed issues while dumping and round-tripping CFF2 table
|
|
2241
|
-
with ttx (#1451, #1452, #1456).
|
|
2242
|
-
- [voltLib] Fixed check for duplicate anchors (#1450). Don't try to read past
|
|
2243
|
-
the ``END`` operator in .vtp file (#1453).
|
|
2244
|
-
- [varLib] Use sentinel value -0x8000 (-32768) to ignore post.underlineThickness
|
|
2245
|
-
and post.underlinePosition when generating MVAR deltas (#1449,
|
|
2246
|
-
googlei18n/ufo2ft#308).
|
|
2247
|
-
- [subset] Added ``--retain-gids`` option to subset font without modifying the
|
|
2248
|
-
current glyph indices (#1443, #1447).
|
|
2249
|
-
- [ufoLib] Replace deprecated calls to ``getbytes`` and ``setbytes`` with new
|
|
2250
|
-
equivalent ``readbytes`` and ``writebytes`` calls. ``fs`` >= 2.2 no required.
|
|
2251
|
-
- [varLib] Allow loading masters from TTX files as well (#1441).
|
|
2252
|
-
|
|
2253
|
-
3.35.2 (released 2019-01-14)
|
|
2254
|
-
----------------------------
|
|
2255
|
-
|
|
2256
|
-
- [hmtx/vmtx]: Allow to compile/decompile ``hmtx`` and ``vmtx`` tables even
|
|
2257
|
-
without the corresponding (required) metrics header tables, ``hhea`` and
|
|
2258
|
-
``vhea`` (#1439).
|
|
2259
|
-
- [varLib] Added support for localized axes' ``labelname`` and named instances'
|
|
2260
|
-
``stylename`` (#1438).
|
|
2261
|
-
|
|
2262
|
-
3.35.1 (released 2019-01-09)
|
|
2263
|
-
----------------------------
|
|
2264
|
-
|
|
2265
|
-
- [_m_a_x_p] Include ``maxComponentElements`` in ``maxp`` table's recalculation.
|
|
2266
|
-
|
|
2267
|
-
3.35.0 (released 2019-01-07)
|
|
2268
|
-
----------------------------
|
|
2269
|
-
|
|
2270
|
-
- [psCharStrings] In ``encodeFloat`` function, use float's "general format" with
|
|
2271
|
-
8 digits of precision (i.e. ``%8g``) instead of ``str()``. This works around
|
|
2272
|
-
a macOS rendering issue when real numbers in CFF table are too long, and
|
|
2273
|
-
also makes sure that floats are encoded with the same precision in python 2.7
|
|
2274
|
-
and 3.x (#1430, googlei18n/ufo2ft#306).
|
|
2275
|
-
- [_n_a_m_e/fontBuilder] Make ``_n_a_m_e_table.addMultilingualName`` also add
|
|
2276
|
-
Macintosh (platformID=1) names by default. Added options to ``FontBuilder``
|
|
2277
|
-
``setupNameTable`` method to optionally disable Macintosh or Windows names.
|
|
2278
|
-
(#1359, #1431).
|
|
2279
|
-
- [varLib] Make ``build`` optionally accept a ``DesignSpaceDocument`` object,
|
|
2280
|
-
instead of a designspace file path. The caller can now set the ``font``
|
|
2281
|
-
attribute of designspace's sources to a TTFont object, thus allowing to
|
|
2282
|
-
skip filenames manipulation altogether (#1416, #1425).
|
|
2283
|
-
- [sfnt] Allow SFNTReader objects to be deep-copied.
|
|
2284
|
-
- Require typing>=3.6.4 on py27 to fix issue with singledispatch (#1423).
|
|
2285
|
-
- [designspaceLib/t1Lib/macRes] Fixed some cases where pathlib.Path objects were
|
|
2286
|
-
not accepted (#1421).
|
|
2287
|
-
- [varLib] Fixed merging of multiple PairPosFormat2 subtables (#1411).
|
|
2288
|
-
- [varLib] The default STAT table version is now set to 1.1, to improve
|
|
2289
|
-
compatibility with legacy applications (#1413).
|
|
2290
|
-
|
|
2291
|
-
3.34.2 (released 2018-12-17)
|
|
2292
|
-
----------------------------
|
|
2293
|
-
|
|
2294
|
-
- [merge] Fixed AssertionError when none of the script tables in GPOS/GSUB have
|
|
2295
|
-
a DefaultLangSys record (#1408, 135a4a1).
|
|
2296
|
-
|
|
2297
|
-
3.34.1 (released 2018-12-17)
|
|
2298
|
-
----------------------------
|
|
2299
|
-
|
|
2300
|
-
- [varLib] Work around macOS rendering issue for composites without gvar entry (#1381).
|
|
2301
|
-
|
|
2302
|
-
3.34.0 (released 2018-12-14)
|
|
2303
|
-
----------------------------
|
|
2304
|
-
|
|
2305
|
-
- [varLib] Support generation of CFF2 variable fonts. ``model.reorderMasters()``
|
|
2306
|
-
now supports arbitrary mapping. Fix handling of overlapping ranges for feature
|
|
2307
|
-
variations (#1400).
|
|
2308
|
-
- [cffLib, subset] Code clean-up and fixing related to CFF2 support.
|
|
2309
|
-
- [ttLib.tables.ttProgram] Use raw strings for regex patterns (#1389).
|
|
2310
|
-
- [fontbuilder] Initial support for building CFF2 fonts. Set CFF's
|
|
2311
|
-
``FontMatrix`` automatically from unitsPerEm.
|
|
2312
|
-
- [plistLib] Accept the more general ``collections.Mapping`` instead of the
|
|
2313
|
-
specific ``dict`` class to support custom data classes that should serialize
|
|
2314
|
-
to dictionaries.
|
|
2315
|
-
|
|
2316
|
-
3.33.0 (released 2018-11-30)
|
|
2317
|
-
----------------------------
|
|
2318
|
-
- [subset] subsetter bug fix with variable fonts.
|
|
2319
|
-
- [varLib.featureVar] Improve FeatureVariations generation with many rules.
|
|
2320
|
-
- [varLib] Enable sparse masters when building variable fonts:
|
|
2321
|
-
https://github.com/fonttools/fonttools/pull/1368#issuecomment-437257368
|
|
2322
|
-
- [varLib.mutator] Add IDEF for GETVARIATION opcode, for handling hints in an
|
|
2323
|
-
instance.
|
|
2324
|
-
- [ttLib] Ignore the length of kern table subtable format 0
|
|
2325
|
-
|
|
2326
|
-
3.32.0 (released 2018-11-01)
|
|
2327
|
-
----------------------------
|
|
2328
|
-
|
|
2329
|
-
- [ufoLib] Make ``UFOWriter`` a subclass of ``UFOReader``, and use mixins
|
|
2330
|
-
for shared methods (#1344).
|
|
2331
|
-
- [featureVars] Fixed normalization error when a condition's minimum/maximum
|
|
2332
|
-
attributes are missing in designspace ``<rule>`` (#1366).
|
|
2333
|
-
- [setup.py] Added ``[plot]`` to extras, to optionally install ``matplotlib``,
|
|
2334
|
-
needed to use the ``fonTools.varLib.plot`` module.
|
|
2335
|
-
- [varLib] Take total bounding box into account when resolving model (7ee81c8).
|
|
2336
|
-
If multiple axes have the same range ratio, cut across both (62003f4).
|
|
2337
|
-
- [subset] Don't error if ``STAT`` has no ``AxisValue`` tables.
|
|
2338
|
-
- [fontBuilder] Added a new submodule which contains a ``FontBuilder`` wrapper
|
|
2339
|
-
class around ``TTFont`` that makes it easier to create a working TTF or OTF
|
|
2340
|
-
font from scratch with code. NOTE: the API is still experimental and may
|
|
2341
|
-
change in future versions.
|
|
2342
|
-
|
|
2343
|
-
3.31.0 (released 2018-10-21)
|
|
2344
|
-
----------------------------
|
|
2345
|
-
|
|
2346
|
-
- [ufoLib] Merged the `ufoLib <https://github.com/unified-font-objects/ufoLib>`__
|
|
2347
|
-
master branch into a new ``fontTools.ufoLib`` package (#1335, #1095).
|
|
2348
|
-
Moved ``ufoLib.pointPen`` module to ``fontTools.pens.pointPen``.
|
|
2349
|
-
Moved ``ufoLib.etree`` module to ``fontTools.misc.etree``.
|
|
2350
|
-
Moved ``ufoLib.plistlib`` module to ``fontTools.misc.plistlib``.
|
|
2351
|
-
To use the new ``fontTools.ufoLib`` module you need to install fonttools
|
|
2352
|
-
with the ``[ufo]`` extra, or you can manually install the required additional
|
|
2353
|
-
dependencies (cf. README.rst).
|
|
2354
|
-
- [morx] Support AAT action type to insert glyphs and clean up compilation
|
|
2355
|
-
of AAT action tables (4a1871f, 2011ccf).
|
|
2356
|
-
- [subset] The ``--no-hinting`` on a CFF font now also drops the optional
|
|
2357
|
-
hinting keys in Private dict: ``ForceBold``, ``LanguageGroup``, and
|
|
2358
|
-
``ExpansionFactor`` (#1322).
|
|
2359
|
-
- [subset] Include nameIDs referenced by STAT table (#1327).
|
|
2360
|
-
- [loggingTools] Added ``msg=None`` argument to
|
|
2361
|
-
``CapturingLogHandler.assertRegex`` (0245f2c).
|
|
2362
|
-
- [varLib.mutator] Implemented ``FeatureVariations`` instantiation (#1244).
|
|
2363
|
-
- [g_l_y_f] Added PointPen support to ``_TTGlyph`` objects (#1334).
|
|
2364
|
-
|
|
2365
|
-
3.30.0 (released 2018-09-18)
|
|
2366
|
-
----------------------------
|
|
2367
|
-
|
|
2368
|
-
- [feaLib] Skip building noop class PairPos subtables when Coverage is NULL
|
|
2369
|
-
(#1318).
|
|
2370
|
-
- [ttx] Expose the previously reserved bit flag ``OVERLAP_SIMPLE`` of
|
|
2371
|
-
glyf table's contour points in the TTX dump. This is used in some
|
|
2372
|
-
implementations to specify a non-zero fill with overlapping contours (#1316).
|
|
2373
|
-
- [ttLib] Added support for decompiling/compiling ``TS1C`` tables containing
|
|
2374
|
-
VTT sources for ``cvar`` variation table (#1310).
|
|
2375
|
-
- [varLib] Use ``fontTools.designspaceLib`` to read DesignSpaceDocument. The
|
|
2376
|
-
``fontTools.varLib.designspace`` module is now deprecated and will be removed
|
|
2377
|
-
in future versions. The presence of an explicit ``axes`` element is now
|
|
2378
|
-
required in order to build a variable font (#1224, #1313).
|
|
2379
|
-
- [varLib] Implemented building GSUB FeatureVariations table from the ``rules``
|
|
2380
|
-
element of DesignSpace document (#1240, #713, #1314).
|
|
2381
|
-
- [subset] Added ``--no-layout-closure`` option to not expand the subset with
|
|
2382
|
-
the glyphs produced by OpenType layout features. Instead, OpenType features
|
|
2383
|
-
will be subset to only rules that are relevant to the otherwise-specified
|
|
2384
|
-
glyph set (#43, #1121).
|
|
2385
|
-
|
|
2386
|
-
3.29.1 (released 2018-09-10)
|
|
2387
|
-
----------------------------
|
|
2388
|
-
|
|
2389
|
-
- [feaLib] Fixed issue whereby lookups from DFLT/dflt were not included in the
|
|
2390
|
-
DFLT/non-dflt language systems (#1307).
|
|
2391
|
-
- [graphite] Fixed issue on big-endian architectures (e.g. ppc64) (#1311).
|
|
2392
|
-
- [subset] Added ``--layout-scripts`` option to add/exclude set of OpenType
|
|
2393
|
-
layout scripts that will be preserved. By default all scripts are retained
|
|
2394
|
-
(``'*'``) (#1303).
|
|
2395
|
-
|
|
2396
|
-
3.29.0 (released 2018-07-26)
|
|
2397
|
-
----------------------------
|
|
2398
|
-
|
|
2399
|
-
- [feaLib] In the OTL table builder, when the ``name`` table is excluded
|
|
2400
|
-
from the list of tables to be build, skip compiling ``featureNames`` blocks,
|
|
2401
|
-
as the records referenced in ``FeatureParams`` table don't exist (68951b7).
|
|
2402
|
-
- [otBase] Try ``ExtensionLookup`` if other offset-overflow methods fail
|
|
2403
|
-
(05f95f0).
|
|
2404
|
-
- [feaLib] Added support for explicit ``subtable;`` break statements in
|
|
2405
|
-
PairPos lookups; previously these were ignored (#1279, #1300, #1302).
|
|
2406
|
-
- [cffLib.specializer] Make sure the stack depth does not exceed maxstack - 1,
|
|
2407
|
-
so that a subroutinizer can insert subroutine calls (#1301,
|
|
2408
|
-
https://github.com/googlei18n/ufo2ft/issues/266).
|
|
2409
|
-
- [otTables] Added support for fixing offset overflow errors occurring inside
|
|
2410
|
-
``MarkBasePos`` subtables (#1297).
|
|
2411
|
-
- [subset] Write the default output file extension based on ``--flavor`` option,
|
|
2412
|
-
or the value of ``TTFont.sfntVersion`` (d7ac0ad).
|
|
2413
|
-
- [unicodedata] Updated Blocks, Scripts and ScriptExtensions for Unicode 11
|
|
2414
|
-
(452c85e).
|
|
2415
|
-
- [xmlWriter] Added context manager to XMLWriter class to autoclose file
|
|
2416
|
-
descriptor on exit (#1290).
|
|
2417
|
-
- [psCharStrings] Optimize the charstring's bytecode by encoding as integers
|
|
2418
|
-
all float values that have no decimal portion (8d7774a).
|
|
2419
|
-
- [ttFont] Fixed missing import of ``TTLibError`` exception (#1285).
|
|
2420
|
-
- [feaLib] Allow any languages other than ``dflt`` under ``DFLT`` script
|
|
2421
|
-
(#1278, #1292).
|
|
2422
|
-
|
|
2423
|
-
3.28.0 (released 2018-06-19)
|
|
2424
|
-
----------------------------
|
|
2425
|
-
|
|
2426
|
-
- [featureVars] Added experimental module to build ``FeatureVariations``
|
|
2427
|
-
tables. Still needs to be hooked up to ``varLib.build`` (#1240).
|
|
2428
|
-
- [fixedTools] Added ``otRound`` to round floats to nearest integer towards
|
|
2429
|
-
positive Infinity. This is now used where we deal with visual data like X/Y
|
|
2430
|
-
coordinates, advance widths/heights, variation deltas, and similar (#1274,
|
|
2431
|
-
#1248).
|
|
2432
|
-
- [subset] Improved GSUB closure memoize algorithm.
|
|
2433
|
-
- [varLib.models] Fixed regression in model resolution (180124, #1269).
|
|
2434
|
-
- [feaLib.ast] Fixed error when converting ``SubtableStatement`` to string
|
|
2435
|
-
(#1275).
|
|
2436
|
-
- [varLib.mutator] Set ``OS/2.usWeightClass`` and ``usWidthClass``, and
|
|
2437
|
-
``post.italicAngle`` based on the 'wght', 'wdth' and 'slnt' axis values
|
|
2438
|
-
(#1276, #1264).
|
|
2439
|
-
- [py23/loggingTools] Don't automatically set ``logging.lastResort`` handler
|
|
2440
|
-
on py27. Moved ``LastResortLogger`` to the ``loggingTools`` module (#1277).
|
|
2441
|
-
|
|
2442
|
-
3.27.1 (released 2018-06-11)
|
|
2443
|
-
----------------------------
|
|
2444
|
-
|
|
2445
|
-
- [ttGlyphPen] Issue a warning and skip building non-existing components
|
|
2446
|
-
(https://github.com/googlei18n/fontmake/issues/411).
|
|
2447
|
-
- [tests] Fixed issue running ttx_test.py from a tagged commit.
|
|
2448
|
-
|
|
2449
|
-
3.27.0 (released 2018-06-11)
|
|
2450
|
-
----------------------------
|
|
2451
|
-
|
|
2452
|
-
- [designspaceLib] Added new ``conditionSet`` element to ``rule`` element in
|
|
2453
|
-
designspace document. Bumped ``format`` attribute to ``4.0`` (previously,
|
|
2454
|
-
it was formatted as an integer). Removed ``checkDefault``, ``checkAxes``
|
|
2455
|
-
methods, and any kind of guessing about the axes when the ``<axes>`` element
|
|
2456
|
-
is missing. The default master is expected at the intersection of all default
|
|
2457
|
-
values for each axis (#1254, #1255, #1267).
|
|
2458
|
-
- [cffLib] Fixed issues when compiling CFF2 or converting from CFF when the
|
|
2459
|
-
font has an FDArray (#1211, #1271).
|
|
2460
|
-
- [varLib] Avoid attempting to build ``cvar`` table when ``glyf`` table is not
|
|
2461
|
-
present, as is the case for CFF2 fonts.
|
|
2462
|
-
- [subset] Handle None coverages in MarkGlyphSets; revert commit 02616ab that
|
|
2463
|
-
sets empty Coverage tables in MarkGlyphSets to None, to make OTS happy.
|
|
2464
|
-
- [ttFont] Allow to build glyph order from ``maxp.numGlyphs`` when ``post`` or
|
|
2465
|
-
``cmap`` are missing.
|
|
2466
|
-
- [ttFont] Added ``__len__`` method to ``_TTGlyphSet``.
|
|
2467
|
-
- [glyf] Ensure ``GlyphCoordinates`` never overflow signed shorts (#1230).
|
|
2468
|
-
- [py23] Added alias for ``itertools.izip`` shadowing the built-in ``zip``.
|
|
2469
|
-
- [loggingTools] Memoize ``log`` property of ``LogMixin`` class (fbab12).
|
|
2470
|
-
- [ttx] Impoved test coverage (#1261).
|
|
2471
|
-
- [Snippets] Addded script to append a suffix to all family names in a font.
|
|
2472
|
-
- [varLib.plot] Make it work with matplotlib >= 2.1 (b38e2b).
|
|
2473
|
-
|
|
2474
|
-
3.26.0 (released 2018-05-03)
|
|
2475
|
-
----------------------------
|
|
2476
|
-
|
|
2477
|
-
- [designspace] Added a new optional ``layer`` attribute to the source element,
|
|
2478
|
-
and a corresponding ``layerName`` attribute to the ``SourceDescriptor``
|
|
2479
|
-
object (#1253).
|
|
2480
|
-
Added ``conditionset`` element to the ``rule`` element to the spec, but not
|
|
2481
|
-
implemented in designspace reader/writer yet (#1254).
|
|
2482
|
-
- [varLib.models] Refine modeling one last time (0ecf5c5).
|
|
2483
|
-
- [otBase] Fixed sharing of tables referred to by different offset sizes
|
|
2484
|
-
(795f2f9).
|
|
2485
|
-
- [subset] Don't drop a GDEF that only has VarStore (fc819d6). Set to None
|
|
2486
|
-
empty Coverage tables in MarkGlyphSets (02616ab).
|
|
2487
|
-
- [varLib]: Added ``--master-finder`` command-line option (#1249).
|
|
2488
|
-
- [varLib.mutator] Prune fvar nameIDs from instance's name table (#1245).
|
|
2489
|
-
- [otTables] Allow decompiling bad ClassDef tables with invalid format, with
|
|
2490
|
-
warning (#1236).
|
|
2491
|
-
- [varLib] Make STAT v1.2 and reuse nameIDs from fvar table (#1242).
|
|
2492
|
-
- [varLib.plot] Show master locations. Set axis limits to -1, +1.
|
|
2493
|
-
- [subset] Handle HVAR direct mapping. Passthrough 'cvar'.
|
|
2494
|
-
Added ``--font-number`` command-line option for collections.
|
|
2495
|
-
- [t1Lib] Allow a text encoding to be specified when parsing a Type 1 font
|
|
2496
|
-
(#1234). Added ``kind`` argument to T1Font constructor (c5c161c).
|
|
2497
|
-
- [ttLib] Added context manager API to ``TTFont`` class, so it can be used in
|
|
2498
|
-
``with`` statements to auto-close the file when exiting the context (#1232).
|
|
2499
|
-
|
|
2500
|
-
3.25.0 (released 2018-04-03)
|
|
2501
|
-
----------------------------
|
|
2502
|
-
|
|
2503
|
-
- [varLib] Improved support-resolution algorithm. Previously, the on-axis
|
|
2504
|
-
masters would always cut the space. They don't anymore. That's more
|
|
2505
|
-
consistent, and fixes the main issue Erik showed at TYPO Labs 2017.
|
|
2506
|
-
Any varfont built that had an unusual master configuration will change
|
|
2507
|
-
when rebuilt (42bef17, a523a697,
|
|
2508
|
-
https://github.com/googlei18n/fontmake/issues/264).
|
|
2509
|
-
- [varLib.models] Added a ``main()`` entry point, that takes positions and
|
|
2510
|
-
prints model results.
|
|
2511
|
-
- [varLib.plot] Added new module to plot a designspace's
|
|
2512
|
-
VariationModel. Requires ``matplotlib``.
|
|
2513
|
-
- [varLib.mutator] Added -o option to specify output file path (2ef60fa).
|
|
2514
|
-
- [otTables] Fixed IndexError while pruning of HVAR pre-write (6b6c34a).
|
|
2515
|
-
- [varLib.models] Convert delta array to floats if values overflows signed
|
|
2516
|
-
short integer (0055f94).
|
|
2517
|
-
|
|
2518
|
-
3.24.2 (released 2018-03-26)
|
|
2519
|
-
----------------------------
|
|
2520
|
-
|
|
2521
|
-
- [otBase] Don't fail during ``ValueRecord`` copy if src has more items.
|
|
2522
|
-
We drop hinting in the subsetter by simply changing ValueFormat, without
|
|
2523
|
-
cleaning up the actual ValueRecords. This was causing assertion error if
|
|
2524
|
-
a variable font was subsetted without hinting and then passed directly to
|
|
2525
|
-
the mutator for instantiation without first it saving to disk.
|
|
2526
|
-
|
|
2527
|
-
3.24.1 (released 2018-03-06)
|
|
2528
|
-
----------------------------
|
|
2529
|
-
|
|
2530
|
-
- [varLib] Don't remap the same ``DeviceTable`` twice in VarStore optimizer
|
|
2531
|
-
(#1206).
|
|
2532
|
-
- [varLib] Add ``--disable-iup`` option to ``fonttools varLib`` script,
|
|
2533
|
-
and a ``optimize=True`` keyword argument to ``varLib.build`` function,
|
|
2534
|
-
to optionally disable IUP optimization while building varfonts.
|
|
2535
|
-
- [ttCollection] Fixed issue while decompiling ttc with python3 (#1207).
|
|
2536
|
-
|
|
2537
|
-
3.24.0 (released 2018-03-01)
|
|
2538
|
-
----------------------------
|
|
2539
|
-
|
|
2540
|
-
- [ttGlyphPen] Decompose composite glyphs if any components' transform is too
|
|
2541
|
-
large to fit a ``F2Dot14`` value, or clamp transform values that are
|
|
2542
|
-
(almost) equal to +2.0 to make them fit and avoid decomposing (#1200,
|
|
2543
|
-
#1204, #1205).
|
|
2544
|
-
- [ttx] Added new ``-g`` option to dump glyphs from the ``glyf`` table
|
|
2545
|
-
splitted as individual ttx files (#153, #1035, #1132, #1202).
|
|
2546
|
-
- Copied ``ufoLib.filenames`` module to ``fontTools.misc.filenames``, used
|
|
2547
|
-
for the ttx split-glyphs option (#1202).
|
|
2548
|
-
- [feaLib] Added support for ``cvParameters`` blocks in Character Variant
|
|
2549
|
-
feautures ``cv01-cv99`` (#860, #1169).
|
|
2550
|
-
- [Snippets] Added ``checksum.py`` script to generate/check SHA1 hash of
|
|
2551
|
-
ttx files (#1197).
|
|
2552
|
-
- [varLib.mutator] Fixed issue while instantiating some variable fonts
|
|
2553
|
-
whereby the horizontal advance width computed from ``gvar`` phantom points
|
|
2554
|
-
could turn up to be negative (#1198).
|
|
2555
|
-
- [varLib/subset] Fixed issue with subsetting GPOS variation data not
|
|
2556
|
-
picking up ``ValueRecord`` ``Device`` objects (54fd71f).
|
|
2557
|
-
- [feaLib/voltLib] In all AST elements, the ``location`` is no longer a
|
|
2558
|
-
required positional argument, but an optional kewyord argument (defaults
|
|
2559
|
-
to ``None``). This will make it easier to construct feature AST from
|
|
2560
|
-
code (#1201).
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
3.23.0 (released 2018-02-26)
|
|
2564
|
-
----------------------------
|
|
2565
|
-
|
|
2566
|
-
- [designspaceLib] Added an optional ``lib`` element to the designspace as a
|
|
2567
|
-
whole, as well as to the instance elements, to store arbitrary data in a
|
|
2568
|
-
property list dictionary, similar to the UFO's ``lib``. Added an optional
|
|
2569
|
-
``font`` attribute to the ``SourceDescriptor``, to allow operating on
|
|
2570
|
-
in-memory font objects (#1175).
|
|
2571
|
-
- [cffLib] Fixed issue with lazy-loading of attributes when attempting to
|
|
2572
|
-
set the CFF TopDict.Encoding (#1177, #1187).
|
|
2573
|
-
- [ttx] Fixed regression introduced in 3.22.0 that affected the split tables
|
|
2574
|
-
``-s`` option (#1188).
|
|
2575
|
-
- [feaLib] Added ``IncludedFeaNotFound`` custom exception subclass, raised
|
|
2576
|
-
when an included feature file cannot be found (#1186).
|
|
2577
|
-
- [otTables] Changed ``VarIdxMap`` to use glyph names internally instead of
|
|
2578
|
-
glyph indexes. The old ttx dumps of HVAR/VVAR tables that contain indexes
|
|
2579
|
-
can still be imported (21cbab8, 38a0ffb).
|
|
2580
|
-
- [varLib] Implemented VarStore optimizer (#1184).
|
|
2581
|
-
- [subset] Implemented pruning of GDEF VarStore, HVAR and MVAR (#1179).
|
|
2582
|
-
- [sfnt] Restore backward compatiblity with ``numFonts`` attribute of
|
|
2583
|
-
``SFNTReader`` object (#1181).
|
|
2584
|
-
- [merge] Initial support for merging ``LangSysRecords`` (#1180).
|
|
2585
|
-
- [ttCollection] don't seek(0) when writing to possibly unseekable strems.
|
|
2586
|
-
- [subset] Keep all ``--name-IDs`` from 0 to 6 by default (#1170, #605, #114).
|
|
2587
|
-
- [cffLib] Added ``width`` module to calculate optimal CFF default and
|
|
2588
|
-
nominal glyph widths.
|
|
2589
|
-
- [varLib] Don’t fail if STAT already in the master fonts (#1166).
|
|
2590
|
-
|
|
2591
|
-
3.22.0 (released 2018-02-04)
|
|
2592
|
-
----------------------------
|
|
2593
|
-
|
|
2594
|
-
- [subset] Support subsetting ``endchar`` acting as ``seac``-like components
|
|
2595
|
-
in ``CFF`` (fixes #1162).
|
|
2596
|
-
- [feaLib] Allow to build from pre-parsed ``ast.FeatureFile`` object.
|
|
2597
|
-
Added ``tables`` argument to only build some tables instead of all (#1159,
|
|
2598
|
-
#1163).
|
|
2599
|
-
- [textTools] Replaced ``safeEval`` with ``ast.literal_eval`` (#1139).
|
|
2600
|
-
- [feaLib] Added option to the parser to not resolve ``include`` statements
|
|
2601
|
-
(#1154).
|
|
2602
|
-
- [ttLib] Added new ``ttCollection`` module to read/write TrueType and
|
|
2603
|
-
OpenType Collections. Exports a ``TTCollection`` class with a ``fonts``
|
|
2604
|
-
attribute containing a list of ``TTFont`` instances, the methods ``save``
|
|
2605
|
-
and ``saveXML``, plus some list-like methods. The ``importXML`` method is
|
|
2606
|
-
not implemented yet (#17).
|
|
2607
|
-
- [unicodeadata] Added ``ot_tag_to_script`` function that converts from
|
|
2608
|
-
OpenType script tag to Unicode script code.
|
|
2609
|
-
- Added new ``designspaceLib`` subpackage, originally from Erik Van Blokland's
|
|
2610
|
-
``designSpaceDocument``: https://github.com/LettError/designSpaceDocument
|
|
2611
|
-
NOTE: this is not yet used internally by varLib, and the API may be subject
|
|
2612
|
-
to changes (#911, #1110, LettError/designSpaceDocument#28).
|
|
2613
|
-
- Added new FontTools icon images (8ee7c32).
|
|
2614
|
-
- [unicodedata] Added ``script_horizontal_direction`` function that returns
|
|
2615
|
-
either "LTR" or "RTL" given a unicode script code.
|
|
2616
|
-
- [otConverters] Don't write descriptive name string as XML comment if the
|
|
2617
|
-
NameID value is 0 (== NULL) (#1151, #1152).
|
|
2618
|
-
- [unicodedata] Add ``ot_tags_from_script`` function to get the list of
|
|
2619
|
-
OpenType script tags associated with unicode script code (#1150).
|
|
2620
|
-
- [feaLib] Don't error when "enumerated" kern pairs conflict with preceding
|
|
2621
|
-
single pairs; emit warning and chose the first value (#1147, #1148).
|
|
2622
|
-
- [loggingTools] In ``CapturingLogHandler.assertRegex`` method, match the
|
|
2623
|
-
fully formatted log message.
|
|
2624
|
-
- [sbix] Fixed TypeError when concatenating str and bytes (#1154).
|
|
2625
|
-
- [bezierTools] Implemented cusp support and removed ``approximate_fallback``
|
|
2626
|
-
arg in ``calcQuadraticArcLength``. Added ``calcCubicArcLength`` (#1142).
|
|
2627
|
-
|
|
2628
|
-
3.21.2 (released 2018-01-08)
|
|
2629
|
-
----------------------------
|
|
2630
|
-
|
|
2631
|
-
- [varLib] Fixed merging PairPos Format1/2 with missing subtables (#1125).
|
|
2632
|
-
|
|
2633
|
-
3.21.1 (released 2018-01-03)
|
|
2634
|
-
----------------------------
|
|
2635
|
-
|
|
2636
|
-
- [feaLib] Allow mixed single/multiple substitutions (#612)
|
|
2637
|
-
- Added missing ``*.afm`` test assets to MAINFEST.in (#1137).
|
|
2638
|
-
- Fixed dumping ``SVG`` tables containing color palettes (#1124).
|
|
2639
|
-
|
|
2640
|
-
3.21.0 (released 2017-12-18)
|
|
2641
|
-
----------------------------
|
|
2642
|
-
|
|
2643
|
-
- [cmap] when compiling format6 subtable, don't assume gid0 is always called
|
|
2644
|
-
'.notdef' (1e42224).
|
|
2645
|
-
- [ot] Allow decompiling fonts with bad Coverage format number (1aafae8).
|
|
2646
|
-
- Change FontTools licence to MIT (#1127).
|
|
2647
|
-
- [post] Prune extra names already in standard Mac set (df1e8c7).
|
|
2648
|
-
- [subset] Delete empty SubrsIndex after subsetting (#994, #1118).
|
|
2649
|
-
- [varLib] Don't share points in cvar by default, as it currently fails on
|
|
2650
|
-
some browsers (#1113).
|
|
2651
|
-
- [afmLib] Make poor old afmLib work on python3.
|
|
2652
|
-
|
|
2653
|
-
3.20.1 (released 2017-11-22)
|
|
2654
|
-
----------------------------
|
|
2655
|
-
|
|
2656
|
-
- [unicodedata] Fixed issue with ``script`` and ``script_extension`` functions
|
|
2657
|
-
returning inconsistent short vs long names. They both return the short four-
|
|
2658
|
-
letter script codes now. Added ``script_name`` and ``script_code`` functions
|
|
2659
|
-
to look up the long human-readable script name from the script code, and
|
|
2660
|
-
viceversa (#1109, #1111).
|
|
2661
|
-
|
|
2662
|
-
3.20.0 (released 2017-11-21)
|
|
2663
|
-
----------------------------
|
|
2664
|
-
|
|
2665
|
-
- [unicodedata] Addded new module ``fontTools.unicodedata`` which exports the
|
|
2666
|
-
same interface as the built-in ``unicodedata`` module, with the addition of
|
|
2667
|
-
a few functions that are missing from the latter, such as ``script``,
|
|
2668
|
-
``script_extension`` and ``block``. Added a ``MetaTools/buildUCD.py`` script
|
|
2669
|
-
to download and parse data files from the Unicode Character Database and
|
|
2670
|
-
generate python modules containing lists of ranges and property values.
|
|
2671
|
-
- [feaLib] Added ``__str__`` method to all ``ast`` elements (delegates to the
|
|
2672
|
-
``asFea`` method).
|
|
2673
|
-
- [feaLib] ``Parser`` constructor now accepts a ``glyphNames`` iterable
|
|
2674
|
-
instead of ``glyphMap`` dict. The latter still works but with a pending
|
|
2675
|
-
deprecation warning (#1104).
|
|
2676
|
-
- [bezierTools] Added arc length calculation functions originally from
|
|
2677
|
-
``pens.perimeterPen`` module (#1101).
|
|
2678
|
-
- [varLib] Started generating STAT table (8af4309). Right now it just reflects
|
|
2679
|
-
the axes, and even that with certain limitations:
|
|
2680
|
-
* AxisOrdering is set to the order axes are defined,
|
|
2681
|
-
* Name-table entries are not shared with fvar.
|
|
2682
|
-
- [py23] Added backports for ``redirect_stdout`` and ``redirect_stderr``
|
|
2683
|
-
context managers (#1097).
|
|
2684
|
-
- [Graphite] Fixed some round-trip bugs (#1093).
|
|
2685
|
-
|
|
2686
|
-
3.19.0 (released 2017-11-06)
|
|
2687
|
-
----------------------------
|
|
2688
|
-
|
|
2689
|
-
- [varLib] Try set of used points instead of all points when testing whether to
|
|
2690
|
-
share points between tuples (#1090).
|
|
2691
|
-
- [CFF2] Fixed issue with reading/writing PrivateDict BlueValues to TTX file.
|
|
2692
|
-
Read the commit message 8b02b5a and issue #1030 for more details.
|
|
2693
|
-
NOTE: this change invalidates all the TTX files containing CFF2 tables
|
|
2694
|
-
that where dumped with previous verisons of fonttools.
|
|
2695
|
-
CFF2 Subr items can have values on the stack after the last operator, thus
|
|
2696
|
-
a ``CFF2Subr`` class was added to accommodate this (#1091).
|
|
2697
|
-
- [_k_e_r_n] Fixed compilation of AAT kern version=1.0 tables (#1089, #1094)
|
|
2698
|
-
- [ttLib] Added getBestCmap() convenience method to TTFont class and cmap table
|
|
2699
|
-
class that returns a preferred Unicode cmap subtable given a list of options
|
|
2700
|
-
(#1092).
|
|
2701
|
-
- [morx] Emit more meaningful subtable flags. Implement InsertionMorphAction
|
|
2702
|
-
|
|
2703
|
-
3.18.0 (released 2017-10-30)
|
|
2704
|
-
----------------------------
|
|
2705
|
-
|
|
2706
|
-
- [feaLib] Fixed writing back nested glyph classes (#1086).
|
|
2707
|
-
- [TupleVariation] Reactivated shared points logic, bugfixes (#1009).
|
|
2708
|
-
- [AAT] Implemented ``morx`` ligature subtables (#1082).
|
|
2709
|
-
- [reverseContourPen] Keep duplicate lineTo following a moveTo (#1080,
|
|
2710
|
-
https://github.com/googlei18n/cu2qu/issues/51).
|
|
2711
|
-
- [varLib.mutator] Suport instantiation of GPOS, GDEF and MVAR (#1079).
|
|
2712
|
-
- [sstruct] Fixed issue with ``unicode_literals`` and ``struct`` module in
|
|
2713
|
-
old versions of python 2.7 (#993).
|
|
2714
|
-
|
|
2715
|
-
3.17.0 (released 2017-10-16)
|
|
2716
|
-
----------------------------
|
|
2717
|
-
|
|
2718
|
-
- [svgPathPen] Added an ``SVGPathPen`` that translates segment pen commands
|
|
2719
|
-
into SVG path descriptions. Copied from Tal Leming's ``ufo2svg.svgPathPen``
|
|
2720
|
-
https://github.com/typesupply/ufo2svg/blob/d69f992/Lib/ufo2svg/svgPathPen.py
|
|
2721
|
-
- [reverseContourPen] Added ``ReverseContourPen``, a filter pen that draws
|
|
2722
|
-
contours with the winding direction reversed, while keeping the starting
|
|
2723
|
-
point (#1071).
|
|
2724
|
-
- [filterPen] Added ``ContourFilterPen`` to manipulate contours as a whole
|
|
2725
|
-
rather than segment by segment.
|
|
2726
|
-
- [arrayTools] Added ``Vector`` class to apply math operations on an array
|
|
2727
|
-
of numbers, and ``pairwise`` function to loop over pairs of items in an
|
|
2728
|
-
iterable.
|
|
2729
|
-
- [varLib] Added support for building and interpolation of ``cvar`` table
|
|
2730
|
-
(f874cf6, a25a401).
|
|
2731
|
-
|
|
2732
|
-
3.16.0 (released 2017-10-03)
|
|
2733
|
-
----------------------------
|
|
2734
|
-
|
|
2735
|
-
- [head] Try using ``SOURCE_DATE_EPOCH`` environment variable when setting
|
|
2736
|
-
the ``head`` modified timestamp to ensure reproducible builds (#1063).
|
|
2737
|
-
See https://reproducible-builds.org/specs/source-date-epoch/
|
|
2738
|
-
- [VTT] Decode VTT's ``TSI*`` tables text as UTF-8 (#1060).
|
|
2739
|
-
- Added support for Graphite font tables: Feat, Glat, Gloc, Silf and Sill.
|
|
2740
|
-
Thanks @mhosken! (#1054).
|
|
2741
|
-
- [varLib] Default to using axis "name" attribute if "labelname" element
|
|
2742
|
-
is missing (588f524).
|
|
2743
|
-
- [merge] Added support for merging Script records. Remove unused features
|
|
2744
|
-
and lookups after merge (d802580, 556508b).
|
|
2745
|
-
- Added ``fontTools.svgLib`` package. Includes a parser for SVG Paths that
|
|
2746
|
-
supports the Pen protocol (#1051). Also, added a snippet to convert SVG
|
|
2747
|
-
outlines to UFO GLIF (#1053).
|
|
2748
|
-
- [AAT] Added support for ``ankr``, ``bsln``, ``mort``, ``morx``, ``gcid``,
|
|
2749
|
-
and ``cidg``.
|
|
2750
|
-
- [subset] Implemented subsetting of ``prop``, ``opbd``, ``bsln``, ``lcar``.
|
|
2751
|
-
|
|
2752
|
-
3.15.1 (released 2017-08-18)
|
|
2753
|
-
----------------------------
|
|
2754
|
-
|
|
2755
|
-
- [otConverters] Implemented ``__add__`` and ``__radd__`` methods on
|
|
2756
|
-
``otConverters._LazyList`` that decompile a lazy list before adding
|
|
2757
|
-
it to another list or ``_LazyList`` instance. Fixes an ``AttributeError``
|
|
2758
|
-
in the ``subset`` module when attempting to sum ``_LazyList`` objects
|
|
2759
|
-
(6ef48bd2, 1aef1683).
|
|
2760
|
-
- [AAT] Support the `opbd` table with optical bounds (a47f6588).
|
|
2761
|
-
- [AAT] Support `prop` table with glyph properties (d05617b4).
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
3.15.0 (released 2017-08-17)
|
|
2765
|
-
----------------------------
|
|
2766
|
-
|
|
2767
|
-
- [AAT] Added support for AAT lookups. The ``lcar`` table can be decompiled
|
|
2768
|
-
and recompiled; futher work needed to handle ``morx`` table (#1025).
|
|
2769
|
-
- [subset] Keep (empty) DefaultLangSys for Script 'DFLT' (6eb807b5).
|
|
2770
|
-
- [subset] Support GSUB/GPOS.FeatureVariations (fe01d87b).
|
|
2771
|
-
- [varLib] In ``models.supportScalars``, ignore an axis when its peak value
|
|
2772
|
-
is 0 (fixes #1020).
|
|
2773
|
-
- [varLib] Add default mappings to all axes in avar to fix rendering issue
|
|
2774
|
-
in some rasterizers (19c4b377, 04eacf13).
|
|
2775
|
-
- [varLib] Flatten multiple tail PairPosFormat2 subtables before merging
|
|
2776
|
-
(c55ef525).
|
|
2777
|
-
- [ttLib] Added support for recalculating font bounding box in ``CFF`` and
|
|
2778
|
-
``head`` tables, and min/max values in ``hhea`` and ``vhea`` tables (#970).
|
|
2779
|
-
|
|
2780
|
-
3.14.0 (released 2017-07-31)
|
|
2781
|
-
----------------------------
|
|
2782
|
-
|
|
2783
|
-
- [varLib.merger] Remove Extensions subtables before merging (f7c20cf8).
|
|
2784
|
-
- [varLib] Initialize the avar segment map with required default entries
|
|
2785
|
-
(#1014).
|
|
2786
|
-
- [varLib] Implemented optimal IUP optmiziation (#1019).
|
|
2787
|
-
- [otData] Add ``AxisValueFormat4`` for STAT table v1.2 from OT v1.8.2
|
|
2788
|
-
(#1015).
|
|
2789
|
-
- [name] Fixed BCP46 language tag for Mac langID=9: 'si' -> 'sl'.
|
|
2790
|
-
- [subset] Return value from ``_DehintingT2Decompiler.op_hintmask``
|
|
2791
|
-
(c0d672ba).
|
|
2792
|
-
- [cffLib] Allow to get TopDict by index as well as by name (dca96c9c).
|
|
2793
|
-
- [cffLib] Removed global ``isCFF2`` state; use one set of classes for
|
|
2794
|
-
both CFF and CFF2, maintaining backward compatibility existing code (#1007).
|
|
2795
|
-
- [cffLib] Deprecated maxstack operator, per OpenType spec update 1.8.1.
|
|
2796
|
-
- [cffLib] Added missing default (-100) for UnderlinePosition (#983).
|
|
2797
|
-
- [feaLib] Enable setting nameIDs greater than 255 (#1003).
|
|
2798
|
-
- [varLib] Recalculate ValueFormat when merging SinglePos (#996).
|
|
2799
|
-
- [varLib] Do not emit MVAR if there are no entries in the variation store
|
|
2800
|
-
(#987).
|
|
2801
|
-
- [ttx] For ``-x`` option, pad with space if table tag length is < 4.
|
|
2802
|
-
|
|
2803
|
-
3.13.1 (released 2017-05-30)
|
|
2804
|
-
----------------------------
|
|
2805
|
-
|
|
2806
|
-
- [feaLib.builder] Removed duplicate lookups optimization. The original
|
|
2807
|
-
lookup order and semantics of the feature file are preserved (#976).
|
|
2808
|
-
|
|
2809
|
-
3.13.0 (released 2017-05-24)
|
|
2810
|
-
----------------------------
|
|
2811
|
-
|
|
2812
|
-
- [varLib.mutator] Implement IUP optimization (#969).
|
|
2813
|
-
- [_g_l_y_f.GlyphCoordinates] Changed ``__bool__()`` semantics to match those
|
|
2814
|
-
of other iterables (e46f949). Removed ``__abs__()`` (3db5be2).
|
|
2815
|
-
- [varLib.interpolate_layout] Added ``mapped`` keyword argument to
|
|
2816
|
-
``interpolate_layout`` to allow disabling avar mapping: if False (default),
|
|
2817
|
-
the location is mapped using the map element of the axes in designspace file;
|
|
2818
|
-
if True, it is assumed that location is in designspace's internal space and
|
|
2819
|
-
no mapping is performed (#950, #975).
|
|
2820
|
-
- [varLib.interpolate_layout] Import designspace-loading logic from varLib.
|
|
2821
|
-
- [varLib] Fixed bug with recombining PairPosClass2 subtables (81498e5, #914).
|
|
2822
|
-
- [cffLib.specializer] When copying iterables, cast to list (462b7f86).
|
|
2823
|
-
|
|
2824
|
-
3.12.1 (released 2017-05-18)
|
|
2825
|
-
----------------------------
|
|
2826
|
-
|
|
2827
|
-
- [pens.t2CharStringPen] Fixed AttributeError when calling addComponent in
|
|
2828
|
-
T2CharStringPen (#965).
|
|
2829
|
-
|
|
2830
|
-
3.12.0 (released 2017-05-17)
|
|
2831
|
-
----------------------------
|
|
2832
|
-
|
|
2833
|
-
- [cffLib.specializer] Added new ``specializer`` module to optimize CFF
|
|
2834
|
-
charstrings, used by the T2CharStringPen (#948).
|
|
2835
|
-
- [varLib.mutator] Sort glyphs by component depth before calculating composite
|
|
2836
|
-
glyphs' bounding boxes to ensure deltas are correctly caclulated (#945).
|
|
2837
|
-
- [_g_l_y_f] Fixed loss of precision in GlyphCoordinates by using 'd' (double)
|
|
2838
|
-
instead of 'f' (float) as ``array.array`` typecode (#963, #964).
|
|
2839
|
-
|
|
2840
|
-
3.11.0 (released 2017-05-03)
|
|
2841
|
-
----------------------------
|
|
2842
|
-
|
|
2843
|
-
- [t2CharStringPen] Initial support for specialized Type2 path operators:
|
|
2844
|
-
vmoveto, hmoveto, vlineto, hlineto, vvcurveto, hhcurveto, vhcurveto and
|
|
2845
|
-
hvcurveto. This should produce more compact charstrings (#940, #403).
|
|
2846
|
-
- [Doc] Added Sphinx sources for the documentation. Thanks @gferreira (#935).
|
|
2847
|
-
- [fvar] Expose flags in XML (#932)
|
|
2848
|
-
- [name] Add helper function for building multi-lingual names (#921)
|
|
2849
|
-
- [varLib] Fixed kern merging when a PairPosFormat2 has ClassDef1 with glyphs
|
|
2850
|
-
that are NOT present in the Coverage (1b5e1c4, #939).
|
|
2851
|
-
- [varLib] Fixed non-deterministic ClassDef order with PY3 (f056c12, #927).
|
|
2852
|
-
- [feLib] Throw an error when the same glyph is defined in multiple mark
|
|
2853
|
-
classes within the same lookup (3e3ff00, #453).
|
|
2854
|
-
|
|
2855
|
-
3.10.0 (released 2017-04-14)
|
|
2856
|
-
----------------------------
|
|
2857
|
-
|
|
2858
|
-
- [varLib] Added support for building ``avar`` table, using the designspace
|
|
2859
|
-
``<map>`` elements.
|
|
2860
|
-
- [varLib] Removed unused ``build(..., axisMap)`` argument. Axis map should
|
|
2861
|
-
be specified in designspace file now. We do not accept nonstandard axes
|
|
2862
|
-
if ``<axes>`` element is not present.
|
|
2863
|
-
- [varLib] Removed "custom" axis from the ``standard_axis_map``. This was
|
|
2864
|
-
added before when glyphsLib was always exporting the (unused) custom axis.
|
|
2865
|
-
- [varLib] Added partial support for building ``MVAR`` table; does not
|
|
2866
|
-
implement ``gasp`` table variations yet.
|
|
2867
|
-
- [pens] Added FilterPen base class, for pens that control another pen;
|
|
2868
|
-
factored out ``addComponent`` method from BasePen into a separate abstract
|
|
2869
|
-
DecomposingPen class; added DecomposingRecordingPen, which records
|
|
2870
|
-
components decomposed as regular contours.
|
|
2871
|
-
- [TSI1] Fixed computation of the textLength of VTT private tables (#913).
|
|
2872
|
-
- [loggingTools] Added ``LogMixin`` class providing a ``log`` property to
|
|
2873
|
-
subclasses, which returns a ``logging.Logger`` named after the latter.
|
|
2874
|
-
- [loggingTools] Added ``assertRegex`` method to ``CapturingLogHandler``.
|
|
2875
|
-
- [py23] Added backport for python 3's ``types.SimpleNamespace`` class.
|
|
2876
|
-
- [EBLC] Fixed issue with python 3 ``zip`` iterator.
|
|
2877
|
-
|
|
2878
|
-
3.9.2 (released 2017-04-08)
|
|
2879
|
-
---------------------------
|
|
2880
|
-
|
|
2881
|
-
- [pens] Added pen to draw glyphs using WxPython ``GraphicsPath`` class:
|
|
2882
|
-
https://wxpython.org/docs/api/wx.GraphicsPath-class.html
|
|
2883
|
-
- [varLib.merger] Fixed issue with recombining multiple PairPosFormat2
|
|
2884
|
-
subtables (#888)
|
|
2885
|
-
- [varLib] Do not encode gvar deltas that are all zeroes, or if all values
|
|
2886
|
-
are smaller than tolerance.
|
|
2887
|
-
- [ttLib] _TTGlyphSet glyphs now also have ``height`` and ``tsb`` (top
|
|
2888
|
-
side bearing) attributes from the ``vmtx`` table, if present.
|
|
2889
|
-
- [glyf] In ``GlyphCoordintes`` class, added ``__bool__`` / ``__nonzero__``
|
|
2890
|
-
methods, and ``array`` property to get raw array.
|
|
2891
|
-
- [ttx] Support reading TTX files with BOM (#896)
|
|
2892
|
-
- [CFF2] Fixed the reporting of the number of regions in the font.
|
|
2893
|
-
|
|
2894
|
-
3.9.1 (released 2017-03-20)
|
|
2895
|
-
---------------------------
|
|
2896
|
-
|
|
2897
|
-
- [varLib.merger] Fixed issue while recombining multiple PairPosFormat2
|
|
2898
|
-
subtables if they were split because of offset overflows (9798c30).
|
|
2899
|
-
- [varLib.merger] Only merge multiple PairPosFormat1 subtables if there is
|
|
2900
|
-
at least one of the fonts with a non-empty Format1 subtable (0f5a46b).
|
|
2901
|
-
- [varLib.merger] Fixed IndexError with empty ClassDef1 in PairPosFormat2
|
|
2902
|
-
(aad0d46).
|
|
2903
|
-
- [varLib.merger] Avoid reusing Class2Record (mutable) objects (e6125b3).
|
|
2904
|
-
- [varLib.merger] Calculate ClassDef1 and ClassDef2's Format when merging
|
|
2905
|
-
PairPosFormat2 (23511fd).
|
|
2906
|
-
- [macUtils] Added missing ttLib import (b05f203).
|
|
2907
|
-
|
|
2908
|
-
3.9.0 (released 2017-03-13)
|
|
2909
|
-
---------------------------
|
|
2910
|
-
|
|
2911
|
-
- [feaLib] Added (partial) support for parsing feature file comments ``# ...``
|
|
2912
|
-
appearing in between statements (#879).
|
|
2913
|
-
- [feaLib] Cleaned up syntax tree for FeatureNames.
|
|
2914
|
-
- [ttLib] Added support for reading/writing ``CFF2`` table (thanks to
|
|
2915
|
-
@readroberts at Adobe), and ``TTFA`` (ttfautohint) table.
|
|
2916
|
-
- [varLib] Fixed regression introduced with 3.8.0 in the calculation of
|
|
2917
|
-
``NumShorts``, i.e. the number of deltas in ItemVariationData's delta sets
|
|
2918
|
-
that use a 16-bit representation (b2825ff).
|
|
2919
|
-
|
|
2920
|
-
3.8.0 (released 2017-03-05)
|
|
2921
|
-
---------------------------
|
|
2922
|
-
|
|
2923
|
-
- New pens: MomentsPen, StatisticsPen, RecordingPen, and TeePen.
|
|
2924
|
-
- [misc] Added new ``fontTools.misc.symfont`` module, for symbolic font
|
|
2925
|
-
statistical analysis; requires ``sympy`` (http://www.sympy.org/en/index.html)
|
|
2926
|
-
- [varLib] Added experimental ``fontTools.varLib.interpolatable`` module for
|
|
2927
|
-
finding wrong contour order between different masters
|
|
2928
|
-
- [varLib] designspace.load() now returns a dictionary, instead of a tuple,
|
|
2929
|
-
and supports <axes> element (#864); the 'masters' item was renamed 'sources',
|
|
2930
|
-
like the <sources> element in the designspace document
|
|
2931
|
-
- [ttLib] Fixed issue with recalculating ``head`` modified timestamp when
|
|
2932
|
-
saving CFF fonts
|
|
2933
|
-
- [ttLib] In TupleVariation, round deltas before compiling (#861, fixed #592)
|
|
2934
|
-
- [feaLib] Ignore duplicate glyphs in classes used as MarkFilteringSet and
|
|
2935
|
-
MarkAttachmentType (#863)
|
|
2936
|
-
- [merge] Changed the ``gasp`` table merge logic so that only the one from
|
|
2937
|
-
the first font is retained, similar to other hinting tables (#862)
|
|
2938
|
-
- [Tests] Added tests for the ``varLib`` package, as well as test fonts
|
|
2939
|
-
from the "Annotated OpenType Specification" (AOTS) to exercise ``ttLib``'s
|
|
2940
|
-
table readers/writers (<https://github.com/adobe-type-tools/aots>)
|
|
2941
|
-
|
|
2942
|
-
3.7.2 (released 2017-02-17)
|
|
2943
|
-
---------------------------
|
|
2944
|
-
|
|
2945
|
-
- [subset] Keep advance widths when stripping ".notdef" glyph outline in
|
|
2946
|
-
CID-keyed CFF fonts (#845)
|
|
2947
|
-
- [feaLib] Zero values now produce the same results as makeotf (#633, #848)
|
|
2948
|
-
- [feaLib] More compact encoding for “Contextual positioning with in-line
|
|
2949
|
-
single positioning rules” (#514)
|
|
2950
|
-
|
|
2951
|
-
3.7.1 (released 2017-02-15)
|
|
2952
|
-
---------------------------
|
|
2953
|
-
|
|
2954
|
-
- [subset] Fixed issue with ``--no-hinting`` option whereby advance widths in
|
|
2955
|
-
Type 2 charstrings were also being stripped (#709, #343)
|
|
2956
|
-
- [feaLib] include statements now resolve relative paths like makeotf (#838)
|
|
2957
|
-
- [feaLib] table ``name`` now handles Unicode codepoints beyond the Basic
|
|
2958
|
-
Multilingual Plane, also supports old-style MacOS platform encodings (#842)
|
|
2959
|
-
- [feaLib] correctly escape string literals when emitting feature syntax (#780)
|
|
2960
|
-
|
|
2961
|
-
3.7.0 (released 2017-02-11)
|
|
2962
|
-
---------------------------
|
|
2963
|
-
|
|
2964
|
-
- [ttx, mtiLib] Preserve ordering of glyph alternates in GSUB type 3 (#833).
|
|
2965
|
-
- [feaLib] Glyph names can have dashes, as per new AFDKO syntax v1.20 (#559).
|
|
2966
|
-
- [feaLib] feaLib.Parser now needs the font's glyph map for parsing.
|
|
2967
|
-
- [varLib] Fix regression where GPOS values were stored as 0.
|
|
2968
|
-
- [varLib] Allow merging of class-based kerning when ClassDefs are different
|
|
2969
|
-
|
|
2970
|
-
3.6.3 (released 2017-02-06)
|
|
2971
|
-
---------------------------
|
|
2972
|
-
|
|
2973
|
-
- [varLib] Fix building variation of PairPosFormat2 (b5c34ce).
|
|
2974
|
-
- Populate defaults even for otTables that have postRead (e45297b).
|
|
2975
|
-
- Fix compiling of MultipleSubstFormat1 with zero 'out' glyphs (b887860).
|
|
2976
|
-
|
|
2977
|
-
3.6.2 (released 2017-01-30)
|
|
2978
|
-
---------------------------
|
|
2979
|
-
|
|
2980
|
-
- [varLib.merger] Fixed "TypeError: reduce() of empty sequence with no
|
|
2981
|
-
initial value" (3717dc6).
|
|
2982
|
-
|
|
2983
|
-
3.6.1 (released 2017-01-28)
|
|
2984
|
-
---------------------------
|
|
2985
|
-
|
|
2986
|
-
- [py23] Fixed unhandled exception occurring at interpreter shutdown in
|
|
2987
|
-
the "last resort" logging handler (972b3e6).
|
|
2988
|
-
- [agl] Ensure all glyph names are of native 'str' type; avoid mixing
|
|
2989
|
-
'str' and 'unicode' in TTFont.glyphOrder (d8c4058).
|
|
2990
|
-
- Fixed inconsistent title levels in README.rst that caused PyPI to
|
|
2991
|
-
incorrectly render the reStructuredText page.
|
|
2992
|
-
|
|
2993
|
-
3.6.0 (released 2017-01-26)
|
|
2994
|
-
---------------------------
|
|
2995
|
-
|
|
2996
|
-
- [varLib] Refactored and improved the variation-font-building process.
|
|
2997
|
-
- Assembly code in the fpgm, prep, and glyf tables is now indented in
|
|
2998
|
-
XML output for improved readability. The ``instruction`` element is
|
|
2999
|
-
written as a simple tag if empty (#819).
|
|
3000
|
-
- [ttx] Fixed 'I/O operation on closed file' error when dumping
|
|
3001
|
-
multiple TTXs to standard output with the '-o -' option.
|
|
3002
|
-
- The unit test modules (``*_test.py``) have been moved outside of the
|
|
3003
|
-
fontTools package to the Tests folder, thus they are no longer
|
|
3004
|
-
installed (#811).
|
|
3005
|
-
|
|
3006
|
-
3.5.0 (released 2017-01-14)
|
|
3007
|
-
---------------------------
|
|
3008
|
-
|
|
3009
|
-
- Font tables read from XML can now be written back to XML with no
|
|
3010
|
-
loss.
|
|
3011
|
-
- GSUB/GPOS LookupType is written out in XML as an element, not
|
|
3012
|
-
comment. (#792)
|
|
3013
|
-
- When parsing cmap table, do not store items mapped to glyph id 0.
|
|
3014
|
-
(#790)
|
|
3015
|
-
- [otlLib] Make ClassDef sorting deterministic. Fixes #766 (7d1ddb2)
|
|
3016
|
-
- [mtiLib] Added unit tests (#787)
|
|
3017
|
-
- [cvar] Implemented cvar table
|
|
3018
|
-
- [gvar] Renamed GlyphVariation to TupleVariation to match OpenType
|
|
3019
|
-
terminology.
|
|
3020
|
-
- [otTables] Handle gracefully empty VarData.Item array when compiling
|
|
3021
|
-
XML. (#797)
|
|
3022
|
-
- [varLib] Re-enabled generation of ``HVAR`` table for fonts with
|
|
3023
|
-
TrueType outlines; removed ``--build-HVAR`` command-line option.
|
|
3024
|
-
- [feaLib] The parser can now be extended to support non-standard
|
|
3025
|
-
statements in FEA code by using a customized Abstract Syntax Tree.
|
|
3026
|
-
See, for example, ``feaLib.builder_test.test_extensions`` and
|
|
3027
|
-
baseClass.feax (#794, fixes #773).
|
|
3028
|
-
- [feaLib] Added ``feaLib`` command to the 'fonttools' command-line
|
|
3029
|
-
tool; applies a feature file to a font. ``fonttools feaLib -h`` for
|
|
3030
|
-
help.
|
|
3031
|
-
- [pens] The ``T2CharStringPen`` now takes an optional
|
|
3032
|
-
``roundTolerance`` argument to control the rounding of coordinates
|
|
3033
|
-
(#804, fixes #769).
|
|
3034
|
-
- [ci] Measure test coverage on all supported python versions and OSes,
|
|
3035
|
-
combine coverage data and upload to
|
|
3036
|
-
https://codecov.io/gh/fonttools/fonttools (#786)
|
|
3037
|
-
- [ci] Configured Travis and Appveyor for running tests on Python 3.6
|
|
3038
|
-
(#785, 55c03bc)
|
|
3039
|
-
- The manual pages installation directory can be customized through
|
|
3040
|
-
``FONTTOOLS_MANPATH`` environment variable (#799, fixes #84).
|
|
3041
|
-
- [Snippets] Added otf2ttf.py, for converting fonts from CFF to
|
|
3042
|
-
TrueType using the googlei18n/cu2qu module (#802)
|
|
3043
|
-
|
|
3044
|
-
3.4.0 (released 2016-12-21)
|
|
3045
|
-
---------------------------
|
|
3046
|
-
|
|
3047
|
-
- [feaLib] Added support for generating FEA text from abstract syntax
|
|
3048
|
-
tree (AST) objects (#776). Thanks @mhosken
|
|
3049
|
-
- Added ``agl.toUnicode`` function to convert AGL-compliant glyph names
|
|
3050
|
-
to Unicode strings (#774)
|
|
3051
|
-
- Implemented MVAR table (b4d5381)
|
|
3052
|
-
|
|
3053
|
-
3.3.1 (released 2016-12-15)
|
|
3054
|
-
---------------------------
|
|
3055
|
-
|
|
3056
|
-
- [setup] We no longer use versioneer.py to compute fonttools version
|
|
3057
|
-
from git metadata, as this has caused issues for some users (#767).
|
|
3058
|
-
Now we bump the version strings manually with a custom ``release``
|
|
3059
|
-
command of setup.py script.
|
|
3060
|
-
|
|
3061
|
-
3.3.0 (released 2016-12-06)
|
|
3062
|
-
---------------------------
|
|
3063
|
-
|
|
3064
|
-
- [ttLib] Implemented STAT table from OpenType 1.8 (#758)
|
|
3065
|
-
- [cffLib] Fixed decompilation of CFF fonts containing non-standard
|
|
3066
|
-
key/value pairs in FontDict (issue #740; PR #744)
|
|
3067
|
-
- [py23] minor: in ``round3`` function, allow the second argument to be
|
|
3068
|
-
``None`` (#757)
|
|
3069
|
-
- The standalone ``sstruct`` and ``xmlWriter`` modules, deprecated
|
|
3070
|
-
since vesion 3.2.0, have been removed. They can be imported from the
|
|
3071
|
-
``fontTools.misc`` package.
|
|
3072
|
-
|
|
3073
|
-
3.2.3 (released 2016-12-02)
|
|
3074
|
-
---------------------------
|
|
3075
|
-
|
|
3076
|
-
- [py23] optimized performance of round3 function; added backport for
|
|
3077
|
-
py35 math.isclose() (9d8dacb)
|
|
3078
|
-
- [subset] fixed issue with 'narrow' (UCS-2) Python 2 builds and
|
|
3079
|
-
``--text``/``--text-file`` options containing non-BMP chararcters
|
|
3080
|
-
(16d0e5e)
|
|
3081
|
-
- [varLib] fixed issuewhen normalizing location values (8fa2ee1, #749)
|
|
3082
|
-
- [inspect] Made it compatible with both python2 and python3 (167ee60,
|
|
3083
|
-
#748). Thanks @pnemade
|
|
3084
|
-
|
|
3085
|
-
3.2.2 (released 2016-11-24)
|
|
3086
|
-
---------------------------
|
|
3087
|
-
|
|
3088
|
-
- [varLib] Do not emit null axes in fvar (1bebcec). Thanks @robmck-ms
|
|
3089
|
-
- [varLib] Handle fonts without GPOS (7915a45)
|
|
3090
|
-
- [merge] Ignore LangSys if None (a11bc56)
|
|
3091
|
-
- [subset] Fix subsetting MathVariants (78d3cbe)
|
|
3092
|
-
- [OS/2] Fix "Private Use (plane 15)" range (08a0d55). Thanks @mashabow
|
|
3093
|
-
|
|
3094
|
-
3.2.1 (released 2016-11-03)
|
|
3095
|
-
---------------------------
|
|
3096
|
-
|
|
3097
|
-
- [OS/2] fix checking ``fsSelection`` bits matching ``head.macStyle``
|
|
3098
|
-
bits
|
|
3099
|
-
- [varLib] added ``--build-HVAR`` option to generate ``HVAR`` table for
|
|
3100
|
-
fonts with TrueType outlines. For ``CFF2``, it is enabled by default.
|
|
3101
|
-
|
|
3102
|
-
3.2.0 (released 2016-11-02)
|
|
3103
|
-
---------------------------
|
|
3104
|
-
|
|
3105
|
-
- [varLib] Improve support for OpenType 1.8 Variable Fonts:
|
|
3106
|
-
- Implement GDEF's VariationStore
|
|
3107
|
-
- Implement HVAR/VVAR tables
|
|
3108
|
-
- Partial support for loading MutatorMath .designspace files with
|
|
3109
|
-
varLib.designspace module
|
|
3110
|
-
- Add varLib.models with Variation fonts interpolation models
|
|
3111
|
-
- Implement GSUB/GPOS FeatureVariations
|
|
3112
|
-
- Initial support for interpolating and merging OpenType Layout tables
|
|
3113
|
-
(see ``varLib.interpolate_layout`` and ``varLib.merger`` modules)
|
|
3114
|
-
- [API change] Change version to be an integer instead of a float in
|
|
3115
|
-
XML output for GSUB, GPOS, GDEF, MATH, BASE, JSTF, HVAR, VVAR, feat,
|
|
3116
|
-
hhea and vhea tables. Scripts that set the Version for those to 1.0
|
|
3117
|
-
or other float values also need fixing. A warning is emitted when
|
|
3118
|
-
code or XML needs fix.
|
|
3119
|
-
- several bug fixes to the cffLib module, contributed by Adobe's
|
|
3120
|
-
@readroberts
|
|
3121
|
-
- The XML output for CFF table now has a 'major' and 'minor' elements
|
|
3122
|
-
for specifying whether it's version 1.0 or 2.0 (support for CFF2 is
|
|
3123
|
-
coming soon)
|
|
3124
|
-
- [setup.py] remove undocumented/deprecated ``extra_path`` Distutils
|
|
3125
|
-
argument. This means that we no longer create a "FontTools" subfolder
|
|
3126
|
-
in site-packages containing the actual fontTools package, as well as
|
|
3127
|
-
the standalone xmlWriter and sstruct modules. The latter modules are
|
|
3128
|
-
also deprecated, and scheduled for removal in upcoming releases.
|
|
3129
|
-
Please change your import statements to point to from fontTools.misc
|
|
3130
|
-
import xmlWriter and from fontTools.misc import sstruct.
|
|
3131
|
-
- [scripts] Add a 'fonttools' command-line tool that simply runs
|
|
3132
|
-
``fontTools.*`` sub-modules: e.g. ``fonttools ttx``,
|
|
3133
|
-
``fonttools subset``, etc.
|
|
3134
|
-
- [hmtx/vmts] Read advance width/heights as unsigned short (uint16);
|
|
3135
|
-
automatically round float values to integers.
|
|
3136
|
-
- [ttLib/xmlWriter] add 'newlinestr=None' keyword argument to
|
|
3137
|
-
``TTFont.saveXML`` for overriding os-specific line endings (passed on
|
|
3138
|
-
to ``XMLWriter`` instances).
|
|
3139
|
-
- [versioning] Use versioneer instead of ``setuptools_scm`` to
|
|
3140
|
-
dynamically load version info from a git checkout at import time.
|
|
3141
|
-
- [feaLib] Support backslash-prefixed glyph names.
|
|
3142
|
-
|
|
3143
|
-
3.1.2 (released 2016-09-27)
|
|
3144
|
-
---------------------------
|
|
3145
|
-
|
|
3146
|
-
- restore Makefile as an alternative way to build/check/install
|
|
3147
|
-
- README.md: update instructions for installing package from source,
|
|
3148
|
-
and for running test suite
|
|
3149
|
-
- NEWS: Change log was out of sync with tagged release
|
|
3150
|
-
|
|
3151
|
-
3.1.1 (released 2016-09-27)
|
|
3152
|
-
---------------------------
|
|
3153
|
-
|
|
3154
|
-
- Fix ``ttLibVersion`` attribute in TTX files still showing '3.0'
|
|
3155
|
-
instead of '3.1'.
|
|
3156
|
-
- Use ``setuptools_scm`` to manage package versions.
|
|
3157
|
-
|
|
3158
|
-
3.1.0 (released 2016-09-26)
|
|
3159
|
-
---------------------------
|
|
3160
|
-
|
|
3161
|
-
- [feaLib] New library to parse and compile Adobe FDK OpenType Feature
|
|
3162
|
-
files.
|
|
3163
|
-
- [mtiLib] New library to parse and compile Monotype 'FontDame'
|
|
3164
|
-
OpenType Layout Tables files.
|
|
3165
|
-
- [voltLib] New library to parse Microsoft VOLT project files.
|
|
3166
|
-
- [otlLib] New library to work with OpenType Layout tables.
|
|
3167
|
-
- [varLib] New library to work with OpenType Font Variations.
|
|
3168
|
-
- [pens] Add ttGlyphPen to draw to TrueType glyphs, and t2CharStringPen
|
|
3169
|
-
to draw to Type 2 Charstrings (CFF); add areaPen and perimeterPen.
|
|
3170
|
-
- [ttLib.tables] Implement 'meta' and 'trak' tables.
|
|
3171
|
-
- [ttx] Add --flavor option for compiling to 'woff' or 'woff2'; add
|
|
3172
|
-
``--with-zopfli`` option to use Zopfli to compress WOFF 1.0 fonts.
|
|
3173
|
-
- [subset] Support subsetting 'COLR'/'CPAL' and 'CBDT'/'CBLC' color
|
|
3174
|
-
fonts tables, and 'gvar' table for variation fonts.
|
|
3175
|
-
- [Snippets] Add ``symfont.py``, for symbolic font statistics analysis;
|
|
3176
|
-
interpolatable.py, a preliminary script for detecting interpolation
|
|
3177
|
-
errors; ``{merge,dump}_woff_metadata.py``.
|
|
3178
|
-
- [classifyTools] Helpers to classify things into classes.
|
|
3179
|
-
- [CI] Run tests on Windows, Linux and macOS using Appveyor and Travis
|
|
3180
|
-
CI; check unit test coverage with Coverage.py/Coveralls; automatic
|
|
3181
|
-
deployment to PyPI on tags.
|
|
3182
|
-
- [loggingTools] Use Python built-in logging module to print messages.
|
|
3183
|
-
- [py23] Make round() behave like Python 3 built-in round(); define
|
|
3184
|
-
round2() and round3().
|
|
3185
|
-
|
|
3186
|
-
3.0 (released 2015-09-01)
|
|
3187
|
-
-------------------------
|
|
3188
|
-
|
|
3189
|
-
- Add Snippet scripts for cmap subtable format conversion, printing
|
|
3190
|
-
GSUB/GPOS features, building a GX font from two masters
|
|
3191
|
-
- TTX WOFF2 support and a ``-f`` option to overwrite output file(s)
|
|
3192
|
-
- Support GX tables: ``avar``, ``gvar``, ``fvar``, ``meta``
|
|
3193
|
-
- Support ``feat`` and gzip-compressed SVG tables
|
|
3194
|
-
- Upgrade Mac East Asian encodings to native implementation if
|
|
3195
|
-
available
|
|
3196
|
-
- Add Roman Croatian and Romanian encodings, codecs for mac-extended
|
|
3197
|
-
East Asian encodings
|
|
3198
|
-
- Implement optimal GLYF glyph outline packing; disabled by default
|
|
3199
|
-
|
|
3200
|
-
2.5 (released 2014-09-24)
|
|
3201
|
-
-------------------------
|
|
3202
|
-
|
|
3203
|
-
- Add a Qt pen
|
|
3204
|
-
- Add VDMX table converter
|
|
3205
|
-
- Load all OpenType sub-structures lazily
|
|
3206
|
-
- Add support for cmap format 13.
|
|
3207
|
-
- Add pyftmerge tool
|
|
3208
|
-
- Update to Unicode 6.3.0d3
|
|
3209
|
-
- Add pyftinspect tool
|
|
3210
|
-
- Add support for Google CBLC/CBDT color bitmaps, standard EBLC/EBDT
|
|
3211
|
-
embedded bitmaps, and ``SVG`` table (thanks to Read Roberts at Adobe)
|
|
3212
|
-
- Add support for loading, saving and ttx'ing WOFF file format
|
|
3213
|
-
- Add support for Microsoft COLR/CPAL layered color glyphs
|
|
3214
|
-
- Support PyPy
|
|
3215
|
-
- Support Jython, by replacing numpy with array/lists modules and
|
|
3216
|
-
removed it, pure-Python StringIO, not cStringIO
|
|
3217
|
-
- Add pyftsubset and Subsetter object, supporting CFF and TTF
|
|
3218
|
-
- Add to ttx args for -q for quiet mode, -z to choose a bitmap dump
|
|
3219
|
-
format
|
|
3220
|
-
|
|
3221
|
-
2.4 (released 2013-06-22)
|
|
3222
|
-
-------------------------
|
|
3223
|
-
|
|
3224
|
-
- Option to write to arbitrary files
|
|
3225
|
-
- Better dump format for DSIG
|
|
3226
|
-
- Better detection of OTF XML
|
|
3227
|
-
- Fix issue with Apple's kern table format
|
|
3228
|
-
- Fix mangling of TT glyph programs
|
|
3229
|
-
- Fix issues related to mona.ttf
|
|
3230
|
-
- Fix Windows Installer instructions
|
|
3231
|
-
- Fix some modern MacOS issues
|
|
3232
|
-
- Fix minor issues and typos
|
|
3233
|
-
|
|
3234
|
-
2.3 (released 2009-11-08)
|
|
3235
|
-
-------------------------
|
|
3236
|
-
|
|
3237
|
-
- TrueType Collection (TTC) support
|
|
3238
|
-
- Python 2.6 support
|
|
3239
|
-
- Update Unicode data to 5.2.0
|
|
3240
|
-
- Couple of bug fixes
|
|
3241
|
-
|
|
3242
|
-
2.2 (released 2008-05-18)
|
|
3243
|
-
-------------------------
|
|
3244
|
-
|
|
3245
|
-
- ClearType support
|
|
3246
|
-
- cmap format 1 support
|
|
3247
|
-
- PFA font support
|
|
3248
|
-
- Switched from Numeric to numpy
|
|
3249
|
-
- Update Unicode data to 5.1.0
|
|
3250
|
-
- Update AGLFN data to 1.6
|
|
3251
|
-
- Many bug fixes
|
|
3252
|
-
|
|
3253
|
-
2.1 (released 2008-01-28)
|
|
3254
|
-
-------------------------
|
|
3255
|
-
|
|
3256
|
-
- Many years worth of fixes and features
|
|
3257
|
-
|
|
3258
|
-
2.0b2 (released 2002-??-??)
|
|
3259
|
-
---------------------------
|
|
3260
|
-
|
|
3261
|
-
- Be "forgiving" when interpreting the maxp table version field:
|
|
3262
|
-
interpret any value as 1.0 if it's not 0.5. Fixes dumping of these
|
|
3263
|
-
GPL fonts: http://www.freebsd.org/cgi/pds.cgi?ports/chinese/wangttf
|
|
3264
|
-
- Fixed ttx -l: it turned out this part of the code didn't work with
|
|
3265
|
-
Python 2.2.1 and earlier. My bad to do most of my testing with a
|
|
3266
|
-
different version than I shipped TTX with :-(
|
|
3267
|
-
- Fixed bug in ClassDef format 1 subtable (Andreas Seidel bumped into
|
|
3268
|
-
this one).
|
|
3269
|
-
|
|
3270
|
-
2.0b1 (released 2002-09-10)
|
|
3271
|
-
---------------------------
|
|
3272
|
-
|
|
3273
|
-
- Fixed embarrassing bug: the master checksum in the head table is now
|
|
3274
|
-
calculated correctly even on little-endian platforms (such as Intel).
|
|
3275
|
-
- Made the cmap format 4 compiler smarter: the binary data it creates
|
|
3276
|
-
is now more or less as compact as possible. TTX now makes more
|
|
3277
|
-
compact data than in any shipping font I've tested it with.
|
|
3278
|
-
- Dump glyph names as a separate "GlyphOrder" pseudo table as opposed
|
|
3279
|
-
to as part of the glyf table (obviously needed for CFF-OTF's).
|
|
3280
|
-
- Added proper support for the CFF table.
|
|
3281
|
-
- Don't barf on empty tables (questionable, but "there are font out
|
|
3282
|
-
there...")
|
|
3283
|
-
- When writing TT glyf data, align glyphs on 4-byte boundaries. This
|
|
3284
|
-
seems to be the current recommendation by MS. Also: don't barf on
|
|
3285
|
-
fonts which are already 4-byte aligned.
|
|
3286
|
-
- Windows installer contributed bu Adam Twardoch! Yay!
|
|
3287
|
-
- Changed the command line interface again, now by creating one new
|
|
3288
|
-
tool replacing the old ones: ttx It dumps and compiles, depending on
|
|
3289
|
-
input file types. The options have changed somewhat.
|
|
3290
|
-
- The -d option is back (output dir)
|
|
3291
|
-
- ttcompile's -i options is now called -m (as in "merge"), to avoid
|
|
3292
|
-
clash with dump's -i.
|
|
3293
|
-
- The -s option ("split tables") no longer creates a directory, but
|
|
3294
|
-
instead outputs a small .ttx file containing references to the
|
|
3295
|
-
individual table files. This is not a true link, it's a simple file
|
|
3296
|
-
name, and the referenced file should be in the same directory so
|
|
3297
|
-
ttcompile can find them.
|
|
3298
|
-
- compile no longer accepts a directory as input argument. Instead it
|
|
3299
|
-
can parse the new "mini-ttx" format as output by "ttx -s".
|
|
3300
|
-
- all arguments are input files
|
|
3301
|
-
- Renamed the command line programs and moved them to the Tools
|
|
3302
|
-
subdirectory. They are now installed by the setup.py install script.
|
|
3303
|
-
- Added OpenType support. BASE, GDEF, GPOS, GSUB and JSTF are (almost)
|
|
3304
|
-
fully supported. The XML output is not yet final, as I'm still
|
|
3305
|
-
considering to output certain subtables in a more human-friendly
|
|
3306
|
-
manner.
|
|
3307
|
-
- Fixed 'kern' table to correctly accept subtables it doesn't know
|
|
3308
|
-
about, as well as interpreting Apple's definition of the 'kern' table
|
|
3309
|
-
headers correctly.
|
|
3310
|
-
- Fixed bug where glyphnames were not calculated from 'cmap' if it was
|
|
3311
|
-
(one of the) first tables to be decompiled. More specifically: it
|
|
3312
|
-
cmap was the first to ask for a glyphID -> glyphName mapping.
|
|
3313
|
-
- Switched XML parsers: use expat instead of xmlproc. Should be faster.
|
|
3314
|
-
- Removed my UnicodeString object: I now require Python 2.0 or up,
|
|
3315
|
-
which has unicode support built in.
|
|
3316
|
-
- Removed assert in glyf table: redundant data at the end of the table
|
|
3317
|
-
is now ignored instead of raising an error. Should become a warning.
|
|
3318
|
-
- Fixed bug in hmtx/vmtx code that only occured if all advances were
|
|
3319
|
-
equal.
|
|
3320
|
-
- Fixed subtle bug in TT instruction disassembler.
|
|
3321
|
-
- Couple of fixes to the 'post' table.
|
|
3322
|
-
- Updated OS/2 table to latest spec.
|
|
3323
|
-
|
|
3324
|
-
1.0b1 (released 2001-08-10)
|
|
3325
|
-
---------------------------
|
|
3326
|
-
|
|
3327
|
-
- Reorganized the command line interface for ttDump.py and
|
|
3328
|
-
ttCompile.py, they now behave more like "normal" command line tool,
|
|
3329
|
-
in that they accept multiple input files for batch processing.
|
|
3330
|
-
- ttDump.py and ttCompile.py don't silently override files anymore, but
|
|
3331
|
-
ask before doing so. Can be overridden by -f.
|
|
3332
|
-
- Added -d option to both ttDump.py and ttCompile.py.
|
|
3333
|
-
- Installation is now done with distutils. (Needs work for environments
|
|
3334
|
-
without compilers.)
|
|
3335
|
-
- Updated installation instructions.
|
|
3336
|
-
- Added some workarounds so as to handle certain buggy fonts more
|
|
3337
|
-
gracefully.
|
|
3338
|
-
- Updated Unicode table to Unicode 3.0 (Thanks Antoine!)
|
|
3339
|
-
- Included a Python script by Adam Twardoch that adds some useful stuff
|
|
3340
|
-
to the Windows registry.
|
|
3341
|
-
- Moved the project to SourceForge.
|
|
3342
|
-
|
|
3343
|
-
1.0a6 (released 2000-03-15)
|
|
3344
|
-
---------------------------
|
|
3345
|
-
|
|
3346
|
-
- Big reorganization: made ttLib a subpackage of the new fontTools
|
|
3347
|
-
package, changed several module names. Called the entire suite
|
|
3348
|
-
"FontTools"
|
|
3349
|
-
- Added several submodules to fontTools, some new, some older.
|
|
3350
|
-
- Added experimental CFF/GPOS/GSUB support to ttLib, read-only (but XML
|
|
3351
|
-
dumping of GPOS/GSUB is for now disabled)
|
|
3352
|
-
- Fixed hdmx endian bug
|
|
3353
|
-
- Added -b option to ttCompile.py, it disables recalculation of
|
|
3354
|
-
bounding boxes, as requested by Werner Lemberg.
|
|
3355
|
-
- Renamed tt2xml.pt to ttDump.py and xml2tt.py to ttCompile.py
|
|
3356
|
-
- Use ".ttx" as file extension instead of ".xml".
|
|
3357
|
-
- TTX is now the name of the XML-based *format* for TT fonts, and not
|
|
3358
|
-
just an application.
|
|
3359
|
-
|
|
3360
|
-
1.0a5
|
|
3361
|
-
-----
|
|
3362
|
-
|
|
3363
|
-
Never released
|
|
3364
|
-
|
|
3365
|
-
- More tables supported: hdmx, vhea, vmtx
|
|
3366
|
-
|
|
3367
|
-
1.0a3 & 1.0a4
|
|
3368
|
-
-------------
|
|
3369
|
-
|
|
3370
|
-
Never released
|
|
3371
|
-
|
|
3372
|
-
- fixed most portability issues
|
|
3373
|
-
- retracted the "Euro_or_currency" change from 1.0a2: it was
|
|
3374
|
-
nonsense!
|
|
3375
|
-
|
|
3376
|
-
1.0a2 (released 1999-05-02)
|
|
3377
|
-
---------------------------
|
|
3378
|
-
|
|
3379
|
-
- binary release for MacOS
|
|
3380
|
-
- genenates full FOND resources: including width table, PS font name
|
|
3381
|
-
info and kern table if applicable.
|
|
3382
|
-
- added cmap format 4 support. Extra: dumps Unicode char names as XML
|
|
3383
|
-
comments!
|
|
3384
|
-
- added cmap format 6 support
|
|
3385
|
-
- now accepts true type files starting with "true" (instead of just
|
|
3386
|
-
0x00010000 and "OTTO")
|
|
3387
|
-
- 'glyf' table support is now complete: I added support for composite
|
|
3388
|
-
scale, xy-scale and two-by-two for the 'glyf' table. For now,
|
|
3389
|
-
component offset scale behaviour defaults to Apple-style. This only
|
|
3390
|
-
affects the (re)calculation of the glyph bounding box.
|
|
3391
|
-
- changed "Euro" to "Euro_or_currency" in the Standard Apple Glyph
|
|
3392
|
-
order list, since we cannot tell from the 'post' table which is
|
|
3393
|
-
meant. I should probably doublecheck with a Unicode encoding if
|
|
3394
|
-
available. (This does not affect the output!)
|
|
3395
|
-
|
|
3396
|
-
Fixed bugs: - 'hhea' table is now recalculated correctly - fixed wrong
|
|
3397
|
-
assumption about sfnt resource names
|
|
3398
|
-
|
|
3399
|
-
1.0a1 (released 1999-04-27)
|
|
3400
|
-
---------------------------
|
|
3401
|
-
|
|
3402
|
-
- initial binary release for MacOS
|
|
2261
|
+
\... see `here <https://github.com/fonttools/fonttools/blob/main/NEWS.rst>`__ for earlier changes
|