![AFDKO Test Suite](https://github.com/adobe-type-tools/afdko/workflows/AFDKO%20Test%20Suite/badge.svg)
[![Coverage](https://codecov.io/gh/adobe-type-tools/afdko/branch/develop/graph/badge.svg)](https://codecov.io/gh/adobe-type-tools/afdko/branch/develop)
[![PyPI](https://img.shields.io/pypi/v/afdko.svg)](https://pypi.org/project/afdko)
[![Join the chat at https://gitter.im/adobe-type-tools/afdko](https://badges.gitter.im/adobe-type-tools/afdko.svg)](https://gitter.im/adobe-type-tools/afdko?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Adobe Font Development Kit for OpenType (AFDKO)
===============================================
The AFDKO is a set of tools for building OpenType font files from
PostScript and TrueType font data.
This repository contains the data files, Python scripts, and sources for
the command line programs that comprise the AFDKO. The project uses the
[Apache 2.0 Open Source license](https://opensource.org/licenses/Apache-2.0).
Please note that the AFDKO makes use of several dependencies, listed in the
requirements.txt file, which will automatically be installed if you install
AFDKO with `pip`. Most of these dependencies are BSD or MIT license, with
the exception of `tqdm`, which is [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/).
Please refer to the
[AFDKO Overview](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html)
for a more detailed description of what is included in the package.
Please see the
[wiki](https://github.com/adobe-type-tools/afdko/wiki)
for additional information, such as links to reference materials and related
projects.
📣 Recent News
------------
**The Python port of psautohint was (re)integrated into the AFDKO repository as "otfautohint"**
More information can be found in [docs/otfautohint_Notes.md](docs/otfautohint_Notes.md)
Installation
------------
The AFDKO requires [Python](http://www.python.org/download) 3.9
or later. It should work with any Python > 3.9, but occasionally
tool-chain components and dependencies don't keep pace with major
Python releases, so there might be some lag time while they catch up.
Releases are available on the [Python Package
Index](https://pypi.python.org/pypi/afdko) (PyPI) and can be installed
with [pip](https://pip.pypa.io).
Note for macOS users: we recommend that you do **not** use the system
Python. Among other reasons, some versions of macOS ship with Python 2
and the latest version of the AFDKO is only available for Python 3. You
can find instructions for using Brew to install Python 3 on macOS here:
[Installing Python 3 on Mac OS X](https://docs.python-guide.org/starting/install3/osx/).
Also: [pyenv](https://github.com/pyenv/pyenv) is a great tool for
installing and managing multiple Python versions on macOS.
Note for all users: we **STRONGLY** recommend the use of a Python virtual
environment ([`venv`](https://docs.python.org/3/library/venv.html))
and the use of `python -m pip install <package>` to install all packages
(not just AFDKO). Calling `pip install` directly can result in the
wrong `pip` being called, and the package landing in the wrong location.
The combination of using a `venv` + `python -m pip install` helps to ensure
that pip-managed packages land in the right place.
Note for Linux users (and users of other platforms that are not macOS or Windows): When there is not a pre-built "wheel" for your platform `pip` will attempt to build the C and C++ portions of the package from source. This process will only succeed if both the C and C++ development tools and libuuid are installed. See [build from source](#Build-from-source) below.
### Installing
**Option 1 (Recommended)**
- Create a virtual environment:
```sh
python -m venv afdko_env
```
- Activate the virtual environment:
- macOS & Linux
```sh
source afdko_env/bin/activate
```
- Windows
```sh
afdko_env\Scripts\activate.bat
```
- Install [afdko](https://pypi.python.org/pypi/afdko):
```sh
python -m pip install afdko
```
Installing the **afdko** inside a virtual environment prevents conflicts
between its dependencies and other modules installed globally.
**Option 2 (not recommended unless there is a global conflict)**
Local user installation [afdko](https://pypi.python.org/pypi/afdko) ([info](https://pip.pypa.io/en/stable/user_guide/?highlight=%E2%80%93%20user#user-installs)):
python -m pip install --user afdko
### Updating
Use the `-U` (or `--upgrade`) option to update the afdko (and its
dependencies) to the newest stable release:
python -m pip install -U afdko
To get pre-release and in-development versions, use the `--pre` flag:
python -m pip install -U afdko --pre
### Uninstalling
To remove the afdko package use the command:
python -m pip uninstall afdko
Build from source
-----------------
First you must have installed the development tools for your platform.
On macOS, install these with:
xcode-select --install
On Linux (Ubuntu 17.10 LTS or later), install these with:
apt-get -y install python3.9
apt-get -y install python-pip
apt-get -y install python-dev
apt-get -y install uuid-dev
On other POSIX-like operating systems, `libuuid` and its header files
may be in a package named `libuuid-devel` or `util-linux-libs`. The
source code for `libuuid` is maintained in the
[util-linux repository](https://github.com/karelzak/util-linux).
On Windows, you need Visual Studio 2017 or later.
To build the **afdko** from source, clone the [afdko GitHub
repository](https://github.com/adobe-type-tools/afdko), ensure the `wheel`
module is installed (`python -m pip install wheel`), then `cd` to the top-level
directory of the afdko, and run:
python -m pip install .
Developing
-----------------
If you'd like to develop & debug AFDKO using Xcode, run:
CMake -G Xcode .
For further information on building from source see
[docs/FDK\_Build\_Notes.md](docs/FDK_Build_Notes.md).
**Note**
It's not possible to install the afdko in editable/develop mode using
`python -m pip install -e .` ; this is because the toolkit includes binary C executables
which setup.py tries to install in the bin/ (or Scripts/) folder, however
this process was only meant to be used with text-based scripts (either
written in Python or a shell scripting language). To work around this problem
(which really only impacts the few core afdko developers who need to get live
feedback as they modify the source files) you can use alternative methods like
exporting a PYTHONPATH, using a .pth file or similar hacks.
For further details read [this comment](https://github.com/adobe-type-tools/afdko/pull/677#issuecomment-436747212).
Major changes from version 2.5.x
--------------------------------
* The AFDKO has been restructured so that it can be installed as a Python
package. It now depends on the user's Python interpreter, and no longer
contains its own Python interpreter.
* Two programs, **IS** and **checkoutlines** were dropped because their source
code could not be open-sourced. These tools are available in [release version
2.5.65322 and older](https://github.com/adobe-type-tools/afdko/releases?after=2.6.22).
**Note**
If you install the old AFDKO as well as the new PyPI afdko package, the tools from
the newer version will take precedence over the older. This happens because pip
adds the afdko's package path at the beginning of the system's PATH environment
variable, whereas the old installer adds it at the end; this modification to PATH
is not undone by the uninstaller. If you want to completely remove the path to the
newer version, you will have to edit the PATH. On the Mac, this means editing the
line in your login file that sets the PATH variable. On Windows, this means editing
the PATH environment variable in the system's Control Panel.
Changelog
=========
4.0.2 (released 2024-11-05)
---------------------------
- [otfautohint] Fix otfautohint bugs ([#1759](https://github.com/adobe-type-tools/afdko/pull/1759), [#1751](https://github.com/adobe-type-tools/afdko/pull/1751), [#1749](https://github.com/adobe-type-tools/afdko/pull/1749), [#1758](https://github.com/adobe-type-tools/afdko/pull/1758))
- [ANTLR] Upgrade ANTLR to v4.13.2
- [makeinstancesufo] keep all public lib keys in instances (thank you, @arialcrime!) ([#1747](https://github.com/adobe-type-tools/afdko/pull/1747))
- [ci] Enable Python v3.12, drop v3.8 ([#1756](https://github.com/adobe-type-tools/afdko/pull/1756))
4.0.1 (released 2024-01-16)
---------------------------
- [tx] Fix build failures discovered by an upcoming gcc-14 release (thanks @trofi!)([#1730](https://github.com/adobe-type-tools/afdko/pull/1730))
- [tx] parse multiple attrs in xmlNode ([#1720](https://github.com/adobe-type-tools/afdko/pull/1720))
- [makeotfexe] Add guards for h->otl == NULL before calling otlSubtableAdd ([#1716](https://github.com/adobe-type-tools/afdko/pull/1716))
- [otfstemhist] Fix otfstemhist bugs ([#1703](https://github.com/adobe-type-tools/afdko/pull/1703))
- [sfntedit] Fix bug when attempting to add non-existent file ([#1696](https://github.com/adobe-type-tools/afdko/pull/1696))
- [documentation] Updates ([#1711](https://github.com/adobe-type-tools/afdko/pull/1711))
- [requirements.txt] Update dependencies, remove psautohint from dependencies ([#1725](https://github.com/adobe-type-tools/afdko/pull/1725))
- [ci] Add Python 3.11 to CI test matrix ([#1718](https://github.com/adobe-type-tools/afdko/pull/1718))
4.0.0 (released 2023-09-11)
---------------------------
**The Python port of psautohint was (re)integrated into the AFDKO repository as "otfautohint"**
Changes Summary:
- [Name-Change] The name-change better reflects how hinted input is now published, and lets the new version coexist with the old version when needed.
- [AFDKO Tools Updated] Other tools in AFDKO have been updated to call oftautohint instead of psautohint, and the dependency on the latter's repository has been removed.
- [Stopping Psautohint Development] We expect to stop development of psautohint after this v4.0.0 release.
- [Improvements] The new code fixes a number of bugs and in our judgement produces better results on average. It also uses a slightly different encoding in UFO glif files. Accordingly, users should expect that running the new code results in many differences compared with psautohint, but this should be a one-time change.
- [Variable CFF Hinting] The new code also supports hinting of variable CFF-based fonts, including directly hinting a built CFF2 font. Glyphs that include overlap will typically be hinted close to how they would have been hinted with overlap removed.
- [Hinting Time] Because psautohint was partly written in (very old) C code, and otfautohint is written entirely in Python, the new code takes significantly longer to hint an individual glyph. However, we have also enhanced otfautohint to hint different glyphs on multiple CPU cores by default. As a result the tool will be 5-8 times slower when running on a single core but will typically be slightly faster when running on 8 cores.
More information can be found in [docs/otfautohint_Notes.md](https://github.com/adobe-type-tools/afdko/blob/develop/docs/otfautohint_Notes.md)
Other changes in v4.0.0: dependency updates.
3.9.7 (released 2023-08-14)
---------------------------
- [buildcff2vf] Don't return zero when input requires compatibilization ([#1668](https://github.com/adobe-type-tools/afdko/pull/1668))
- [requirements.txt, tests, ttxn] Update dependencies ([#1663](https://github.com/adobe-type-tools/afdko/pull/1663), [#1675](https://github.com/adobe-type-tools/afdko/pull/1675))
3.9.6 (released 2023-06-13)
---------------------------
- [requirements.txt] Update dependencies, unpin specific fonttools version to allow more versions ([#1661](https://github.com/adobe-type-tools/afdko/pull/1661))
- [tx] fix segfaults due to old function call ([#1649](https://github.com/adobe-type-tools/afdko/pull/1649))
- [hotconv] Fix warning for negative TypoLineGap ([#1654](https://github.com/adobe-type-tools/afdko/pull/1654)) (thanks, @NSGod!)
- [hotconv] reset dsigCnt in hotReuse() so subsequent conversions add full stub 'DSIG' table ([#1648](https://github.com/adobe-type-tools/afdko/pull/1648)) (thanks, @NSGod!)
- [hotconv] 'name': fix memory leak in addName() ([#1646](https://github.com/adobe-type-tools/afdko/pull/1646)) (thanks, @NSGod!)
- [README] Remove LGTM badges ([#1650](https://github.com/adobe-type-tools/afdko/pull/1650)) (thanks, @miguelsousa!)
3.9.5 (released 2023-04-24)
---------------------------
- [python] **Drop Python 3.7**
([#1638](https://github.com/adobe-type-tools/afdko/pull/1638))
- [tx] **tx/makeotf glyphOrder bug fix**
([#1642](https://github.com/adobe-type-tools/afdko/pull/1642))
- [spot] fix name table LANG_TAG_REC_SIZE size definition (thanks, @NSGod!)
([#1640](https://github.com/adobe-type-tools/afdko/pull/1640))
- [docs] CID-keyed UFO guide
([#1634](https://github.com/adobe-type-tools/afdko/pull/1634))
- [requirements.txt][buildcff2vf_data] Update to fonttools v4.39.3
([#1639](https://github.com/adobe-type-tools/afdko/pull/1639))
3.9.4 (released 2023-04-06)
---------------------------
- [tx] FDArray support in CID-Keyed UFOs
- [tx][libxml2-improved] Move FDArray from fontinfo.plist to lib.plist ([#1576](https://github.com/adobe-type-tools/afdko/pull/1576))
- [tx] fix languagegroup visibility ([#1620](https://github.com/adobe-type-tools/afdko/pull/1620))
- [tx] Updates to CID-keyed UFO handling ([#1628](https://github.com/adobe-type-tools/afdko/pull/1628))
- [tx] revert missing cid fail to warn ([#1633](https://github.com/adobe-type-tools/afdko/pull/1633))
- [makeotf] Fix GOADB order of processing multiple unicode assignments ([#1615](https://github.com/adobe-type-tools/afdko/pull/1615))
- [spot] fix 'kern' subtable Format3 rightClass memory leak (double allocation) (thanks @NSGod!) ([#1627](https://github.com/adobe-type-tools/afdko/pull/1627))
- Small fixes, updates: ([#1614](https://github.com/adobe-type-tools/afdko/pull/1614), [#1624](https://github.com/adobe-type-tools/afdko/pull/1624))
3.9.3 (released 2023-02-02)
---------------------------
- CMake github workflow updates:
- Force static link of libxml2 on both windows and linux ([#1607](https://github.com/adobe-type-tools/afdko/pull/1607))
- CMake libxml2 updates:
- Stop forcing static LibXML2 build on Linux ([#1601](https://github.com/adobe-type-tools/afdko/pull/1601))
- Unify cmake libxml build logic ([#1597](https://github.com/adobe-type-tools/afdko/pull/1597))
- [docs] Formatting fix-up ([#1605](https://github.com/adobe-type-tools/afdko/pull/1605))
- [tx] Restore stack-like behavior of parseGLIF transform pointer ([#1595](https://github.com/adobe-type-tools/afdko/pull/1595))
3.9.2 (released 2023-01-10)
---------------------------
- tx:
- [tx] Always use blend for stem storage in cffwrite_t2cstr.c ([#1591](https://github.com/adobe-type-tools/afdko/pull/1591))
- [tx] [t2cstr] Use non-xxxVF paths in t2cstr when flattening and outputting CFF2 ([#1588](https://github.com/adobe-type-tools/afdko/pull/1588))
- UFO parsing:
- [tx] Replace UFO .glif file parsing with libxml2 ([#1556](https://github.com/adobe-type-tools/afdko/pull/1556))
- [tx] Replace UFO content.plist/glyphList parsing with libxml2 ([#1543](https://github.com/adobe-type-tools/afdko/pull/1543))
- [tx] Other related uforead & ufowrite parsing updates ([#1595](https://github.com/adobe-type-tools/afdko/pull/1595), [#1590](https://github.com/adobe-type-tools/afdko/pull/1590), [#1568](https://github.com/adobe-type-tools/afdko/pull/1568), [#1566](https://github.com/adobe-type-tools/afdko/pull/1566), [#1541](https://github.com/adobe-type-tools/afdko/pull/1541), [#1537](https://github.com/adobe-type-tools/afdko/pull/1537), [#1536](https://github.com/adobe-type-tools/afdko/pull/1536))
- [dependencies] add renovate.json ([#1545](https://github.com/adobe-type-tools/afdko/pull/1545))
- [agd.py] [comparefamily.py] Fixing the two instances of "rU" (thanks @colinmford !) ([#1584](https://github.com/adobe-type-tools/afdko/pull/1584))
- [makeinstancesufo] Add --instance_info option to makeinstancesufo ([#1577](https://github.com/adobe-type-tools/afdko/pull/1577))
- [makeinstancesufo] Boost number of makeinstancesufo pool processors by one ([#1561](https://github.com/adobe-type-tools/afdko/pull/1561))
- [otf2ttf] Ensure poolCapacity is at least 1 (thanks @Heptazhou !) ([#1530](https://github.com/adobe-type-tools/afdko/pull/1530))
- [otf2ttf] Force maxPoolCapacity to be at least 1 (thanks @Heptazhou !)([#1529](https://github.com/adobe-type-tools/afdko/pull/1529))
3.9.1 (released 2022-07-01)
---------------------------
- [CMake] Link LibXML2 statically for Linux for bug fix ([#1527](https://github.com/adobe-type-tools/afdko/pull/1527))
- [makeotf][tx] Fix some linux compile problems with "bool" ([#1524](https://github.com/adobe-type-tools/afdko/pull/1524))
- [tx] Replace UFO lib.plist parsing with libxml2 ([#1523](https://github.com/adobe-type-tools/afdko/pull/1523))
3.9.0 (released 2022-06-23)
---------------------------
- [tx] Replace UFO fontinfo.plist parsing with libxml2 ([#1515](https://github.com/adobe-type-tools/afdko/pull/1515), [#1517](https://github.com/adobe-type-tools/afdko/pull/1517), [#1518](https://github.com/adobe-type-tools/afdko/pull/1518), [#1519](https://github.com/adobe-type-tools/afdko/pull/1519))
- [makeotf] Copy va_list for second use (and add va_end's to avoid leaking) ([#1512](https://github.com/adobe-type-tools/afdko/pull/1512))
- [requirements] updated dependencies
3.8.3 (released 2022-05-09)
---------------------------
- [requirements] updated dependencies
- [docs] Add links to previously opened Windows build issues ([#1505](https://github.com/adobe-type-tools/afdko/pull/1505))
- [docs] Fix line wrap in feature file spec ([#1509](https://github.com/adobe-type-tools/afdko/pull/1509))
- [ci] Enable Codecov informational checks ([#1501](https://github.com/adobe-type-tools/afdko/pull/1501))
3.8.2 (released 2022-04-11)
---------------------------
- [tx] Fix Memory Crashes ([#1497](https://github.com/adobe-type-tools/afdko/pull/1497))
- [antlr4] ANTLR v4.9.3 Upgrade ([#1491](https://github.com/adobe-type-tools/afdko/pull/1491))
- [tx] ignore subr recursion limit ([#1484](https://github.com/adobe-type-tools/afdko/pull/1484))
- [tx] Don't parse non-FDArray array of dictionaries in fontinfo.plist
([#1478](https://github.com/adobe-type-tools/afdko/pull/1478))
- [requirements] updated dependencies
3.8.1 (released 2022-02-24)
---------------------------
- [tx] Add safety initialization of pdwCtx structure in pdwNew
([#1474](https://github.com/adobe-type-tools/afdko/pull/1474))
- [requirements] updated dependencies
3.8.0 (released 2022-02-03)
---------------------------
- [python] **Drop Python 3.6, add Python 3.10 support**
([#1456](https://github.com/adobe-type-tools/afdko/pull/1456))
- [tx] Initialize variables in doFile
([#1466](https://github.com/adobe-type-tools/afdko/pull/1466))
- [ci] Build universal2 wheel instead of arm64 (thanks @miguelsousa!)
([#1462](https://github.com/adobe-type-tools/afdko/pull/1462))
- [ci] Add macOS arm64 wheel (thanks @miguelsousa!)
([#1461](https://github.com/adobe-type-tools/afdko/pull/1461))
- [c] Fix C-code coverage reporting (thanks @miguelsousa!)
([#1460](https://github.com/adobe-type-tools/afdko/pull/1460))
- [tx] Preserve intentional duplicate start points when PFA -> UFO
([#1452](https://github.com/adobe-type-tools/afdko/pull/1452))
- [tx] Fix unintentional duplicate start points caused by floating-value coordinates when PFA -> UFO
([#1448](https://github.com/adobe-type-tools/afdko/pull/1448))
- [README] Fix broken relative link in README
([#1424](https://github.com/adobe-type-tools/afdko/pull/1424))
- [ttxn] Update ttxn for fontTools 4.27.0 update
([#1423](https://github.com/adobe-type-tools/afdko/pull/1423)
[#1418](https://github.com/adobe-type-tools/afdko/issues/1418))
- [otf2ttf] Add throttling to OTF2TTF to avoid hangs on Windows with large CPU (thanks @be5invis!)
([#1421](https://github.com/adobe-type-tools/afdko/pull/1421),
[#1420](https://github.com/adobe-type-tools/afdko/issues/1420))
- [requirements] updated dependencies
3.7.1 (released 2021-08-31)
---------------------------
- [makeotfexe] **Port of Feature File Parser to Antlr 4**
([#548](https://github.com/adobe-type-tools/afdko/issues/548),
[#1367](https://github.com/adobe-type-tools/afdko/pull/1367))
- [spec] **OpenType Feature File Specification updated to v1.26** with the following ([here](https://github.com/adobe-type-tools/afdko/blob/26761e9616f8a52aa14e7041ac9cbb0e139a1d83/docs/OpenTypeFeatureFileSpecification.md)):
- `include` directive is "statement-only"
- with the exception of `mark`, keywords cannot be used as lookup names or tags
- list of valid characters for tags has been updated
- tags cannot start with a digit or hyphen
- [build] Switch to CMake-based builds -- [see documentation](https://github.com/adobe-type-tools/afdko/blob/develop/docs/FDK_Build_Notes.md#build-system)
([#1124](https://github.com/adobe-type-tools/afdko/issues/1124),
[#1360](https://github.com/adobe-type-tools/afdko/pull/1360),
[#1384](https://github.com/adobe-type-tools/afdko/pull/1384),
[#1372](https://github.com/adobe-type-tools/afdko/pull/1372))
- [makeinstancesufo] fixes for fontMath 0.8.1 update
([#1391](https://github.com/adobe-type-tools/afdko/pull/1391))
- [tx] ufowrite for loop init declaration fix
([#1373](https://github.com/adobe-type-tools/afdko/pull/1373))
- [tx] uforead deleting outlines fix
([#1370](https://github.com/adobe-type-tools/afdko/pull/1370))
- [tx] Windows line endings in binary files fix
([#1361](https://github.com/adobe-type-tools/afdko/pull/1361))
- [makeotf] Fix for makeotf heap use after free
([#1356](https://github.com/adobe-type-tools/afdko/pull/1356))
- [tx] uforead, ufowrite, checkoutlinesufo fixes for reading & writing CID-keyed fonts
([#1353](https://github.com/adobe-type-tools/afdko/pull/1353))
- [tx] t1read.c add error for fonts surpassing 65000 SID Limit
([#1347](https://github.com/adobe-type-tools/afdko/pull/1347))
- [tx] cffread.c data type fix
([#1344](https://github.com/adobe-type-tools/afdko/pull/1344))
- [spec] Spec 6.4.iii: 'markClass' instead of 'mark' in example 4 (thanks @moyogo!)
([#1336](https://github.com/adobe-type-tools/afdko/pull/1336))
- [checkoutlinesufo] Moved list sort out of loop to not waste time sorting
([#1331](https://github.com/adobe-type-tools/afdko/pull/1331))
- [makeotf] aarch64 precision errors fix
([#1329](https://github.com/adobe-type-tools/afdko/pull/1329))
- [tests] Add cpplint check
([#1325](https://github.com/adobe-type-tools/afdko/pull/1325))
3.6.2 (released 2021-03-02)
---------------------------
- [spec] Allow deleting glyphs via Multiple substitution (thanks @simoncozens!)
([#1251](https://github.com/adobe-type-tools/afdko/pull/1251),
[#1234](https://github.com/adobe-type-tools/afdko/issues/1234),
[#1294](https://github.com/adobe-type-tools/afdko/pull/1294))
- [makeotfexe] Allow negative internal leading
([#1279](https://github.com/adobe-type-tools/afdko/pull/1279),
[#1227](https://github.com/adobe-type-tools/afdko/issues/1227))
- [docs] Clean up README.md (thanks @vladdoster!)
([#1280](https://github.com/adobe-type-tools/afdko/pull/1280))
- [cff2vf] Do not assume presence of `STAT.AxisValueArray`
([#1283](https://github.com/adobe-type-tools/afdko/pull/1283),
[#1281](https://github.com/adobe-type-tools/afdko/issues/1281))
- [repo] Re-sync `master` --> `develop`
([#1285](https://github.com/adobe-type-tools/afdko/pull/1285))
- [tests] Skip version number in diff of makeotfexe test
([#1286](https://github.com/adobe-type-tools/afdko/pull/1286))
- [spot] re-format documentation
([#1287](https://github.com/adobe-type-tools/afdko/pull/1287))
- [checkoutlinesufo] Add `ignore-contour-order` flag
([#1289](https://github.com/adobe-type-tools/afdko/pull/1289))
- [makeinstancesufo] Implement multiprocessing
([#1293](https://github.com/adobe-type-tools/afdko/pull/1293),
[#1161](https://github.com/adobe-type-tools/afdko/issues/1161))
- [checkoutlinesufo] Fix `restore_contour_order`
([#1296](https://github.com/adobe-type-tools/afdko/pull/1296),
[#1291](https://github.com/adobe-type-tools/afdko/issues/1291))
- [makeotf] don't fail when converting `'post'` table format 3 -> 2
([#1303](https://github.com/adobe-type-tools/afdko/pull/1303),
[#1301](https://github.com/adobe-type-tools/afdko/issues/1301))
- [makeotfexe] increase GOADB UV/Alias name string length limit
([#1311](https://github.com/adobe-type-tools/afdko/pull/1311),
[#1310](https://github.com/adobe-type-tools/afdko/issues/1310))
- [checkoutlinesufo] Fix logic for reporting duplicated start point
([#1318](https://github.com/adobe-type-tools/afdko/pull/1318),
[#1315](https://github.com/adobe-type-tools/afdko/issues/1315))
- [tests, tx] increase precision (`float` --> `double`) to fix i586 failing tests
([#1321](https://github.com/adobe-type-tools/afdko/issues/1321),
[#1216](https://github.com/adobe-type-tools/afdko/issues/1216),
[#1163](https://github.com/adobe-type-tools/afdko/issues/1163))
3.6.1 (released 2021-01-13)
---------------------------
- [packaging] Fix Windows wheel
([#1278](https://github.com/adobe-type-tools/afdko/pull/1278),
[#1277](https://github.com/adobe-type-tools/afdko/issues/1277))
3.6.0 (released 2020-12-17)
---------------------------
- [checkoutlinesufo] Add CID support
([#1224](https://github.com/adobe-type-tools/afdko/pull/1224))
- [checkoutlinesufo] Fix nested loop variable
([#1231](https://github.com/adobe-type-tools/afdko/pull/1231))
- [tests] Update date regex to skip date & time metrics
([#1232](https://github.com/adobe-type-tools/afdko/pull/1232))
- [docs] Fix typo (Thanks, @djr11!)
([#1236](https://github.com/adobe-type-tools/afdko/pull/1236))
- [docs] Describe tab-separated format of GOADB (Thanks, @djr11!)
([#1238](https://github.com/adobe-type-tools/afdko/pull/1238))
- [docs] Fix typo (Thanks, @ln-north!)
([#1241](https://github.com/adobe-type-tools/afdko/pull/1241))
- [checkoutlinesufo] Update progress bar
([#1243](https://github.com/adobe-type-tools/afdko/pull/1243))
- [checkoutlinesufo] Implement `-o` (output file) option
([#1244](https://github.com/adobe-type-tools/afdko/pull/1244))
- [ci, tests] Use GitHub Actions for everything
([#1254](https://github.com/adobe-type-tools/afdko/pull/1254),
[#1265](https://github.com/adobe-type-tools/afdko/pull/1265))
- [makeotfexe] Update help/usage documentation
([#1262](https://github.com/adobe-type-tools/afdko/pull/1262))
- [comparefamily, pdflib] Fix `== None` comparisons
([#1264](https://github.com/adobe-type-tools/afdko/pull/1264))
- [checkoutlinesufo] Remove UFO2-as-UFO3 hack (now up-converts to UFO3)
([#1135](https://github.com/adobe-type-tools/afdko/issues/1135),
[#1270](https://github.com/adobe-type-tools/afdko/pull/1270))
3.5.1 (released 2020-09-15)
----------------------
- [tx] improve robustness
([#1187](https://github.com/adobe-type-tools/afdko/pull/1187),
[#1188](https://github.com/adobe-type-tools/afdko/pull/1188))
- [makeotfexe] support `OS/2.sFamilyClass` in feature files
([#1191](**https://github.com/adobe-type-tools/afdko/issues/1191),
[#1192](https://github.com/adobe-type-tools/afdko/pull/1192))
- [docs] correct description of STAT location values
([#1190](https://github.com/adobe-type-tools/afdko/issues/1190),
[#1193](https://github.com/adobe-type-tools/afdko/pull/1193))
- [makeotfexe] fix check of duplicates in STAT Format 4 Axis Values
([#1195](https://github.com/adobe-type-tools/afdko/pull/1195))
- [ttfcomponentizer] add warning for empty psnames
([#1198](https://github.com/adobe-type-tools/afdko/issues/1198),
[#1199](https://github.com/adobe-type-tools/afdko/pull/1199))
- [buildcff2vf] add STAT validation
([#1200](https://github.com/adobe-type-tools/afdko/pull/1200))
- [makeotf] allow anonymous glyphclass in LookupFlags
([#1206](https://github.com/adobe-type-tools/afdko/pull/1206))
- [agd] support 5-digit codepoints in AGD file
([#1207](https://github.com/adobe-type-tools/afdko/issues/1207),
[#1208](https://github.com/adobe-type-tools/afdko/pull/1208))
- [makeinstancesufo] make designspace attributes lowercase
([#1211](https://github.com/adobe-type-tools/afdko/issues/1211),
[#1212](https://github.com/adobe-type-tools/afdko/pull/1212))
- [makeotf] remove hyphen for STAT range definitions
([#1197](https://github.com/adobe-type-tools/afdko/issues/1197),
[#1213](https://github.com/adobe-type-tools/afdko/pull/1213))
- [docs] clarify use of `python3` and `pip3` in README
([#1215](https://github.com/adobe-type-tools/afdko/pull/1215))
- [pdflib] fix circle-drawing bug (thanks @bcirc!)
([#1218](https://github.com/adobe-type-tools/afdko/issues/1218),
[#1219](https://github.com/adobe-type-tools/afdko/pull/1219)])
- [docs] clarify description of glyph name ranges (thanks @PeterCon!)
([#1222](https://github.com/adobe-type-tools/afdko/issues/1222),
[#1211](https://github.com/adobe-type-tools/afdko/pull/1221))
- [checkoutlinesufo] add support for CID-keyed fonts
([#1224](https://github.com/adobe-type-tools/afdko/pull/1224))
3.5.0 (released 2020-07-16)
----------------------
- [docs] fix broken links, add new links, fix typos, add templates
([#1140](https://github.com/adobe-type-tools/afdko/pull/1140),
[#1151](https://github.com/adobe-type-tools/afdko/pull/1151),
[#1176](https://github.com/adobe-type-tools/afdko/pull/1176))
- [tx] many fixes related to uninitialized variables, buffer/stack overflows,
etc. Thanks to @antlarr-suse and internal contributors for chasing these down and fixing!
([#1141](https://github.com/adobe-type-tools/afdko/pull/1141),
[#1180](https://github.com/adobe-type-tools/afdko/pull/1180),
[#1182](https://github.com/adobe-type-tools/afdko/pull/1182),
[#1187](https://github.com/adobe-type-tools/afdko/pull/1187),
[#1188](https://github.com/adobe-type-tools/afdko/pull/1188))
- [makeotf] Drop Multiple Master in OpenType support (thanks @khaledhosny!)
([#995](https://github.com/adobe-type-tools/afdko/issues/995),
[#1144](https://github.com/adobe-type-tools/afdko/pull/1144))
- [checkoutlinesufo] Improve overlap removal
([#790](https://github.com/adobe-type-tools/afdko/issues/790),
[#1146](https://github.com/adobe-type-tools/afdko/pull/1146),
[#1170](https://github.com/adobe-type-tools/afdko/pull/1170))
- [fontsetplot, ttfdecomponentizer] Fix proofing issues
([#1125](https://github.com/adobe-type-tools/afdko/issues/1125),
[#1148](https://github.com/adobe-type-tools/afdko/pull/1148))
- [requirements] remove dependency on standalone cu2qu (integrated into
fontTools 4.7.0)
([#1150](https://github.com/adobe-type-tools/afdko/pull/1150))
- [makeinstancesufo] fix `use-varlib` flag, check for extrapolation/warn when
using varLib
([#1152](https://github.com/adobe-type-tools/afdko/issues/1152),
[#1155](https://github.com/adobe-type-tools/afdko/pull/1155))
- [makeotf] update a misleading comment regarding how CodePageRange bits are set
([#1156](https://github.com/adobe-type-tools/afdko/issues/1156),
[#1157](https://github.com/adobe-type-tools/afdko/pull/1157))
- [sfntedit, sfntdiff] fix failures with long file/pathnames
([#1139](https://github.com/adobe-type-tools/afdko/issues/1139),
[#1159](https://github.com/adobe-type-tools/afdko/pull/1159))
- [tx] don't write FontMatrix in CFF2 FontDict
([cffsubr #13](https://github.com/adobe-type-tools/cffsubr/issues/13),
[#1165](https://github.com/adobe-type-tools/afdko/pull/1165))
- [makeotf, makeotfexe] STAT table updates and improvements
([#1164](https://github.com/adobe-type-tools/afdko/issues/1164),
[#1166](https://github.com/adobe-type-tools/afdko/pull/1166),
[#1174](https://github.com/adobe-type-tools/afdko/pull/1174),
[#1177](https://github.com/adobe-type-tools/afdko/issues/1177),
[#1178](https://github.com/adobe-type-tools/afdko/issues/1178),
[#1179](https://github.com/adobe-type-tools/afdko/pull/1179))
- [makeotf] Check for PostScript name in FontMenuNameDB
([#1171](https://github.com/adobe-type-tools/afdko/issues/1171),
[#1172](https://github.com/adobe-type-tools/afdko/pull/1172))
- [autohint, stemhist] **REMOVED FROM AFDKO** (use psautohint/psstemhist)
([#826](https://github.com/adobe-type-tools/afdko/issues/826),
[#827](https://github.com/adobe-type-tools/afdko/issues/827),
[#1175](https://github.com/adobe-type-tools/afdko/pull/1175))
- [makeotfexe] fix stack buffer overflow and use-after-free issues
([#1183](https://github.com/adobe-type-tools/afdko/pull/1183),
[#1184](https://github.com/adobe-type-tools/afdko/pull/1184))
- [mergefonts] fix stack buffer overflow issue
([#1185](https://github.com/adobe-type-tools/afdko/pull/1185))
- [spot] fix heap buffer overflow issue
([#1186](https://github.com/adobe-type-tools/afdko/pull/1186))
3.4.0 (released 2020-05-26)
---------------------------
- [makeotf] STAT table support (thanks @khaledhosny!)
([#176](https://github.com/adobe-type-tools/afdko/issues/176),
[#1127](https://github.com/adobe-type-tools/afdko/pull/1127))
- [makeotf] Support multiple chained lookups per position (thanks @simoncozens!)
([#1119](https://github.com/adobe-type-tools/afdko/issues/1119),
[#1132](https://github.com/adobe-type-tools/afdko/pull/1132))
- [makeotf] Allow UTF-8 input for name strings (thanks @khaledhosny!)
([#165](https://github.com/adobe-type-tools/afdko/issues/165),
[#1133](https://github.com/adobe-type-tools/afdko/pull/1133))
- [spot] prevent string overflow
([#1136](https://github.com/adobe-type-tools/afdko/pull/1136))
- [spec] Update STAT examples, multiple lookup documentation, fix broken links
([#1137](https://github.com/adobe-type-tools/afdko/pull/1137),
[#1140](https://github.com/adobe-type-tools/afdko/pull/1140))
- [sfntedit] Use portable `rename`
([#1138](https://github.com/adobe-type-tools/afdko/pull/1138))
- [absfont, ttread] Initialize variables before use (thanks @antlarr-suse!)
([#1141](https://github.com/adobe-type-tools/afdko/pull/1141))
3.3.0 (released 2020-05-01)
---------------------------
- [otf2ttf] update LSB in hmtx to match glyph xMin
([#1114](https://github.com/adobe-type-tools/afdko/pull/1114))
- [dependencies] update to latest fontTools, MutatorMath, ufonormalizer
([#1113](https://github.com/adobe-type-tools/afdko/pull/1117),
[#1120](https://github.com/adobe-type-tools/afdko/pull/1120))
- [c tools] improved robustness
([#1121](https://github.com/adobe-type-tools/afdko/pull/1121),
[#1122](https://github.com/adobe-type-tools/afdko/pull/1122),
[#1123](https://github.com/adobe-type-tools/afdko/pull/1123))
- [makeinstancesufo] add option to use varLib instead of MutatorMath
([#1126](https://github.com/adobe-type-tools/afdko/pull/1126))
3.2.1 (released 2020-03-27)
---------------------------
- [sfntedit] cleaned up help string
([#1084](https://github.com/adobe-type-tools/afdko/pull/1084))
- [docs] Updated AFDKO Overview doc
([#1091](https://github.com/adobe-type-tools/afdko/pull/1091))
- [waterfallplot] fixed crash
([#1094](https://github.com/adobe-type-tools/afdko/pull/1094),
[#1092](https://github.com/adobe-type-tools/afdko/issues/1092))
- [ttfdecomponentizer] add ttfdecomponentizer tool
([#1096](https://github.com/adobe-type-tools/afdko/pull/1096))
- [buildcff2vf] update to use new `fontTools.varLib` exceptions
([#1097](https://github.com/adobe-type-tools/afdko/pull/1097),
[#1088](https://github.com/adobe-type-tools/afdko/issues/1088))
- [ufotools] clean up (remove unused code)
([#1098](https://github.com/adobe-type-tools/afdko/pull/1098))
- [docs] clarify allowed use of `script` and `language` keywords in feature files
([#1099](https://github.com/adobe-type-tools/afdko/pull/1099),
[#990](https://github.com/adobe-type-tools/afdko/issues/990))
- [requirements] fix issue with PyUp configuration (re-enable automatic updates)
- [requirements] relax constraints on `ufoProcessor` version
([#1102](https://github.com/adobe-type-tools/afdko/issues/1102))
- [spec] replace invalid example in OpenType Feature File specification
([#1106](https://github.com/adobe-type-tools/afdko/issues/1106),
[#1107](https://github.com/adobe-type-tools/afdko/pull/1107))
- [makeotfexe] fix bug which could cause a crash with some fonts
([#1108](https://github.com/adobe-type-tools/afdko/issues/1108),
[#1109](https://github.com/adobe-type-tools/afdko/pull/1109))
3.2.0 (released 2020-01-24)
---------------------------
- [ttfcomponentizer] minor updates and improvements
([#1069](https://github.com/adobe-type-tools/afdko/pull/1069),
[#1072](https://github.com/adobe-type-tools/afdko/pull/1072))
- [tests] fix date-based bug in tx tests
([#1076](https://github.com/adobe-type-tools/afdko/pull/1076))
- [autohint] and [stemhist] now simply redirect input to psautohint/psstemhist
([#1077](https://github.com/adobe-type-tools/afdko/pull/1077))
- [makeotfexe] fix bug in font generation with multiple `languagesystem` entries
([#1080](https://github.com/adobe-type-tools/afdko/issues/1080),
[#1081](https://github.com/adobe-type-tools/afdko/pull/1081))
3.1.0 (released 2019-12-16)
---------------------------
- [ci] updates and maintenance on several CI services:
- added LGTM.com (Semmle) analyze-on-Pull-Request support
- removed Codacy check
- set up Azure Pipeline with Mac, Windows, and Linux testing
- [tests] Add filtering for fontTools `DeprecationWarnings`
- [tx] Add descriptions of optimization options (`tx -cff` help)
([#938](https://github.com/adobe-type-tools/afdko/pull/938),
[#939](https://github.com/adobe-type-tools/afdko/pull/939))
- [tx] Fix handling of blend options
([#940](https://github.com/adobe-type-tools/afdko/issues/940),
[#941](https://github.com/adobe-type-tools/afdko/pull/941))
- [fdkutils] Improve shell command handling, increase test coverage
([#946](https://github.com/adobe-type-tools/afdko/pull/946))
- [comparefamily] Trim `agd.py` to only parts needed to keep
`comparefamily` running
([#948](https://github.com/adobe-type-tools/afdko/pull/948))
- [tx tests] Improved tests
([#949](https://github.com/adobe-type-tools/afdko/pull/949),
[#950](https://github.com/adobe-type-tools/afdko/pull/951))
- [fdkutils] Add TTC support
([#952](https://github.com/adobe-type-tools/afdko/pull/952))
- [tx] Add variable font support to ttread
([#957](https://github.com/adobe-type-tools/afdko/pull/957))
- [tx] A whole bunch of improvements and fixes
([#929](https://github.com/adobe-type-tools/afdko/pull/929),
[#954](https://github.com/adobe-type-tools/afdko/pull/954),
[#955](https://github.com/adobe-type-tools/afdko/pull/955),
[#956](https://github.com/adobe-type-tools/afdko/pull/956),
[#958](https://github.com/adobe-type-tools/afdko/pull/958),
[#959](https://github.com/adobe-type-tools/afdko/pull/959),
[#960](https://github.com/adobe-type-tools/afdko/pull/960),
[#961](https://github.com/adobe-type-tools/afdko/pull/961),
[#962](https://github.com/adobe-type-tools/afdko/pull/962),
[#964](https://github.com/adobe-type-tools/afdko/pull/964),
[#1045](https://github.com/adobe-type-tools/afdko/issues/1045),
[#1046](https://github.com/adobe-type-tools/afdko/pull/1046))
- [makeotfexe] Fix memory consumption issue
([#968](https://github.com/adobe-type-tools/afdko/pull/968),
[#965](https://github.com/adobe-type-tools/afdko/issues/965))
- [makeotfexe] Import fealib tests (thanks @khaledhosny!)
([#973](https://github.com/adobe-type-tools/afdko/pull/973))
- [makeinstancesufo] Fix potential issue with temp files
([#976](https://github.com/adobe-type-tools/afdko/pull/976))
- [otc2otf] Rewrite, fix `-t` option, increase test coverage
([#978](https://github.com/adobe-type-tools/afdko/pull/978))
- [python][c] Numerous fixes for LGTM-reported issues
([LGTM.com/afdko](https://lgtm.com/projects/g/adobe-type-tools/afdko/history/))
- [makeotf] Fix path issue in Mac OS X 10.15 Catalina
([#991](https://github.com/adobe-type-tools/afdko/pull/991))
- [requirements] Relax pinning
([#997](https://github.com/adobe-type-tools/afdko/pull/997),
[#408](https://github.com/adobe-type-tools/afdko/issues/408))
- [fea-spec]
- Fix example for mark glyph positioning (thanks @anthrotype!)
([#999](https://github.com/adobe-type-tools/afdko/pull/999))
- Improve formatting and grammar (thanks @sergeresko!)
([#1031](https://github.com/adobe-type-tools/afdko/pull/1031))
- [otf2ttf] Enhance for Collections, parallel processing, and file wildcards (thanks @msoxzw!)
([#1000](https://github.com/adobe-type-tools/afdko/pull/1000))
- [makeotfexe] Increase code coverage (thanks @khaledhosny!)
([#1008](https://github.com/adobe-type-tools/afdko/pull/1008))
- [docs] update documentation of hex format for GlyphOrderAndAliasDB, multiple Unicodes (thanks @benkiel!)
([#1028](https://github.com/adobe-type-tools/afdko/pull/1028),
[#1024](https://github.com/adobe-type-tools/afdko/pull/1024))
- [makeotfexe] fix calculation of OS/2.ulCodePageRange bits
([#1039](https://github.com/adobe-type-tools/afdko/pull/1042),
[#1040](https://github.com/adobe-type-tools/afdko/issues/1040))
- [dependencies] Update `psautohint` and `fontTools` to latest
([#1043](https://github.com/adobe-type-tools/afdko/pull/1043),
[#1057](https://github.com/adobe-type-tools/afdko/pull/1057))
3.0.1 (released 2019-08-22)
---------------------------
- [tx] Dump each _flex_ hint as a single line
([#915](https://github.com/adobe-type-tools/afdko/issues/915))
- [tx] Fixed handling of `hmtx` values when instantiating a
CFF2 font with shuffled regions
([#913](https://github.com/adobe-type-tools/afdko/issues/913))
- [tx] Fixed handling of missing glyph names with `-svg`, `-cef`
and `-afm` options
([#905](https://github.com/adobe-type-tools/afdko/pull/905),
[#908](https://github.com/adobe-type-tools/afdko/pull/908))
- [tx] Improved handling of defective CFF2 fonts
([#903](https://github.com/adobe-type-tools/afdko/pull/903),
[#906](https://github.com/adobe-type-tools/afdko/pull/906))
- [ufotools] Corrected the ordering of attributes in GLIF-file
`<point>` elements to "x, y, type" (from "type, x, y")
([#900](https://github.com/adobe-type-tools/afdko/pull/900))
- [makeinstancesufo] Various fixes and enhancements
([#899](https://github.com/adobe-type-tools/afdko/pull/899))
- [checkoutlinesufo] Fixed support for non-UFO font formats
([#898](https://github.com/adobe-type-tools/afdko/pull/898),
[#911](https://github.com/adobe-type-tools/afdko/pull/911))
- [tx] Added support for writting FDSelect format 4
([#890](https://github.com/adobe-type-tools/afdko/issues/890))
3.0.0 (released 2019-08-07)
---------------------------
- **This version supports Python 3.6+ ONLY**
- NOTE: as a result of switching to new components for writing XML,
some formatting of UFO-related XML output is slightly different
from previous versions of AFDKO (ordering of attributes,
self-closing element tags, indents).
- [python] Drop support for Python 2.7
([#741](https://github.com/adobe-type-tools/afdko/issues/741))
- [tx] Only use PUA Unicodes for unencoded glyphs in svg output
([#822](https://github.com/adobe-type-tools/afdko/issues/822))
- [buildcff2vf] Use correct default master for compatibilization
([#816](https://github.com/adobe-type-tools/afdko/issues/816))
- [buildcff2vf] Keep all OT features when subsetting
([#817](https://github.com/adobe-type-tools/afdko/issues/817))
- [buildcff2vf] Fix bug in compatibilization
([#825](https://github.com/adobe-type-tools/afdko/pull/825))
- [various Python] Use fontTools.misc.plistlib
([#711](https://github.com/adobe-type-tools/afdko/issues/711))
- [various Python] Use fontTools.misc.etree
([#712](https://github.com/adobe-type-tools/afdko/issues/712))
- [various C/C++] Improve robustness in several tools
([#833](https://github.com/adobe-type-tools/afdko/pull/833))
- [makeotf] Use absolute paths for temp files
([#828](https://github.com/adobe-type-tools/afdko/issues/828))
- [tx] Write a vsindex before the first blend (if needed)
([#845](https://github.com/adobe-type-tools/afdko/pull/845))
- [tx] Decrement subroutine depth after subroutine call
([#846](https://github.com/adobe-type-tools/afdko/issues/846))
- [otf2ttf] Remove VORG table from TTF output
([#863](https://github.com/adobe-type-tools/afdko/pull/863))
- [makeotf] Prevent code execution
([#780](https://github.com/adobe-type-tools/afdko/issues/780),
[#877](https://github.com/adobe-type-tools/afdko/pull/877))
- [makeotfexe] Port tx subroutinizer
([#331](https://github.com/adobe-type-tools/afdko/issues/331))
- [tx] Add support for reading FDSelect format 4
([#799](https://github.com/adobe-type-tools/afdko/issues/799))
- [tx] Fix handling of IVS region indices
([#835](https://github.com/adobe-type-tools/afdko/pull/835))
- [makeotfexe, makeotf] Limit maximum value for FontRevision
([#876](https://github.com/adobe-type-tools/afdko/issues/876),
[#877](https://github.com/adobe-type-tools/afdko/pull/877))
- [pdflib] Consolidate PDF-related files under afdko/pdflib
([#880](https://github.com/adobe-type-tools/afdko/pull/880))
- [tx] Fix bug in generating SVG from font without FontName
([#883](https://github.com/adobe-type-tools/afdko/issues/883))
2.9.1 (released 2019-06-22)
---------------------------
- **This is the last version that supports Python 2.7**
- [autohint/checkoutlinesufo/ufotools] Fixed and enhanced the
glyph hash calculation. The results now match **psautohint**
version 1.9.3c1
([#806](https://github.com/adobe-type-tools/afdko/pull/806))
- [makeinstancesufo] The `features.fea` file the instance fonts
may include are now preserved (only if none of the masters
have `<features copy="1"/>` set in the designspace file)
- [buildmasterotfs] Removed sparse masters workaround
- [tx] Fixed infinite recursion in call to global subroutines
([#775](https://github.com/adobe-type-tools/afdko/issues/775))
- [spot/makeotfexe] Updated OS/2 Unicode Ranges to match current
OpenType specification
([#813](https://github.com/adobe-type-tools/afdko/issues/813),
[#819](https://github.com/adobe-type-tools/afdko/pull/819))
- [makeotfexe] Fixed MarkToBase bug (NOTE: a font is affected by
this bug only when a base anchor record's coordinates match the
coordinates of the first mark anchor record)
([#815](https://github.com/adobe-type-tools/afdko/pull/815))
- [makeinstancesufo] Improved validation of UFO sources
([#778](https://github.com/adobe-type-tools/afdko/issues/778))
2.8.10 (released 2019-05-28)
---------------------------
- **buildcff2vf** tool was rewritten to support sparse masters,
glyph subsets, and to rely more on `fontTools.varLib`. Existing
options were renamed and new ones were added
([#792](https://github.com/adobe-type-tools/afdko/pull/792),
[#800](https://github.com/adobe-type-tools/afdko/pull/800))
- [mergefonts] Ignore height advance value in UFO glyph files
([#795](https://github.com/adobe-type-tools/afdko/pull/795))
2.8.9 (released 2019-04-29)
---------------------------
- OpenType Feature File specification was converted to markdown
and is now hosted at https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html
([#777](https://github.com/adobe-type-tools/afdko/pull/777))
- [tx] Ignore height advance value in UFO glyph files
([#786](https://github.com/adobe-type-tools/afdko/issues/786))
2.8.8 (released 2019-03-15)
---------------------------
- [makeotf] Reverted the preference for `features.fea` file made
in **afdko** version 2.8.6
([#765](https://github.com/adobe-type-tools/afdko/issues/765))
- [sfntedit] Skip missing tables and issue a warning instead of
exiting with fatal error
([#160](https://github.com/adobe-type-tools/afdko/issues/160))
- [sfntdiff] Enabled diff'ing different font formats
([#626](https://github.com/adobe-type-tools/afdko/issues/626))
2.8.7 (released 2019-03-08)
---------------------------
- Fixed installation on Cygwin OS
([#748](https://github.com/adobe-type-tools/afdko/issues/748))
- [tx] Fixed blend overflow error
([#684](https://github.com/adobe-type-tools/afdko/issues/684))
- [tx] Fixed error in delta array calculation
([#758](https://github.com/adobe-type-tools/afdko/issues/758))
- [makeotfexe] Fixed detection of offset overflow to a feature parameter
([#746](https://github.com/adobe-type-tools/afdko/issues/746))
- [makeotf] Fixed duplicate warning messages coming from tx
([#751](https://github.com/adobe-type-tools/afdko/issues/751))
- [makeotf] Fixed error message when tool is ran without arguments
and default named files cannot be found
([#755](https://github.com/adobe-type-tools/afdko/issues/755))
- Updated AGD.txt
([#750](https://github.com/adobe-type-tools/afdko/issues/750))
- [makeinstancesufo] Fixed failure when `filename` attribute in
designspace's `<instance>` element has no leading folder path.
Fixed copying non-kerning groups.
([#753](https://github.com/adobe-type-tools/afdko/issues/753))
- [makeinstancesufo] Fixed anisotropic interpolation
([#756](https://github.com/adobe-type-tools/afdko/issues/756))
2.8.6 (released 2019-03-01)
---------------------------
- Updated FEA syntax spec to allow `subtable` statements in lookups
other than PairPos Format 2.
- [makeotf] Added `features.fea` to list of default FEA file names,
and gave preference to it
- [tx] Don't fake font name or version if they're not in the source UFO
([#437](https://github.com/adobe-type-tools/afdko/issues/437))
- [makeinstancesufo] Added `--ufo-version` option
- [otfpdf/ttfpdf] Round glyph bounds values
([#128](https://github.com/adobe-type-tools/afdko/issues/128))
- [otfpdf] Provide a glyphset to the pens
([#125](https://github.com/adobe-type-tools/afdko/issues/125))
- [tx] Get UFO's layer file names from the layer's contents.plist
([#740](https://github.com/adobe-type-tools/afdko/issues/740),
[#703](https://github.com/adobe-type-tools/afdko/issues/703))
- [ufotools] Replace `convertGlyphOutlineToBezString()` by
`get_glyph_bez()` from **psautohint**
([#715](https://github.com/adobe-type-tools/afdko/issues/715))
- [makeotf] Update and re-format documentation
([#702](https://github.com/adobe-type-tools/afdko/issues/702))
- [makeotf] Use FontTools to copy font tables
([#739](https://github.com/adobe-type-tools/afdko/pull/739))
- [makeotf] Delete zero-size font on failure
([#736](https://github.com/adobe-type-tools/afdko/issues/736))
2.8.5 (released 2019-02-09)
---------------------------
- [tx] Improved subroutinization. Removal of futile subroutines
is now the default. `-no_futile` option has been deprecated
([#704](https://github.com/adobe-type-tools/afdko/pull/704))
- [buildmasterotfs] Fixed failure when master UFOs and designspace
file are in the same directory
- [buildcff2vf] Fixed type error bug
- [fdkutils] Fixed UnicodeDecodeError on py27 Windows
([#719](https://github.com/adobe-type-tools/afdko/issues/719))
- [tx] Fixed failure processing already-subroutinized CFF2 font
([#721](https://github.com/adobe-type-tools/afdko/issues/721))
- [tx] Fixed wrong entries in Standard Apple Glyph Ordering
([#727](https://github.com/adobe-type-tools/afdko/pull/727))
- [makeotfexe] Added support for shorthand syntax for contextual
multiple substitutions `sub a b' c by d e;`
([#725](https://github.com/adobe-type-tools/afdko/issues/725))
- [makeotfexe] Fixed infinite loop
([#728](https://github.com/adobe-type-tools/afdko/pull/728))
- [makeotfexe] Allow glyph at GID 0 in glyph classes
([#726](https://github.com/adobe-type-tools/afdko/issues/726))
- [ufotools] Skip `<dict>` elements inside `<array>`
([#700](https://github.com/adobe-type-tools/afdko/issues/700))
- [tx] Support self-closing `<dict/>` in UFO's lib.plist
([#701](https://github.com/adobe-type-tools/afdko/issues/701))
- [makeotfexe] Fixed detection of offset overflow error
([#731](https://github.com/adobe-type-tools/afdko/issues/731))
- [makeotfexe] Fixed application of `useExtension` to anonymous lookups
([#321](https://github.com/adobe-type-tools/afdko/issues/321))
- [tx] Support UFO3 guidelines
([#705](https://github.com/adobe-type-tools/afdko/issues/705))
2.8.4 (released 2019-01-09)
---------------------------
- [ufotools] Python 3 fix
([#676](https://github.com/adobe-type-tools/afdko/pull/676))
- [tx] Fixed `-dcf` option failing to print CFF2 global subrs
([#681](https://github.com/adobe-type-tools/afdko/pull/681))
- [tx] Fixed subroutinizer 64K limit
([#687](https://github.com/adobe-type-tools/afdko/pull/687))
- [makeinstancesufo] Switched from using mutatorMath to
ufoProcessor
([#669](https://github.com/adobe-type-tools/afdko/pull/669))
- [makeinstancesufo] Switched from using autohint to psautohint
([#689](https://github.com/adobe-type-tools/afdko/pull/689))
- [makeotf] Fixed calls to `sfntedit`
([#690](https://github.com/adobe-type-tools/afdko/pull/690))
- [checkoutlinesufo] Fixed failure to remove overlaps
([#239](https://github.com/adobe-type-tools/afdko/issues/239))
- [checkoutlinesufo] Fixed glyph hashes when using `-w` option
([#692](https://github.com/adobe-type-tools/afdko/pull/692))
- [spot] Updated OpenType feature tags to v1.8.3
([#693](https://github.com/adobe-type-tools/afdko/pull/693))
- [makeotfexe] Fixed "glyph not in font" error
([#698](https://github.com/adobe-type-tools/afdko/pull/698))
- [tx] Fixed CFF2 blend/path optimization
([#697](https://github.com/adobe-type-tools/afdko/pull/697))
- [otc2otf] Fixed file path bugs
([#708](https://github.com/adobe-type-tools/afdko/issues/708))
- [ttfcomponentizer] Fixed setting first component flag
([#709](https://github.com/adobe-type-tools/afdko/issues/709))
- [ttfcomponentizer] Update `maxp` maxComponentElements value
([#710](https://github.com/adobe-type-tools/afdko/issues/710))
2.8.3 (released 2018-11-02)
---------------------------
- New `otf2ttf` tool that converts OpenType-CFF fonts to TrueType.
([#625](https://github.com/adobe-type-tools/afdko/pull/625))
- [tx] Font and glyph bounding box values are updated now
([#618](https://github.com/adobe-type-tools/afdko/issues/618),
[#655](https://github.com/adobe-type-tools/afdko/issues/655))
- [makeotfexe] CFF table `FontBBox` values are updated now
([#617](https://github.com/adobe-type-tools/afdko/issues/617))
- [makeotfexe] Removed warning about the font's major version number
([#622](https://github.com/adobe-type-tools/afdko/pull/622))
- [makeotfexe] Fixed garbage in subtable overflow messages
([#313](https://github.com/adobe-type-tools/afdko/issues/313))
- [makeotfexe] Clarified path resolution of `include` statements
([#164](https://github.com/adobe-type-tools/afdko/issues/164))
- [makeotfexe] Raised limit of feature file include recursion to 50
([#628](https://github.com/adobe-type-tools/afdko/issues/628))
- [mergefonts] Fixed warning messages
([#635](https://github.com/adobe-type-tools/afdko/issues/635))
- [autohint] Fixed failure when path contained spaces
([#654](https://github.com/adobe-type-tools/afdko/pull/654))
- [proofpdf/waterfallplot] Various PDF-related fixes
([#638](https://github.com/adobe-type-tools/afdko/pull/638))
- [beztools] Fixed hintLimit calculation on py3
([#629](https://github.com/adobe-type-tools/afdko/issues/629))
- [comparefamily] Updated script and language lists to OpenType spec v1.8.3
([#592](https://github.com/adobe-type-tools/afdko/issues/592))
- [comparefamily] Fixed various crashes
([#663](https://github.com/adobe-type-tools/afdko/pull/663),
746ddeb4dc995e9975f9a8851d23ed226811fdaa)
- [makeinstancesufo] Improved the tool's options
([#662](https://github.com/adobe-type-tools/afdko/pull/662))
- [ufotools] Changed name of UFO processed layer from
`AFDKO ProcessedGlyphs` to `com.adobe.type.processedglyphs`
([#662](https://github.com/adobe-type-tools/afdko/pull/662))
2.8.2 (released 2018-09-18)
---------------------------
- Switched to `autohintexe` from `psautohint` (v1.8.1) package
([#596](https://github.com/adobe-type-tools/afdko/pull/596),
[#606](https://github.com/adobe-type-tools/afdko/pull/606))
- Added 64-bit (`win_amd64`) wheel for Windows
([#609](https://github.com/adobe-type-tools/afdko/pull/609))
- [snftdiff/snftedit] Fixed exit codes
([#613](https://github.com/adobe-type-tools/afdko/pull/613))
- [makeotfexe] Fixed exit codes
([#607](https://github.com/adobe-type-tools/afdko/pull/607))
- [makeotfexe] Fixed bug in setting Unicode values
([#609](https://github.com/adobe-type-tools/afdko/pull/609))
- [makeotf] Fixed calculation of relative paths when the input
paths are not on the same drive
([#605](https://github.com/adobe-type-tools/afdko/pull/605))
2.8.1 (released 2018-09-07)
---------------------------
- Made the wheels 'universal' py2.py3
([#595](https://github.com/adobe-type-tools/afdko/pull/595))
2.8.0 (released 2018-09-07)
---------------------------
- Added support for Python 3
([#593](https://github.com/adobe-type-tools/afdko/pull/593))
- Added **psautohint** to the list of installed packages
- [makeotfexe] Fixed contents of `GDEF` table when using
`LigatureCaretByPos` and `LigatureCaretByIndex` keywords
([#556](https://github.com/adobe-type-tools/afdko/pull/556))
- [stemhist] Fixed exit codes. Removed duplicate results from
output and fixed its sorting
([#552](https://github.com/adobe-type-tools/afdko/pull/552))
- [tx] Made subroutinization results deterministic
([#541](https://github.com/adobe-type-tools/afdko/pull/541))
- [makeotfexe] Fixed the creation of secondary lookups with
`useMarkFilteringSet` flag
([#538](https://github.com/adobe-type-tools/afdko/pull/538))
- [type1] Implemented `-h` option. Fixed exit codes
([#537](https://github.com/adobe-type-tools/afdko/pull/537))
- [detype1] Fixed exit codes
([#536](https://github.com/adobe-type-tools/afdko/pull/536))
- [autohint] Fixed file conflicts when running concurrent processes
([#534](https://github.com/adobe-type-tools/afdko/pull/534))
- [makeotf] Fixed `-cn` option
([#525](https://github.com/adobe-type-tools/afdko/pull/525))
- [spot] Fixed crash with `-t GPOS=7` option
([#520](https://github.com/adobe-type-tools/afdko/pull/520))
- [tx] Added support for colon `:` in UFO glyph names
([#518](https://github.com/adobe-type-tools/afdko/pull/518))
- [makeotf] Fixed `-ga` and related options
([#514](https://github.com/adobe-type-tools/afdko/pull/514))
- Changed tools' and scripts' names to all lowercase
([#511](https://github.com/adobe-type-tools/afdko/pull/511))
- Major reorganization of directory structure and package structure
([#508](https://github.com/adobe-type-tools/afdko/pull/508))
- [spot] Fixed crash with `-t GPOS=6` option
([#500](https://github.com/adobe-type-tools/afdko/pull/500))
- [makeotfexe] Allow mark-to-base statements to reference
different sets of mark classes
([#499](https://github.com/adobe-type-tools/afdko/pull/499))
- [makeotfexe] Allow any languages under `DFLT` script
([#498](https://github.com/adobe-type-tools/afdko/pull/498))
- [tx] Exit gracefully when a fatal error occurs
([#495](https://github.com/adobe-type-tools/afdko/pull/495))
- Removed scripts `BuildMMFont.py`, `checkUFOProcessedLayer.py`
and tools `copycffcharstrings`, `kerncheck`, `makeinstances`
([#490](https://github.com/adobe-type-tools/afdko/pull/490),
[#558](https://github.com/adobe-type-tools/afdko/pull/558))
- [checkoutlinesufo] Support processing UFO3 fonts
([#482](https://github.com/adobe-type-tools/afdko/pull/482))
- [autohint/checkoutlinesufo/makeinstancesufo] Harmonized dot-progress
([#478](https://github.com/adobe-type-tools/afdko/pull/478))
- [tx] Fixed incorrect warning when converting to CFF a CFF2
variable font with non-varying glyphs
([#476](https://github.com/adobe-type-tools/afdko/pull/476))
- [tx] Fixed failure to dump CFF2 variable font containing many
hints. Fixed bug in writing CFF2 fonts with FDSelect
([#467](https://github.com/adobe-type-tools/afdko/pull/467))
- [makeotfexe] Zero the advance width of source glyphs with
negative advance width
([#460](https://github.com/adobe-type-tools/afdko/pull/460))
- [makeotf] Support file paths containing non-ASCII characters.
Fixed warning about feature file not containing a `vert` feature.
Removed non-essential **Adobe Cmaps** files. Fixed `-shw`/`-nshw`
options. Fixed documentation of `-cs`/`-cl` options. Changed handling
of CID fonts: the output OTF is now saved in the same directory
as the input font (this matches the handling of non-CID formats;
use option `-o .` to get the old behavior). Support building in
release mode from Type 1 font without GlyphOrderAndAliasDB file
([#458](https://github.com/adobe-type-tools/afdko/pull/458))
- [tx] Fixed crash processing UFOs containing `<note>` elements
([#455](https://github.com/adobe-type-tools/afdko/pull/455))
- [tx] Fixed calculation of FontBBox values. Fixed crash processing
UFOs containing `<anchor>` elements. Added support for UFO's empty
arrays expressed as `<array/>` instead of `<array></array>`
([#452](https://github.com/adobe-type-tools/afdko/pull/452))
- [makeotf] Removed support for UFOs without `postscriptFontName`.
Enabled output option to be a folder only
([#451](https://github.com/adobe-type-tools/afdko/pull/451))
- [buildmasterotfs] Added support for designspace files without
`<instances>` element
([#449](https://github.com/adobe-type-tools/afdko/pull/449))
- [tx] Emit warning instead of error for charstrings longer
than 65535 bytes
([#446](https://github.com/adobe-type-tools/afdko/pull/446),
[#597](https://github.com/adobe-type-tools/afdko/pull/597))
2.7.2 (released 2018-06-27)
---------------------------
- Implemented an integration testing framework
([#346](https://github.com/adobe-type-tools/afdko/pull/346))
- [ttxn] Fixed ClassRecord AttributeError
([#350](https://github.com/adobe-type-tools/afdko/issues/350))
- [ttxn] Trailing spaces are now stripped from script and language tags
- [tx] Get blended glyph stems when the output is not CFF2
([#378](https://github.com/adobe-type-tools/afdko/pull/378))
- [spot] Fixed crash due to buffer overrun errors from long glyph names
([#373](https://github.com/adobe-type-tools/afdko/issues/373))
- [ProofPDF] Added 'pageIncludeTitle' option
([#379](https://github.com/adobe-type-tools/afdko/pull/379))
- [ProofPDF] Removed search for 'CID charsets' folder
([#368](https://github.com/adobe-type-tools/afdko/pull/368))
- Removed **CID charsets** folder and its contents
([#264](https://github.com/adobe-type-tools/afdko/issues/264),
[#368](https://github.com/adobe-type-tools/afdko/pull/368))
- [ProofPDF] Fixed broken 'lf' option (CID layout)
([#382](https://github.com/adobe-type-tools/afdko/issues/382))
- [ProofPDF] Fixed crash when font has no BlueValues
([#394](https://github.com/adobe-type-tools/afdko/issues/394))
- [makeinstancesufo] Disabled ufonormalizer's writeModTimes option.
Fixed Windows command
([#413](https://github.com/adobe-type-tools/afdko/pull/413))
- [ufoTools] Fixed line breaks when writting UFOs files on Windows
([#413](https://github.com/adobe-type-tools/afdko/pull/413))
- [makeotf] Implemented correct exit codes
([#417](https://github.com/adobe-type-tools/afdko/issues/417))
- [tx] Fixed Windows crash
([#195](https://github.com/adobe-type-tools/afdko/issues/195))
- [tx] Fixed crash handling copyright symbol in UFO trademark string
([#425](https://github.com/adobe-type-tools/afdko/pull/425))
- [makeotf] Ignore trailing slashes in input font path
([#280](https://github.com/adobe-type-tools/afdko/issues/280))
2.7.0 (released 2018-05-09)
---------------------------
- New `ttfcomponentizer` tool that componentizes TrueType fonts using
the component data of a related UFO font.
([#293](https://github.com/adobe-type-tools/afdko/pull/293))
- [CheckOutlinesUFO] Replaced Robofab's pens with FontPens'
([#230](https://github.com/adobe-type-tools/afdko/issues/230))
- Removed `extractSVGTableSVGDocs.py` and
`importSVGDocsToSVGTable.py`. These are superseded by the scripts at
<https://github.com/adobe-type-tools/opentype-svg/>
- Removed `cmap-tool.pl`, `fdarray-check.pl`, `fix-fontbbox.pl`,
`glyph-list.pl`, `hintcidfont.pl`, `setsnap.pl` and `subr-check.pl`.
These Perl scripts are available from
<https://github.com/adobe-type-tools/perl-scripts>
- Removed **CID\_font\_support** folder and its contents.
- [tx] Fixed assert "out of range region index found in item
variation store subtable"
([#266](https://github.com/adobe-type-tools/afdko/pull/266))
- [makeotfexe] Fixed unnecessary truncation of the Format 4 'cmap'
subtable
([#242](https://github.com/adobe-type-tools/afdko/issues/242))
- [buildCFF2VF] Fix support for CFF2 fonts with multiple FontDicts
([#279](https://github.com/adobe-type-tools/afdko/pull/279))
- [ttxn] Update for latest FontTools version
([#288](https://github.com/adobe-type-tools/afdko/pull/288))
- Added 64-bit support for Mac OSX and Linux
([#271](https://github.com/adobe-type-tools/afdko/pull/271),
[#312](https://github.com/adobe-type-tools/afdko/pull/312),
[#344](https://github.com/adobe-type-tools/afdko/pull/344))
- [tx] Fixed `-dcf` mode failing to dump hinted CFF2 variable font
([#322](https://github.com/adobe-type-tools/afdko/issues/322))
- [tx] Fixed conversion of multi-FD CFF2 font to CID-flavored CFF
font ([#329](https://github.com/adobe-type-tools/afdko/issues/329))
- [tx] Fixed `-cff2` failing to convert CID/CFF1 to CFF2
([#351](https://github.com/adobe-type-tools/afdko/pull/351))
- Wheels for all three environments (macOS, Windows, Linux) are now
available on [PyPI](https://pypi.org/project/afdko) and
[GitHub](https://github.com/adobe-type-tools/afdko/releases)
2.6.25 (released 2018-01-26)
----------------------------
This release fixes the following issues:
- [CheckOutlinesUFO] Skip glyphs whose names are referenced in the
UFO's lib but do not exist
([#228](https://github.com/adobe-type-tools/afdko/issues/228))
- Partial Python 3 support in `BezTools.py`, `ConvertFontToCID.py`,
`FDKUtils.py`, `MakeOTF.py`, `StemHist.py`, `autohint.py`,
`buildMasterOTFs.py` and `ufoTools.py`
([#231](https://github.com/adobe-type-tools/afdko/issues/231),
#232, #233)
- [makeotfexe] Fixed parsing of Character Variant (cvXX) feature
number
([#237](https://github.com/adobe-type-tools/afdko/issues/237))
- [pip] Fixed `pip uninstall afdko`
([#241](https://github.com/adobe-type-tools/afdko/issues/241))
2.6.22 (released 2018-01-03)
----------------------------
The **afdko** has been restructured so that it can be installed as a
Python package. It now depends on the user's Python interpreter, and no
longer contains its own Python interpreter.
In order to do this, the two Adobe-owned, non-opensource programs were
dropped: `IS` and `checkOutlines`. If these turn out to be sorely
missed, an installer for them will be added to the old Adobe afdko
website. The current intent is to migrate the many tests in
checkOutlines to the newer `checkOutlinesUFO` (which does work with
OpenType and Type 1 fonts, but currently does only overlap detection and
removal, and a few basic path checks).
Older releases can be downloaded from the [repository's Releases
page](https://github.com/adobe-type-tools/afdko/releases?after=2.6.22).
2.5.66097 (released 2017-12-01)
-------------------------------
This only lists the major bug fixes since the last release. For a
complete list see:
<https://github.com/adobe-type-tools/afdko/commits/master>
- [buildCFF2VF] Add version check for fontTools module: only
starting with version 3.19.0 does fontTools.cffLib build correct
PrivateDict BlueValues when there are master source fonts not at the
ends of the axes.
- [makeotfexe] Support mapping a glyph to several Unicode values.
This can now be done by providing the the UV values as a
comma-separated list in the third field of the GlyphOrderAndAliasDB
file, in the 'uniXXXXX' format.
- [makeotfexe] Fixed a crashing bug that can happen when the
features file contains duplicate class kern pairs. Reported by
Andreas Seidel in email.
- [makeotfexe] Add fatal messages if a feature file 'cvParameters'
block is used in anything other than a Character Variant (cvXX)
feature, or if a 'featureNames' block is used in anything other
than a Stylistic Set (ssXX) feature.
- [makeotfexe] Relaxed restrictions on name table name IDs. Only 2
and 6 are now reserved for the implementation.
- [makeotfexe] Fixed bug where use of the 'size' feature in
conjunction with named stylistic alternates would cause the last
stylistic alternate name to be replaced by the size feature menu
name. Incidentally removed old patent notices.
- [makeotfexe] Restored old check for the fatal error of two
different glyphs being mapped to the same character encoding.
- [makeotfexe] If the last line of a GOADB file did not end in a
new-line, makeotf quit, saying the line was too long.
- [otf2otc] Can now take a single font as input, and can take an OTC
font as input.
- [sfntdiff] Fixed old bug: it used to crash if no file path or only
one file path was provided.
- [sfntdiff] Changed behavior: it now returns non-zero only if a
real error occurs; it used to return non-zero when there was a
difference between the fonts.
- [spot] Fixed old bug: a PrivateDict must exist, but it is legal
for it to have a length of 0.
- [tx *et al.*] Add support for reading and writing blended hints
from/to CFF2.
2.5.65811 (released 2017-04-27)
-------------------------------
- [makeInstancesUFO] Preserve public.postscriptNames lib key.
- [makeInstancesUFO] Do not use postscriptFontName attribute.
- [makeotf] New option -V to print MakeOTF.py script version.
- [tx] Added new option '-maxs', to set the maximum number of
subroutines allowed. The default is now 32K, as some legacy systems
cannot support more than this.
- [tx] Add improved CFF2 support: tx can now use the option -cff2 to
write from a CFF2 font (in a complete OpenType font) to a file
containing the output CFF2 table, with full charstring optimization
and subroutinization. This last option is still work in progress: it
has not been extensively tested, and does yet support blended hints.
- [tx] Several bug fixes for overlap removal.
- [tx] Fixed bug in subroutinization that could leave a small number
of unused subroutines in the font. This cleanup is optional, as it
requires 3x the processing speed with the option than without, and
typically reduces the font size by less than 0.5 percent.
- [ttxn] Option '-nv' will now print name IDs 3 and 5, but with
the actual version number replaced by the string "VERSION
SUPPRESSED".
- [ufoTools] FIx autohint bug with UFO fonts: if edit a glyph and
re-hint, autohint uses old processed layer glyph.
2.5.65781 (released 2017-04-03)
-------------------------------
- [variable fonts] **buildMasterOTFs** new script to build OTF font
files from UFO sources, when building variable fonts.
- [variable fonts] **buildCFF2VF** new command to build a CFF2
variable font from the master OTF fonts.
- [autohint] Fixed bug introduced by typo on Dec 1 2015. Caused
BlueFuzz to always be set to 1. Rarely causes problems, but found it
with font that sets BlueFuzz to zero; with BlueFuzz set to 1, some
of the alignment zones were filtered out as being closer than
BlueFuzz\*3.
- [autohint] Fixed long-standing bug with UFO fonts where if a glyph
was edited after being hinted, running autohint would process and
output only the old version of the glyph from the processed layer.
- [CheckOutlinesUFO] Added "quiet mode" option.
- [CheckOutlinesUFO] Fixed a bug where logic could try and set an
off-curve point as a start point.
- [CheckOutlinesUFO] Changed the logic for assigning contour order
and start point. The overlap removal changes both, and
checkOutlinesUFO makes some attempt to restore the original state
when possible. These changes will result in different contour order
and start points than before the change, but fixes a bug, and will
usually produce the same contour order and start point in fonts that
are generated as instances from a set of master designs. There will
always be cases where there will be some differences.
- [MakeOTF] Replace old logic for deriving relative paths with
python function for the same.
- [MakeOTF] When converting Type 1 to CID in makeotf, the logic in
mergeFonts and ConvertFontToCID.py was requiring the FDArray
FontDicts to have keys, like FullName, that are not in fact
required, and are often not present in the source fonts. Fixed both
mergeFonts and ConvertFontToCID.py.
- [MakeOTF] By default, makeotf will add a minimal stub DSIG table
in release mode. The new options '-addDSIG' and '-omitDSIG' will
force makeotf to either add or omit the stub DSIG table. This
function was added because the Adobe Type group is discontinuing
signing font files.
- [makeotfexe] Fixed bug in processing UVS input file for makeotf
for non-CID fonts.
- [makeotfexe] Fixed bug where makeotf would reject a nameID 25
record when specified in a feature file. This nameID value used to
be reserved, but is now used for overriding the postscript family
named used with arbitrary instances in variable fonts.
- [mergeFonts] Removed requirement for mergeFonts that each FontDict
have a FullName, Weight, and Family Name. This fixes a bug in using
mergeFonts with UFO sources and converting to CID-keyed output font.
Developers should not have to put these fields in the source fonts,
since they are not required.
- [spot] Fixed bug in name table dump: Microsoft platform language
tags for Big5 and PRC were swapped.
- [stemHist] Removed debug print line, that caused a lot of annoying
output, and was left in the last update by accident.
- [tx] When getting Unicode values for output, the presence of UVS
cmap meant that no UV values were read from any other cmap subtable.
I fixed this bug, but 'tx' still does not support reading and
showing UVS values. Doing so will be a significant amount of work,
so I am deferring that to my next round of FDK work.
- [tx] Added support for CFF2 variable fonts as source fonts: when
using -t1 or -cff, these will be snapshotted to an instance. If no
user design vector (UDV) argument is supplied, then the output will
be the default data. If a UDV argument is supplied with the option
-U, then the instance is built at the specified point in the design
space.
- [tx] Added new option +V/-V to remove overlaps in output Type 1
fonts (mode -t1) and CFF fonts (mode -cff). This is still
experimental.
- [tx] Made the subroutinizer a lot faster; the speed bump is quite
noticeable with CJK fonts. (by Ariza Michiharu)
- [tx] Added new option (+V/-V) to remove overlaps. (by Ariza
Michiharu)
- [ttx] Updated to version 3.9.1 of the fontTools module from master
branch on GitHub.
2.5.65322 (released 2016-05-27)
-------------------------------
- [CMAP files] Updated UniCNS-UTF32-H to v1.14
- [build] Made changes to allow compiling under Xcode 7.x and OSX
10.11
- [documentation] Fixed a bunch of errors in the Feature File spec.
My thanks to Sascha Brawer, who has been reviewing it carefully. See
the issues at
<https://github.com/adobe-type-tools/afdko/issues/created_by/brawer>.
- [autohint] Fixed support for history file, which can be used with
non-UFO fonts only. This has been broken since UFO support was
added.
- [autohintexe] Fixed really old bug: ascenders and descenders get
dropped from the alignment zone report if they are a) not in an
alignment zone and b) there is an overlapping smaller stem hint.
This happened with a lot of descenders.
- [checkOutlines] Fixed bug in ufoTools.py that kept checkOutlines
(NOT checkOutlinesUFO) from working with a UFO font.
- [checkOutlines] Fixed bug which misidentified orientation of path
which is very thin and in part convex. I am a bit concerned about
the solution, as what I did was to delete some logic that was used
to double-check the default rules for determining orientation.
However, the default logic is the standard way to determine
orientation and should always be correct. The backup logic was
definitely not always correct as it was applied only to a single
point, and was correct only if the curve associated with the point
is concave. It is in fact applied at several different points on a
path, with the majority vote winning. Since the backup logic is used
only when a path is very thin, I suspect that it was a sloppy
solution to fix a specific case. The change was tested with several
large fonts, and found no false positives.
- [makeInstances] Fixed bug which produced distorted shapes for
those glyphs which were written with the Type 1 'seac' operator,
a.k.a. Type 1 composite glyphs.
- [makeotfexe] Fixed bug where using both kern format A and B in a
single lookup caused random values to be assigned.
- [makeotfexe] Fixed bug where a format A kern value (a single
value) would be applied to X positioning rather than Y positioning
for the features 'vkrn'. Applied same logic to vpal, valt, and
vhal.
- [makeotfexe] Finally integrated Georg Seifert's code for
supporting hyphen in development glyph names. This version differs
from Georg's branch in that it does not allow any of the special
characters in final names (i.e. the left side names in the
GlyphAliasAndOrderDB). However, allowing this is a smaller tweak
than it used to be: just use the same arguments in
`cb.c:gnameFinalScan()` as in `gnameDevScan()`. This update also
includes Georg's changes for allow source fonts to have CID names
in the form 'cidNNNN'.
- [ConvertToCID] Fixed bug that the script expected in several
places that the fontinfo file would contain at least one user
defined FontDict.
- [ConvertToCID] Fixed bug that the script expected that the source
font would have Weight and Adobe Copyright fields in the font dict.
- [makeotf] Fixed a bug that kept the '-nS' option for having any
effect when the '-cn' option is used.
- [makeotfexe] Remove use of 'strsep()'; function is not defined
in the Windows C library.
- [makeotf] Fixed bug in removing duplicate and conflicting entries.
Changed logic to leave the first pair defined out of a set of
duplicate or conflicting entries.
- [makeotfexe] Fixed bug in processing GDEF glyph class statements:
if multiple GlyphClass statements were used; the additional glyphs
were added to a new set of 4 glyph classes, rather than merged with
the allowed 4 glyph classes.
- [makeotfexe] Fixed issue in GDEF definition processing. Made it an
error to specify both LigCaretByPosition and LigCaretByIndex for a
glyph.
- [makeotfexe] Corrected error message: language and system
statements are allowed in named lookups within a feature definition,
but are not allowed in stand-alone lookups.
- [makeotf] Corrected typo in MakeOTF.py help text about what the
default source font path.
- [makeotfexe] Fixed an old bug in makeotf. If a mark-to-base or
mark-to-mark lookup has statements that do not all reference the
same mark classes, makeotfexe used to write a 'default' anchor
attachment point of (0.0) for any mark class that was not referenced
by a given statement. Fixed this bug by reporting a fatal error: the
feature file must be re-written so that all the statements in a
lookup must all reference the same set of mark classes.
- [makeotf] Suppressed warning about not using GOADB file when
building a CID font. Some of the changes I made a few weeks ago to
allow building fonts with CIDs specified as glyphs names with the
form 'cidNNNNN' allowed this warning to be be shown, but it is not
appropriate for CID-keyed fonts.
- [makeotf] Fixed old bug where using option -'cn' to convert a
non-CID source font to CID would cause a mismatch between the maxp
table number of glyphs and the number of glyph actually in the output
font, because the conversion used the source font data rather than
the first pass name-keyed OTF which had been subject to glyph
subsetting with the GOADB file.
- [makeotf] Fixed bug in reading UVS files for non\_CID fonts.
- Fixed copyright statements that are incompatible with the open
source license. Thanks to Dmitry Smirnov for pointing these out.
These were in some make files, an example Adobe CMAP file, and some
of the technical documentation.
- Fixed typos in help text in ProofPDF.py. Thank you Arno Enslin.
- [ttxn] Fixed bug in ttxn.py that broke it when dumping some
tables, when used with latest fontTools library.
- [tx] Fixed bug in rounding fractional values when flattening
library elements, used in design of CJK fonts.
- [tx] Fixed bug in handling FontDict FontMatrix array values: not
enough precision was used, so that 1/2048 was written as 1/2049 in
some cases.
- [tx] Fixed bug in reading UFO fonts, so that glyphs with no
`<outline>` element and with a `<lib>` element would be skipped.
- [tx] Minor code changes to allow 'tx' to compile as a 64 bit
program.
- [tx] Fixed bug in dumping AFM format data, introduced when tx was
updated to be 64 bit.
- [tx] Fixed bug in processing seac, introduced in work on rounding
fractional values.
- [tx] Fixed bug in writing AFM files: -1 value would be written as
4294967295 instead of -1.
- [tx] Added option -noOpt, renamed blend operator from 'reserved'
to 'blend'. This was done in order to support experiments with
multiple master fonts.
- [tx] When reading a UFO font: if it has no Postscript version
entry, set the version to 1.0.
- [tx] When writing a UFO font: if StemSnap[H,V] are missing, but
Std[H,V]W are present, use the Std[H,V]W values to supply the
UFO's postscript StemSnap[H,V] values.
- [tx] Fixed old bug with rounding decimal values for BlueScale is
one of the few Postscript values with several places of decimal
precision. It is stored as an ASCII text decimal point number in T1,
T2, and UFO files, but is stored internally as a C 'float' value
in some programs. Real values in C cannot exactly represent all
decimal values. For example, the closest that a C 'float' value
can come to "0.375" is "0.03750000149".When writing output
fonts, tx was writing out the latter value in ASCII text, rather
than rounding back to 0.0375. Fixed by rounding to 8 decimal places
on writing the value out. This bug had no practical consequences, as
0.0375 and 0.03750000149 both convert to exactly the same float
value, but was annoying, and could cause rounding differences in any
programs that use higher precision fields to hold the BlueScale
value.
2.5.65012 (released 2015-12-01)
-------------------------------
- [makeotf] Fixed bug that kept makeotfexe from building fonts with
spaces in the path.
- [ConvertFontToCID] Fixed bug that kept makeotf from converting UFO
fonts to CID.
- [makeotf] Changed support for Unicode Variation Sequence file
(option '-ci') so that when used with name-keyed fonts, the
Region-Order field is omitted, and the glyph name may be either a
final name or developer glyph name. Added warning when glyph in the
UVS entry is not found in font. See MakeOTF User's Guide.
- [makeotfexe] now always makes a cmap table subtable MS platform,
Unicode, format 4 for CID fonts. This is required by Windows. If
there are no BMP Unicode values, then it makes a stub subtable,
mapping GID 0 to UVS 0.
- [tx *et al.*] When reading a UFO source font, do not complain if
the fontinfo.plist entry `styleName` is present but has an empty
string. This is valid, and is common when the style is **Regular**.
2.5.64958 (released 2015-11-22)
-------------------------------
- [autohint/tx] Switched to using new text format that is
plist-compatible for T1 hint data in UFO fonts. See header of
ufoTools.py for format.
- [autohint] Finally fixed excessive generation of flex hints. This
has been an issue for decades, but never got fixed because it did
not show up anywhere as a problem. The last version of makeotf
turned on parsing warnings, and so now we notice.
- [checkOutlinesUFO] Fixed bug where abutting paths did not get
merged if there were no changes in the set of points.
- [checkOutlinesUFO] Fixed bug where a `.glif` file without an
`<outline>` element was treated as fatal error. It is valid for the
`<outline>` element to be missing.
- [checkOutlines] Changed -I option so that it also turns off
checking for tiny paths. Added new option -5 to turn this check back
on again.
- [checkOutlinesUFO] Increased max number of paths in a glyph from
64 to 128, per request from a developer.
- [CompareFamily] Fixed old bug in applying ligature width tests for
CID fonts, and fixed issue with fonts that do not have Mac name
table names. The logic now reports missing Mac name table names only
if there actually are some: if there are none, these messages are
suppressed.
- [fontplot/waterfallplot/hintplot/fontsetplot] Fixed bugs that
prevented these from being used with CID-keyed fonts and UFO fonts.
Since the third party library that generates the PDF files is very
limited, I did this by simply converting the source files to a
name-keyed Type 1 temporary font file, and then applying the tools
the temporary file.
- [makeInstancesUFO] Added a call to the ufonormalizer tool for each
instance. Also added a call to the defcon library to remove all
private lib keys from lib.py and each glyph in the default layer,
excepting only "public.glyphOrder".
- Fixed typos in MakeOTF User Guide reported by Gustavo Ferreira
- [MakeOTF] Increased max number of directories to look upwards when
searching for GOADB and FontMenuNameDB files from 2 to 3.
- [MakeOTF/makeotfexe] Added three new options:
- `omitMacNames` and `useMacNames` write only Windows platform
menu names in name table, apart from the names specified in
the feature file. `useMacNames` writes Mac as well as
Windows names.
- `overrideMenuNames` allows feature file name table entries
to override default values and the values from the
FontMenuNameDB for name IDs. NameIDs 2 and 6 cannot be
overridden. Use this with caution, and make sure you have
provided feature file name table entries for all platforms.
- `skco`/`nskco` do/do not suppress kern class optimization by
using left side class 0 for non-zero kern values. Optimizing
saves a few hundred to thousand bytes, but confuses some
programs. Optimizing is the default behavior, and previously
was the only option.
- [MakeOTF] Allow building an OTF from a UFO font only. The internal
`features.fea` file will be used if there is no `features` file in
the font's parent directory. If the GlyphAliasAndOrderDB file is
missing, only a warning will be issued. If the FontMenuNameDB is
missing, makeotf will attempt to build the font menu names from the
UFO fontinfo file, using the first of the following keys found:
`openTypeNamePreferredFamilyName`, `familyName`, the family name
part of the `postScriptName`, and finally the value
**NoFamilyName**. For style, the keys are:
`openTypeNamePreferredSubfamilyName`, `styleName`, the style name
part of the `postScriptName`, and finally the value **Regular**.
- [MakeOTF] Fixed bug where it allowed the input and output file
paths to be the same.
- [makeotfexe] Extended the set of characters allowed in glyph names
to include `+ * : ~ ^ !`.
- [makeotfexe] Allow developer glyph names to start with numbers;
final names must still follow the PS spec.
- [makeotfexe] Fixed crashing bug with more than 32K glyphs in a
name-keyed font, reported by Gustavo Ferreira.
- [makeotfexe] Merged changes from Khaled Hosny, to remove
requirement that 'size' feature menu names have Mac platform
names.
- [makeotfexe] Code maintenance in generation of the feature file
parser. Rebuilt the 'antler' parser generator to get rid of a
compile-time warning for zzerraction, and changed featgram.g so that
it would generate the current featgram.c, rather than having to edit
the latter directly. Deleted the object files for the 'antler'
parser generator, and updated the read-me for the parser generator.
- [makeotfexe] Fixed really old bug: relative include file
references in feature files have not worked right since the FDK
moved from Mac OS 9 to OSX. They are now relative to the parent
directory of the including feature file. If that is not found, then
makeotf tries to apply the reference as relative to the main feature
file.
- [spot] Fixed bug in dumping stylistic feature names.
- [spot] Fixed bug proofing vertical features: needed to use vkern
values. Fix contributed by Hiroki Kanou.
- [tx *et all.*] Fix crash when using '-gx' option with source UFO
fonts.
- [tx *et all.*] Fix crash when a UFO glyph point has a name
attribute with an empty string.
- [tx *et all.*] Fix crash when a UFO font has no public.glyphOrder
dict in the lib.plist file.
- [tx *et all.*] Fix really old bug in reading TTF fonts, reported
by Belleve Invis. TrueType glyphs with nested component references
and x/y offsets or translation get shifted.
- [tx *et all.*] Added new option '-fdx' to select glyphs by
excluding all glyphs with the specified FDArray indices. This and
the '-fd' option now take lists and ranges of indices, as well as
a single index value.
- Added a command to call the ufonormalizer tool.
- Updated to latest version of booleanOperatons, defcon (ufo3 branch),
fontMath (ufo3 branch), fontTools, mutatorMath, and robofab (ufo3
branch). The AFDKO no longer contains any private branches of third
party modules.
- Rebuilt the Mac OSX, Linux and Windows Python interpreters in the
AFDKO, bringing the Python version up to 2.7.10. The Python
interpreters are now built for 64-bit systems, and will not run on
32-bit systems.
2.5.64700 (released 2015-08-04)
-------------------------------
- [ufoTools] Fixed bug that was harmless but annoying. Every time
that `autohint -all` was run, it added a new program name entry to
the history list in the hashmap for each processed glyph. You saw
this only if you opened the hashmap file with a text editor, and
perhaps eventually in slightly slower performance.
- [checkOutlinesUFO] Fixed bug where presence of outlines with only
one or two points caused a stack dump.
- [makeotf] Fixed bug reported by Paul van der Laan: failed to build
TTF file when the output file name contains spaces.
- [spot] Fixed new bug that caused spot to crash when dumping GPOS
'size' feature in feature file format.
2.5.64655 (released 2015-07-17)
-------------------------------
- [ufoTools] Fixed bug which placed a new hint block after a flex
operator, when it should be before.
- [autohint] Fixed new bug in hinting non-UFO fonts, introduced by
the switch to absolute coordinates in the bez file interchange
format.
- [ufoTools] Fixed bugs in using hashmap to detect previously hinted
glyphs.
- [ufoTools] Fixed bugs in handling the issue that
checkOutlinesUFO.py (which uses the defcon library to write UFO glif
files) will in some cases write glif files with different file names
than they had in the default glyph layer.
- [makeotf] Fixed bug with Unicode values in the absolute path to to
the font home directory.
- [makeotf] Add support for Character Variant (cvXX) feature params.
- [makeotf] Fixed bug where setting Italic style forced OS/2 version
to be 4.
- [spot] Added support for cvXX feature params.
- [spot] Fixed in crash in dumping long contextual substitution
strings, such as in 'GentiumPlus-R.TTF'.
- [tx] Fixed bug in handling CID glyph ID greater than 32K.
- [tx] Changed to write widths and FontBBox as integer values.
- [tx] Changed to write SVG, UFO, and dump coordinates with 2 places
of precision when there is a fractional part.
- [tx] Fixed bugs in handling the '-gx' option to exclude glyphs.
Fixed problem with CID \> 32K. Fixed problem when font has 65536
glyphs: all glyphs after first last would be excluded.
- [tx] Fixed rounding errors in writing out decimal values to cff
and t1 fonts.
- [tx] Increased interpreter stack depth to allow for CUBE operators
(Library elements) with up to 9 blend axes.
- Fixed Windows builds: had to provide a roundf() function, and more
includes for the \_tmpFile function. Fixed a few compile errors.
- Fixed bug in documentation for makeInstancesUFO.
- Fixed bug in BezTools.py on Windows, when having to use a temp file.
2.5.64261 (released 2015-05-26)
-------------------------------
- [autohintexe] Worked through a lot of problems with fractional
coordinates. In the previous release, autohintexe was changed to
read and write fractional values. However, internal value storage
used a Fixed format with only 7 bits of precision for the value.
This meant that underflow errors occurred with 2 decimal places,
leading to incorrect coordinates. I was able to fix this by changing
the code to use 8 bits of precision, which supports 2 decimal places
(but not more!) without rounding errors, but this required many
changes. The current autohint output will match the output of the
previous version for integer input values, with two exceptions.
Fractional stem values will (rarely) differ in the second decimal
place. The new version will also choose different hints in glyphs
which have coordinate values outside of the range -16256 to +16256;
the previous version had a bug in calculating weights for stems.
- [autohint] Changed logic for writing bez files to write absolute
coordinate values instead of relative coordinate values. Fixed bug
where truncation of decimal values lead to cumulative errors in
positions adding up to more than 1 design unit over the length of a
path.
- [tx] Fixed bugs in handling fractional values: `tx` had a bug with
writing fractional values that are very near an integer value for
the modes -dump, -svg, and -ufo. `tx` also always applied the logic
for applying a user transform matrix, even though the default
transform is the identity transform. This has the side-effect of
rounding to integer values.
2.5.64043 (released 2015-04-08)
-------------------------------
- [checkOutlinesUFO] Added new logic to delete any glyphs from the
processed layer which are not in the 'glyphs' layer.
- [makeotf] When building CID font, some error messages were printed
twice.
- [makeotf] Added new option `stubCmap4`. This causes makeotf to
build only a stub cmap 4 subtable, with just two segments. Needed
only for special cases like AdobeBlank, where every byte is an
issue. Windows requires a cmap format 4 subtable, but not that it be
useful.
- [makeCIDFont] Output FontDict was sized incorrectly. A function at
the end adds some FontInfo keys, but did not increment the size of
the dict. Legacy logic is to make the FontInfo dict be 3 larger than
the current number of keys.
- [makeInstanceUFO] Changed AFDKO's branch of mutatorMath so that
kern values, glyph widths, and the BlueValues family of global hint
values are all rounded to integer even when the `decimal` option is
used.
- [makeInstanceUFO] Now deletes the default 'glyphs' layer of the
target instance font before generating the instance. This solves the
problem that when glyphs are removed from the master instances, the
instance font still has them.
- [makeInstanceUFO] Added a new logic to delete any glyphs from the
processed layer which are not in the 'glyphs' layer.
- [makeInstanceUFO] Removed the `all` option: even though
mutatorMath rewrites all the glyphs, the hash values are still valid
for glyphs which have not been edited. This means that if the
developer edits only a few glyphs in the master designs, only those
glyphs in the instances will get processed by checkOutlinesUFO and
autohint.
- Support fractional coordinate values in UFO workflow:
- checkOutlinesUFO (but not checkOutlines), autohint, and
makeInstancesUFO will now all pass through decimal
coordinates without rounding, if you use the new option
"decimal". tx will dump decimal values with 3 decimal
places.
- tx already reported fractional values, but needed to be
modified to report only 3 decimal places when writing UFO
glif files, and in PDF output mode: Acrobat will not read
PDF files with 9 decimal places in position values.
- This allows a developer to use a much higher precision of
point positioning without using a larger em-square. The
Adobe Type group found that using an em-square of other than
1000 design units still causes problems in layout and text
selection line height in many apps, despite it being legal
by the Type 1 and CFF specifications.
- Note that code design issues in autohint currently limit the
decimal precision and accuracy to 2 decimal places: 1.01
works but 1.001 will be rounded to 0.
2.5.63782 (released 2015-03-03)
-------------------------------
- [tx] Fix bug in reading TTFs. Font version was taken from the name
table, which can include a good deal more than just the font
version. Changed to read fontRevision from the head table.
- [detype1] Changed to wrap line only after an operator name, so
that the coordinates for a command and the command name would stay
on one line.
- [otf2otc] Pad table data with zeros so as to align tables on a 4
boundary. Submitted by Cosimo Lupo.
2.5.63718 (released 2015-02-21)
-------------------------------
- [ufoTools] Fixed a bug with processing flex hints that caused
outline distortion.
- [compareFamily] Fixed bug in processing hints: it would miss
fractional hints, and so falsely report a glyph as having no hints.
- [compareFamily] Support processing CFF font without a FullName
key.
- [checkOutlinesUFO] Coordinates are written as integers, as well as
being rounded.
- [checkOutlinesUFO] Changed save function so that only the
processed glyph layer is saved, and the default layer is not
touched.
- [checkOutlinesUFO] Changed so that XML type is written as
'UTF-8' rather than 'utf-8'. This was actually a change in the
FontTools xmlWriter.py module.
- [checkOutlinesUFO] Fixed typos in usage and help text.
- [checkOutlinesUFO] Fixed hash dictionary handling so that it will
work with autohint, when skipping already processed glyphs.
- [checkOutlinesUFO] Fixed false report of overlap removal when only
change was removing flat curve
- [checkOutlinesUFO] Fixed stack dump when new glyph is seen which
is not in hash map of previously processed glyphs.
- [checkOutlinesUFO] Added logic to make a reasonable effort to sort
the new glyph contours in the same order as the source glyph
contours, so the final contour order will not depend on (x,y)
position. This was needed because the pyClipper library (which is
used to remove overlaps) otherwise sorts the contours in (x,y)
position order, which can result in different contour order in
different instance fonts from the same set of master fonts.
- [makeInstancesUFO] Changed so that the option -i (selection of
which instances to build) actually works.
- [makeInstancesUFO] Removed dependency on the presence of
instance.txt file.
- [makeInstancesUFO] Changed to call checkOutlinesUFO rather than
checkOutlines
- [makeInstancesUFO] Removed hack of converting all file paths to
absolute file paths: this was a work-around for a bug in
robofab-ufo3k that is now fixed.
- [makeInstancesUFO] Removed all references to old instances.txt
meta data file.
- [makeInstancesUFO] Fixed so that current dir does not have to be
the parent dir of the design space file.
- Merged fixes from the GitHub AFDKO open source repo.
- Updated to latest version defcon, fontMath, robofab, and
mutatorMath.
- Fix for Yosemite (Mac OSX 10.10) in FDK/Tools/setFDKPaths. When an
AFDKO script is ran from another Python interpreter, such as the one
in RoboFont, the parent Python interpreter may set the Unix
environment variables PYTHONHOME and PYTHONPATH. This can cause the
AFDKO Python interpreter to load some modules from its own library,
and others from the parent interpreters library. If these are
incompatible, a crash ensues. The fix is to unset the variables
PYTHONHOME and PYTHONPATH before the AFDKO interpreter is called.
Note: As a separate issue, under Mac OSX 10.10, Python calls to FDK
commands will only work if the calling app is run from the
command-line (e.g: `open /Applications/RoboFont.app`), and the
argument `shell="True"` is added to the subprocess module call to
open a system command. I favor also adding the argument
`stderr=subprocess.STDOUT`, else you will not see error messages
from the Unix shell. Example:
`log = subprocess.check_output( "makeotf -u", stderr=subprocess.STDOUT, shell=True)`.
2.5.63408 (released 2014-12-02)
-------------------------------
- [spot] Fixed error message in GSUB chain contextual 3 proof file
output; was adding it as a shell comment to the proof output,
causing conversion to PDF to fail.
- [makeotf] Increased the limit for glyph name length from 31 to 63
characters. This is not encouraged in shipping fonts, as there may
be text engines that will not accept glyphs with more than 31
characters. This was done to allow building test fonts to look for
such cases.
2.5.63209 (released 2014-09-18)
-------------------------------
- [makeInstancesUFO] Added new script to build instance fonts from
UFO master design fonts. This uses the design space XML file
exported by Superpolator 3 in order to define the design space, and
the location of the masters and instance fonts in the design space.
The definition of the format of this file, and the library to use
the design space file data, is in the open source mutatorMath
library on GitHub, and maintained by Erik van Blokland. There are
several advantages of the Superpolator design space over the
previous **makeInstances** script, which uses the Type 1 Multiple
Master font format to hold the master designs. The new version a)
allows different master designs and locations for each glyph, and b)
allows master designs to be arbitrarily placed in the design space,
and hence allows intermediate masters. In order to use the
mutatorMath library, the AFDKO-supplied Python now contains the
robofab, fontMath, and defcon libraries, as well as mutatorMath.
- [ttx] Updated to the latest branch of the fontTools library as
maintained by Behdad Esfahbod on GitHub. Added a patch to cffLib.py
to fix a minor problem with choosing charset format with large glyph
sets.
- Updated four Adobe-CNS1-\* ordering files.
2.5.63164 (released 2014-09-08)
-------------------------------
- [makeotf] Now detects `IsOS/2WidthWeightSlopeOnly` as well as the
misspelled `IsOS/2WidthWeigthSlopeOnly`, when processing the
fontinfo file.
- [makeotfexe] Changed behavior when 'subtable' keyword is used in
a lookup other than class kerning. This condition now triggers only
a warning, not a fatal error. Change requested by FontForge
developers.
- [makeotf] Fixed bug which prevented making TTF fonts under
Windows. This was a problem in quoting paths used with the 'ttx'
program.
- Fixed installation issues: removed old Windows install files from
the Windows AFDKOPython directory. This was causing installation of
a new AFDKO version under Windows to fail when the user's PATH
environment variable contained the path to the AFDKOPython
directory. Also fixed command file for invoking ttx.py.
- Updated files used for building ideographic fonts with Unicode IVS
sequences:
`FDK/Tools/SharedData/Adobe Cmaps/Adobe-CNS1/Adobe-CNS1_sequences.txt`
and `Adobe-Korea1_sequences.txt`.
2.5.62754 (released 2014-05-14)
-------------------------------
- [IS/addGlobalColor] When using the '-bc' option, fixed bug with
overflow for CID value in dumping glyph header. Fixed bug in IS to
avoid crash when logic for glyphs \> 72 points is used.
- [makeotfexe] Fixed bug that applied '-gs' option as default
behavior, subsetting the source font to the list of glyphs in the
GOADB.
2.5.62690 (released 2014-04-30)
-------------------------------
- [makeotf] When building output TTF font from an input TTF font,
will now suppress warnings that hints are missing. Added a new
option '-shw' to suppress these warnings for other fonts that with
unhinted glyphs. These warnings are shown only when the font is
built in release mode.
- [makeotfexe] If the cmap format 4 UTF16 subtable is too large to
write, then makeotfexe writes a stub subtable with just the first
two segments. The last two versions allowed using '-' in glyph
names. Removed this, as it breaks using glyph tag ranges in feature
files.
- Updated copyright, and removed patent references. Made extensive
changes to the source code tree and build process, to make it easier
to build the open source AFDKO. Unfortunately, the source code for
the **IS** and **checkOutlines** programs cannot be open sourced.
- [tx/mergeFonts/rotateFont] Removed '-bc' option support, as
this includes patents that cannot be shared in open source.
- [tx] All tx-related tools now report when a font exceeds the max
allowed subroutine recursion depth.
- [tx/mergeFonts/rotateFont] Added common options to all when
possible: all now support UFO and SVG fonts, the '-gx' option to
exclude fonts, the '-std' option for cff output, and the '-b'
option for cff output.
2.5.61944 (released 2014-04-05)
-------------------------------
- [makeotf] Added new option '-gs'. If the '-ga' or '-r'
option is used, then '-gs' will omit from the font any glyphs
which are not named in the GOADB file.
- [Linux] Replaced the previous build (which worked only on 64-bit
systems) with a 32 bit version, and rebuilt checkOutlines with debug
messages turned off.
- [ttx] Fixed FDK/Tools/win/ttx.cmd file so that the 'ttx' command
works again.
2.5.61911 (released 2014-03-25)
-------------------------------
- [makeotf] Add support for two new 'features' file keywords, for
the OS/2 table. Specifying 'LowerOpSize' and 'UpperOpSize' now
sets the values 'usLowerOpticalPointSize' and
'usUpperOpticalPointSize' in the OS/2 table, and set the table
version to 5.
- [makeotf] Fixed the '-newNameID4' option so that if the style
name is "Regular", it is omitted for the Windows platform name ID
4, as well as in the Mac platform version. See change in
build 61250.
- [tx] When the user does not specify an output destination file
path (in which case tx tries to write to stdout), tx now reports a
fatal error if the output is a UFO font, rather than crashing.
- [tx] Fixed crash when encountering an empty `<dict/>` XML
element.
- [spot] Added logic to dump the new fields in OS/2 table version 5,
**usLowerOpticalPointSize** and **usUpperOpticalPointSize**. An
example of these values can be seen in the Windows 8 system font
Sitka.TTC.
- [ufo workflow] Fixed autohint and checkOutlines so that the '-o'
option works, by copying the source UFO font to the destination UFO
font name, and then running the program on the destination UFO font.
- [ufo workflow] Fixed tools that the PostScript font name is not
required.
- Added Linux build.
2.5.61250 (released 2014-02-17)
-------------------------------
- [tx] Fixed rare crashing bug in reading a font file, where a
charstring ends exactly on a refill buffer boundary.
- [tx] Fixed rare crashing bug in subroutinization.
- [tx] Fixed bug where it reported values for wrong glyph with more
than 32K glyphs in the font.
- [tx] Fixed bug where the tool would not dump a TrueType Collection
font file that contained OpenType/CFF fonts.
- [tx] Fixed issue where it failed to read a UFO font if the UFO
font lacked a fontinfo.plist file, or a psFontName entry.
- [IS] Fixed IS so that it no longer scales the fontDict FontMatrix,
when a scale factor is supplied, unless you provide an argument to
request this.
- [makeotf] The option '-newNameID4' now builds both Mac and Win
name ID 4 using name ID 1 and 2, as specified in the OpenType spec.
The style name is omitted from name ID 4 it is "Regular".
- [makeotf] Changed logic for specifying ValueFormat for PosPair
value records. Previous logic always used the minimum ValueFormat.
Since changing ValueFormat between one PosPair record and the next
requires starting a new subtable, feature files that used more than
one position adjustment in a PosPair value record often got more
subtable breaks then necessary, especially when specifying a PairPos
statement with an all zero Value Record value after a PairPos
statement with a non-zero Value Record. With the new logic, if the
minimum ValueFormat for the new ValueRecord is different than the
ValueFormat used with the ValueRecord for the previous PairPos
statement, and the previous ValueFormat permits expressing all the
values in the current ValueRecord, then the previous ValueFormat is
used for the new ValueRecord.
- Added commands **otc2otf** and **otf2otc** to build OpenType
collection files from a OpenType font files, and vice-versa.
- [ttx] Updated the FontTools library to the latest build on the
GitHub branch maintained by Behdad Esfahbod, as of Jan 14 2014.
- [ufo workflow] Fixed bugs in ufoTools.py. The glyph list was being
returned in alphabetic order, even when the public.glyphOrder key
was present in lib.py. Failed when the glyphOrder key was missing.
2.5.60908 (released 2013-10-21)
-------------------------------
- [tx] Can now take UFO font as a source font file for all outputs
except rasterization. It prefers GLIF file from the layer
`glyphs.com.adobe.type.processedGlyphs`. You can select another
preferred layer with the option '-altLayer `<layer name>`'. Use
'None' for the layer name in order to have tx ignore the preferred
layer and read GLIF files only from the default layer.
- [tx] Can now write to a UFO with the option '-ufo'. Note that it
is NOT a full UFO writer. It writes only the information from the
Postscript font data. If the source is an OTF or TTF font, it will
not copy any of the meta data from outside the font program table.
Also, if the destination is an already existing UFO font, tx will
overwrite it with the new data: it will not merge the new font data
with the old.
- [tx] Fixed bugs with CID values \> 32K: used to write these as
negative numbers when dumping to text formats such as AFM.
- [autohint/checkOutlines] These programs can now be used with UFO
fonts. When the source is a UFO font, the option '-o' to write to
another font is not permitted. The changed GLIF files are written to
the layer 'glyphs.com.adobe.type.processedGlyphs'. Each script
maintains a hash of the width and marking path operators in order to
be able to tell if the glyph data in the default layer has changed
since the script was last run. This allows the scripts to process
only those glyphs which have changed since the last run. The first
run of autohint can take two minutes for a 2000 glyph font; the
second run takes less then a second, as it does not need to process
the unchanged glyphs.
- [stemHist/makeotf] Can now take UFO fonts as source fonts.
2.5.60418 (released 2013-02-26)
-------------------------------
- [autohint] Now skips comment lines in fontinfo file.
- [makeotf] Added support for source font files in the 'detype1'
plain text format. Added logic for "Language" keyword in fontinfo
file; if present, will attempt to set the CID font makeotf option
-"cs" to set he Mac script value.
- [compareFamily] Added check in Family Test 10 that font really is
monospaced or not when either the FontDict isFixedPitch value or the
Panose value says that it is monospaced.
- [spot] Fixed bug that kept 'palt'/'vpal' features from being
applied when proofing kerning.
2.5.59149 (released 2012-10-31)
-------------------------------
- [makeotf] When building OpenType/TTF files, changed logic to copy
the OS/2 table usWinAscent/Descent values over the head table
yMax/yMin values, if different. This was because:
- both pairs are supposed to represent the real font bounding box
top and bottom,and should be equal;
- the TTF fonts we use as sources for makeotf are built by FontLab;
- FontLab defines the font bounding box for TrueType fonts by using
off-curve points as well as on-curve points. If a path does not have
on-curve points at the top and bottom extremes, the font bounding
box will end up too large. The OS/2 table usWinAscent/Descent
values, however, are set by makeotf using the converted T1 paths,
and are more accurate. Note that I do not try to fix the head table
xMin and xMax. These are much less important, as the head table yMin
and yMax values are used for line layout by many apps on the Mac,
and I know of no application for the xMin and yMin values.
- [makeotf] Changed default Unicode H CMAP file for Adobe-Japan1 CID
fonts to use the UniJIS2004-UTF32-H file.
- Added the CID font vertical layout files used with KozMinPr6N and
KozGoPr6N: AJ16-J16.VertLayout.KozGo and AJ16-J16.VertLayout.KozMin.
- Updated several Unicode CMAP files, used only with CID fonts.
- Added new Perl script, glyph-list.pl, used in building CID fonts.
This replaces the three scripts extract-cids.pl, extract-gids.pl,
and extract-names.pl, which have been removed from the AFDKO.
2.5.58807 (released 2012-09-13)
-------------------------------
- [makeotf] Discovered that when building TTF fonts, the GDEF table
was not being copied to the final TTF font file. Fixed.
2.5.58732 (released 2012-09-04)
-------------------------------
- [autohint] Added new feature to support sets of glyphs with
different baselines. You can now specify several different sets of
global alignment zones and stem widths, and apply them to particular
sets of glyphs within a font when hinting. See option '-hfd' for
documentation.
- [autohint] Allow AC to handle fonts with no BlueValues, aka
alignment zones.
- [autohint] Respect BlueFuzz value in font.
- [autohint] Fixed the options to suppress hint substitution and to
allow changes.
- [autohint] When hinting a font with no alignment zones or invalid
alignment zones (and with the '-nb' option), set the arbitrary
alignment zone outside the FontBBox, rather than the em-square.
- [checkOutlines] Fixed bug where the arms of an X would be falsely
identified as coincident paths, when they are formed by only two
paths with identical bounding boxes.
- [checkOutlines] Fixed bug where very thin elements would get
identified as a tiny sub path, and get deleted.
- [checkOutlines] Fixed bug in determining path orientation. Logic
was just following the on-path points, and could get confused by
narrow concave inner paths, like parentheses with an inner contour
following the outer contour, as in the Cheltenham Std HandTooled
faces.
- [checkOutlines] Fixed bugs in determining path orientation.
Previous logic did not handle multiple inner paths, or multiple
contained outer paths. Logic was also dependent on correctly sorting
paths by max Y of path bounding box. Replaced approximations with
real bezier math to determine path bounding box accurately.
- [checkOutlines] Changed test for suspiciously large bounding box
for an outline. Previous test checked for glyph bounding box outside
of fixed limits that were based on a 1000 em square. The new test
looks only for paths that are entirely outside a rectangle based on
the font's em square, and only reports them: it does not ever
delete them. Added new option '-b' to set the size of the design
square used for the test.
- [checkOutlines] Fixed bug where it would leave a temp file on disk
when processing a Type 1 font.
- [checkOutlines] Removed test for coincident control points. This
has not been an issue for decades. It is frequently found in fonts
because designers may choose to not use one of the two control
points on a curve. The unused control point then has the same
coordinates as its nearest end-point, and would to cause
checkOutlines to complain.
- [compareFamily] Single Test 6. Report error if there is a patent
number in the copyright. Adobe discovered that a company can be sued
if it ships any product with an expired patent number.
- [compareFamily] Single Test 22 (check RSB and LSB of ligature vs.
the left and right ligature components) did not parse contextual
ligature substitution rules correctly. Now fixed.
- [compareFamily] Family Test 18. Survive OTF fonts with no blue
values.
- [compareFamily] Family Test 2 (Check that the Compatible Family
group has same nameIDs in all languages): Added the WPF nameIDs 21
and 22 to the exception list, which may not exist in all faces of a
family.
- [fontsetplot] Fixed so it works with CID fonts. Also fixed so that
widow line control works right. Added new low level option for
controlling point size of group header.
- [fontsetplot] Fixed syntax of assert statements. Produced error
messages on first use of the \*plot commands.
- [kernCheck] Fix so that it survives fonts with contextual kerning.
It does not, however, process the kern pairs in contextual kerning.
- [makeotf] Fixed bug in mark to ligature. You can now use an
`<anchor NULL>` element without having to follow it by a dummy mark
class reference.
- [makeotf] Fixed bug which limited source CID fonts to a maximum of
254 FDArray elements, rather than the limit of 255 FDArray elements
that is imposed by the CFF spec.
- [makeotf] Fixed bugs in automatic GDEF generation. When now GDEF
is defined, all conflicting class assignments in the GlyphClass are
filtered out. If a glyph is assigned to a make class, that
assignment overrides any other class assignment. Otherwise, the
first assignment encountered will override a later assignment. For
example, since the BASE class is assigned first, assignment to the
BASE class will override later assignments to LIGATURE or COMPONENT
classes.
- [makeotf] Fix bug in validating GDEF mark attachment rules. This
now validates the rules, rather than random memory. Had now effect
on the output font, but did sometimes produce spurious error
messages.
- [makeotf] Fix crashing bug when trying to report that a glyph
being added to a mark class is already in the mark class.
- [makeotf] If the OS/2 code page bit 29 (Macintosh encoding) is
set, then also set bit 0 (Latin (1252). Under Windows XP and Windows
7, if only the Mac bit is set, then the font is treated as having no
encoding, and you cannot apply the font to even basic Latin text.
- [makeotf] By default, set Windows name ID 4 (Full Name) same as
Mac nameID 4, instead of setting it to the PostScript name. This is
in order to match the current definition of the name ID 4 in the
latest OpenType spec. A new option to makeotf ('-useOldNameID4'),
and a new key in the fontinfo file ("UseOldNameID4"), will cause
makeotf to still write the PS name to Windows name ID 4.
- [makeotf] Add support for WPF names, name ID 21 and 22.
- [makeotf] Fixed attachment order of marks to bug in generating
Mark to Ligature (GPOS lookup type 4). The component glyphs could be
reversed.
- [makeotf] Fixed bug in auto-generating GDEF table when Mark to
Mark (GPOS lookup Type 4) feature statements are used. The target
mark glyphs were registered as both GDEF GlyphClass Base and Mark
glyphs, and the former took precedence. makeotfexe now emits a
warning when a glyph gets assigned to more than one class when
auto-generating a GDEF table GlyphClass, and glyphs named in mark to
mark lookups are assigned only to the Mark GDEF glyph class.
- [makeotf] Fixed bugs in generating TTF fonts from TTF input. It
now merges data from the head and hhea tables, and does a better job
of dealing with the 'post' table. The previous logic made
incorrect glyph names when the glyphs with names from the Mac Std
Encoding were not all contiguous and at the start of the font.
- [makeotf] Added new option '-cn' for non-CID source fonts, to
allow reading multiple global font alignment zones and stem widths
from the fontinfo file, and using this to build a CID-keyed CFF
table with an identity CMAP. This is experimental only; such fonts
may not work in many apps.
- [makeotf] Fixed bug where the coverage table for an element in the
match string for a chaining contextual statement could have
duplicate glyphs. This happens when a glyph is specified more than
once in the class definition for the element. The result is that the
format 2 coverage table has successive ranges that overlap: the end
of one range is the same glyph ID as the start of the next range;
harmless, but triggers complaints in font validators.
- [makeotf] Updated to latest Adobe CMAP files for ideographic
fonts. Changed name of CMAP directories in the AFDKO, and logic for
finding the files.
- [makeotf] When providing a GDEF feature file definition, class
assignments now may be empty:
table GDEF {
GlyphClassDef ,,,;
} GDEF;
is a valid statement. You just need to provide all three commas and
the final colon to define the four classes. The following statement
builds a GDEF GlyphClass with an empty Components class.
table GDEF {
GlyphClassDef [B], [L], [M], ;
} GDEF;
- [makeotf] The glyph alias file now defines order in which glyphs
are added to the end of the target font, as well as defining the
subset and renaming.
- [makeotf] The `-cid <cidfontinfo>` option for converting a
font to CID can now be used without a glyph alias file, if the
source font glyphs have names in the form "cidXXXX", as is output
when mergeFonts is used to convert from CID to name-keyed. If the
`-cid <cidfontinfo>` option is used, and there is no glyph alias
file, then any glyphs in the font without a name in the form
"cidXXXX" will be ignored.
- [spot] Added error message for duplicate glyph IDs in coverage
tables with format 2, a problem caused by a bug in makeotf with some
Adobe fonts that use chaining contextual substitution. Note: error
message is written only if level 7 GSUB/GPOS dump is requested.
- [spot] Minor formatting changes to the GSUB/GPOS level 7 dump, to
make it easier to edit this into a real feature file.
- [spot] When writing out feature file syntax for GPOS 'ignore
pos' rules, the rule name is now written as 'ignore pos', not
just 'ignore'.
- [spot] Can now output glyph names up to 128 chars (Note: these are
not legal PostScript glyph names, and should be encountered only in
development fonts.)
- [spot] Has new option '-ngid' which suppresses output of the
trailing glyph ID `@<gid>` for TTF fonts.
- [spot] No longer dumps the DefaultLangSys entry when there is
none.
- [spot] Changed dump logic for contextual and chain contextual
lookups so that spot will not dump the lookups referenced by the
substitution or position rules in the contextual lookups. The
previous logic led to some lookups getting dumped many times, and
also to infinite loops in cases where a contextual lookup referenced
other contextual lookups.
- [spot] Added support for Apple kern subtable format 3. Fixed old
bug causing crash when dumping font with Apple kern table from
Windows OS.
- [spot] Fixed error when dumping Apple kern table subtable format
0, when kern table is at end of font file.
- [spot] Fixed crashing bug seen in DejaVuSansMono.TTF: spot did not
expect an anchor offset to be zero in a Base Array base Record.
- [spot] Removed comma from lookupflag dump, to match feature file
spec.
- [spot] Added logic to support name table format 1, but it probably
does not work, since I have been unable to find a font to test with
this format.
- [spot] Fixed spelling error for "Canadian" in OS/2 code page
fields.
- [spot] Changed dump of cmap subtable 14: hex values are
uppercased, and base+UVS values are written in the order [base,
uvs].
- [stemHist] Always set the alignment zones outside the font BBox,
so as to avoid having the source font alignment zones affect
collection of stem widths.
- [stemHist] Fix bug where the glyph names reported in the stem and
alignment reports were off by 1 GID if the list of glyphs included
the '.notdef' glyph.
- [tx] Added support for option '-n' to remove hints for writing
Type 1 and CFF output fonts.
- [tx] Added new option "+b" to the cff output mode, to force
glyph order in the output font to be the same as in the input font.
- [tx] Fixed bug in flattening 'seac' operator. If the glyph
components were not in the first 256 glyphs, then the wrong glyph
would be selected.
- [tx] Added new library to read in svg fonts as a source. tx can
now read all the SVG formats that it can write. Handles only the
path operators: M, m, L, L, C, c, Z, z, and the font and glyph
attributes: 'font-family', 'unicode', 'horiz-adv-x',
'glyph-name', 'missing-glyph'.
- [tx] Fixed bug in converting TTF to OpenType/CFF. It flipped the
sign of the ItalicAngle in the 'post' table, which in turn flipped
the sign of the OS/2 table fields ySubscriptXOffset and
ySuperscriptXOffset. This bug showed up in TTF fonts built by
makeotf, as makeotf uses 'tx' to build a temporary Type 1 font
from the source TTF.
- [tx] Fixed bug where '-usefd' option was not respected, when
converting from CID to name-keyed fonts.
- Updated the internal Python interpreter to version 2.7.
- Updated Adobe Cmaps/Adobe-Japan1 files:
- Adobe-Japan1\_sequences.txt
- UniJIS-UTF32-H
- UniJIS2004-UTF32-H
- UniJISX0213-UTF32-H
- UniJISX02132004-UTF32-H
- Added several scripts related to CID font production:
- cmap-tool.pl
- extract-cids.pl
- extract-gids.pl
- extract-names.pl
- fdarray-check.pl
- fix-fontbbox.pl
- hintcidfont.pl
- subr-check.pl
2.5.25466 (released 2012-03-04)
-------------------------------
- [charplot] This was non-functional since build 21898. Now fixed.
- [checkOutlines] Changed so that the test for nearly vertical or
horizontal lines is invoked only if the user specifies the options
'-i' or '-4', instead of always. It turns out that this test,
when fixed automatically, causes more problems than it cures in CJK
fonts.
- [compareFamily] Changed so that the default is to check stem
widths and positions for bogus hints. Used 'tx' rather than Python
code for parsing charstring in order to speed up hint check.
- [compareFamily] Updated script tags and language tags according to
OpenType specification version 1.6.
- [documentation] In feature file syntax reference, fixed some
errors and bumped the document version to 1.10.
- [documentation] Fixed typo in example in section 4.d: lookFlag
values are separated by spaces, not commas.
- [documentation] Fixed typo in example in section 8.c on stylistic
names: quotes around name string need to be matching double quotes.
Reported by Karsten Luecke.
- [documentation] Changed agfln.txt copyright notice to BSD license.
- [makeInstances] Fixed bug where a space character in any of the
path arguments caused it to fail.
- [makeInstances] Fixed bug that can make the FontBBox come out
wrong when using ExtraGlyphs.
- [makeInstances] Fixed rounding bug that could (rarely) cause
makeInstances to think that a composite glyph is being scaled (which
is not supported by this script) when it is not.
- [makeotf] Fixed bug in generating TTF fonts from TTF input.
Previous version simply did not work.
- [spot] Added support for "Small" fonts, an Adobe internal
Postscript variant used for CJK fonts.
- [spot] Added support for large kern tables, such as in the Vista
font Cambria, where the size of the kern subtable exceeds the value
that can be held in the subtable "length" field. In this case, the
"length" filed must be ignored.
- [spot] Fixed proof option to show GPOS records in GID order by
default, and in lookup order only with the '-f' option. It had
always been proofing the GPOS rules in lookup order since 2003.
- [spot] Fixed double memory deallocation when dumping TTC files;
this could cause a crash.
- [spot] When decompiling GSUB table to feature file format (-t
GSUB=7) and reporting skipped lookups identify lookups which are
referenced by a chaining contextual rule.
- [sfntedit] Changed final "done" message to be sent to stdout
instead of stderr. Reported by Adam Twardoch.
- [stemHist] Fixed typo in help text, reported by Lee Digidea:
'-all' option was not working.
- [tx] Added new option '-std' to force StdEncoding in output CFF
fonts.
2.5.21898 (released 2009-05-01)
-------------------------------
- [autohint/checkOutlines] Fixed rare case when an _rrcurveto_ is
preceded by such a long list of _rlineto_ that the stack limit is
passed.
- [autohint/checkOutlines] Fixed to restore font.pfa output file to
StandardEncoding Encoding vector. Since requirements of CFF
StandardEncoding differs from Type 1 StandardEncoding, a
StandardEncodingEncoding vector in a Type 1 font was sometimes
getting converted to a custom Encoding vector when being
round-tripped through the CFF format which autohint does internally.
- [checkOutlines] Fixed random crash on Windows due to buffer
overrun.
- [checkOutlines] Changed default logging mode to not report glyph
names when there is no error report for the glyph.
- [CompareFamily] Added "ring" to the list of accent names used to
find (accented glyph, base glyph) pairs for Single Face Test 23.
Reported by David Agg.
- Renamed showfont to fontplot2 to avoid conflict with the Mac OSX
showfont tool.
- Fixed problem with showing vertical origin and advance: was not
using VORG and vmtx table correctly.
- [FontLab scripts] Added logic to Instance Generator to support
eliminating "working" glyphs from instances, to substitute
alternate glyph designs for specific instances, and to update more
Font Dict fields in the instance fonts. Added help.
- Added command line equivalent, "makeInstances' which does the same
thing, but which uses the IS tool for making the snapshot. See the
'IS' entry.
- [IS] Added new tool for "intelligent scaling". This uses the
hinting in an MM font to keep glyph paths aligned when snapshotting
from MM fonts. The improvement is most visible in glyphs with
several elements that need to maintain alignment, such as percent
and perthousand. It is also useful for the same reason when scaling
fonts from a large em-square size to a smaller size. To be
effective, the source MM font must be hinted and must have global
alignment zones defined. The new font must be re-hinted. For
instances from MM fonts especially, it is a good idea to redo the
alignment zones, as the blending of the MM base designs usually does
not produce the best alignment zones or stem widths for the instance
fonts. makeInstances and "Instance Generator" scripts allow you to
preserve these modifications when redoing the MM instance snapshot.
- [makeotf] Fixed generation of version 1.2 GDEF table to match the
final OpenType spec version 1.6. This version is generated only when
the new lookup flag 'UseMarkFilteringSet" is used.
- [makeotf] Fixed generation of names for stylistic alternates
features. There was a bug such that in some circumstances, the
feature table entry for the stylistic alternate feature would point
to the wrong lookup table.
- [makeotf] Fixed generation of the reverse substitution lookup
type. This was unintentionally disabled just before the previous
release.
- [makeotf] Fixed bugs in memory management of glyph objects. If the
font built, it was correct, but this bug could cause the font to
fail to build.
- [spot] Fixed to dump GDEF table version 1.2 according to the final
OpenType spec version 1.6.
- [spot] Fixed feature-format dump of the lookupflags
MarkAttachmentType and UseMarkFilteringSet to give a class name as
an argument, rather than a class index.
- [spot] Extended the GDEF table dump to provide a more readable
form.
- [spot] Added dump formats for htmx and vtmx to show the advance
and side bearing metrics for all glyphs.
2.5.21340 (released 2009-01-22)
-------------------------------
- [AGLFN] (Adobe Glyph List for New Fonts) Created new version 1.7.
- [AGLFN] Reverted to the AGLFN v1.4 name and Unicode assignments
for Delta, Omega, and mu. The v1.6 versions were better from a
designer's point of view, but we cannot use name-to-Unicode value
mappings that conflict with the historic usage in the Adobe Glyph
List 2.0. See
<http://www.adobe.com/devnet/opentype/archives/glyph.html>.
- [AGLFN] Dropped all the 'afii' names from the list: 'uni'
names are actually more descriptive, and map to the right Unicode
values under Mac OSX.
- [AGLFN] Dropped all the 'commaccent' names from the list:
'uni' names map to the right Unicode values under Mac OSX before
10.4.x.
- [autohint] Converted AC.py script to call a command-line program
rather than a Python extension module, same way makeotf works, to
avoid continuing Python version problems.
- [autohint] Fixed to actually emit vstem3 and hstem3 hint operators
(counter control hints, which work to keep the space between three
stems open and equal, as in an 'm') - this has been broken since
the first AFDKO. It will now also look in the same directory as the
source font for a file named "fontinfo", and will attempt to add
stem3 hints to the glyph which are listed by name in the name list
for the keys "HCounterChars" or "VCounterChars".
- [autohint] Fixed old bug where it would only pay attention to the
bottom four of the top zone specified in the FontDict BlueValues
list. This results in more edge hints in tall glyphs.
- [autohint] Fixed special case when adding flex operator which
could result in an endless loop
- [autohint] Added 'logOnly' option, to allow collecting report
without changing the font.
- [autohint] Added option to specify which glyphs to exclude from
autohinting.
- [autohint] Suppressed generation and use of `<font-name>.plist`
file, unless it is specifically requested.
- [autohint] Fixed bug where an extremely complex glyph would
overflow a buffer of the list of hints.
- [checkOutlines] Improved overlap detection and path orientation:
it will now work with outlines formed by overlapping many stroke
elements, as is sometimes done in developing CJK fonts.
- [checkOutlines] added new test for nearly vertical or horizontal
lines. Fixed bug in this new code, reported by Erik van Blokland.
- [CompareFamily] For the warning that the Full Family name in the
CFF table differs from that in the name table, changed it to a
"Warning" rather than "Error", and explained that there is no
functional consequence.
- [CompareFamily] Removed check that Mac names ID 16 and 17 do not
exist, as makeotf now does make them. See notes in MakeOTF User
Guide about this.
- [CompareFamily] Fixed so it works with TTF fonts again.
- [makeotf] Removed code that added a default Adobe copyright to the
name table if no copyright is specified, and removed code to add a
default trademark.
- [makeotf] Added support for the lookupflag UseMarkFilteringSet.
This is defined in the proposed changes for OpenType spec 1.6, and
is subject to change in definition.
- [makeotf] Dropped restriction that vmtx/VORG/vhea tables will only
be written for CID-keyed fonts. The presence in the feature file of
either a 'vrt2' feature of vmtx table overrides will now cause
these tables to be written for both CID-keyed and name-keyed fonts.
- [makeotf] Added warning when a feature is referenced in the aalt
feature definition, but either does not exist or does not contribute
any rules to the aalt feature. The aalt feature can take only single
and alternate substitution rules.
- [makeotf] Added support for the following lookup types:
- GSUB type 2 Multiple Substitution
- GSUB type 8 Reverse Chaining Single Substitution
- GPOS type 3 Cursive Adjustment
- GPOS type 4 Mark-to-Base Attachment
- GPOS type 5 Mark-to-Ligature Attachment
- GPOS type 6 Mark-to-Mark Attachment
- [makeotf] Added support for explicit definition of the GDEF table,
and automatic creation of the GDEF when any of the lookup flag
settings for ignoring a glyph class is used, or any mark classes are
defined.
- [makeotf] Support using TTF fonts as input, to build an
OpenType/TTF font, with the limitation that glyph order and glyph
names cannot be changed. This is rather ugly under the hood, but it
works. The MakeOTF.py Python script uses the tx tool to convert the
TTF font to CFF data without changing glyph order or names. It then
builds an OpenType/CFF font. It then uses the sfntedit tool to copy
the TTF glyph data to the OpenType font, and to delete the CFF
table.
- [makeotf] Added support for building Unicode Variation Selectors
for CID-keyed fonts, using the new cmap subtable type 14.
- [makeotf] Fixed bug with inheritance of default rules by scripts
and languages in feature file feature definitions. Explicitly
defined languages were only getting default rules defined after the
last script statement, and when a script is named, languages of the
script which are not named got no rules at all.
- [makeotf] Fixed bug where you could not run makeotf when the
current directory is not the same is the source font's home
directory.
- [makeotf] Set OS/2.lastChar field to U+FFFF when using mappings
beyond the BMP.
- [makeotf] Create the Mac platform name table font menu names by
the same rules as used for the Windows menu names. Add new keywords
to the FontMenuNameDB file syntax. If you use the old keywords, you
get the old format; if you use the new syntax, you get nameIDs 1, 2
and 16 and 17 just like for the Windows platform.
- [makeotf] Fixed bug in name table font menu names: if you entered
a non-English Preferred name ("f=") and not a compatible family
name ("c="), you would end up with a nameID 16 but no nameID 17.
- [makeotf] Fixed bogus 'deprecated "except" syntax' message
under Windows.
- [makeotf] Fixed bug where contextual pos statements without
backtrack or lookahead context were writing as a non-contextual
rule. Reported by Karsten Luecke.
- [makeotf] Added new option to make stub GSUB table when no GSUB
rules are present.
- [makeotf] Added warning if the aalt feature definition references
any feature tags that either do not exist in the font, or do not
contribute any rules that the aalt feature can use.
- [sfntdiff] Fixed so that only error messages are written to
stderr; all others now written to stdout.
- [sfntdiff] Fixed bug in dump of 'name' table: when processing
directories rather than individual files, the name table text was
never updated after the first file for the second directory.
- [spot] Fixed option '-F' to show the contextual rule sub-lookup
indices, and to flag those which have already been used by another
lookup.
- [spot] If a left side class 0 is empty, do not report it.
- [spot] For GSUB/GPOS=7 FEA dump, give each class a unique name in
the entire font by appending the lookup ID to the class names. It
was just `[LEFTCLASS]()<class index>_<subtable index>`, but
these names are repeated in every lookup. It is now
`LEFTCLASS_c<class index>_s<subtable index>_l<lookup
index>`.
- [spot] When a positioning value record has more than one value,
print the full 4 item value record. Previously, it would just print
non-zero values. This was confusing when dumping Adobe Arabic, as
you would see two identical values at the end of some pos rules. In
fact, each of these pos rule does have two adjustment values, one
for x and one for y advance adjustment, that happen to be the same
numeric value.
- [spot] Fixed to write backtrack context glyphs in the right order.
- [tx] Added option to NOT clamp design coordinates to within the
design space when snapshotting MM fonts.
- [tx] Added option to subroutinize the font when writing to CFF.
This option is derived from the same code used by makeotfexe, but
takes only about 10% the memory and runs much faster. This should
allow subroutinizing large CJK fonts that makeotfexe could not
handle. This is new code, so please test results carefully, i.e. if
you use it, always check that the flattened glyphs outlines from the
output font are identical to the flattened glyph outlines from the
input font.
- [ttxn] Added options to suppress hinting in the font program, and
version and build numbers.
2.0.27 (released 2007-11-10)
----------------------------
- [compareFamily] Fixed Single Test 3 (reported by Mark Simonson and
others); the test should compare the Mac platform name ID 4 (name ID
1 + space + name ID 2) with the target value, but was instead using
the value of the name ID 18 (Compatible Full Name).
- [compareFamily] Fixed Family Test 2 to print a report that helps
determine which {platform, script, language, name ID} is present in
some fonts but not others.
- [IS] Fixed a bug where applying hint-based scaling can cause an
off-by-1 error when the the _closepath_ position is supposed to
coincide with the original _moveto_, leading to an effective final
1-unit _lineto_, that may overlap the initial path. In the old MM
design world, we worked around this issue by designing the MMs so
that there was always a one unit difference between a final _curveto_
point and the original _moveto_. FontLab doesn't support doing that
automatically, so when making an instance, **IS** will instead simply
look for cases where the _moveto_ and _closepath_ positions differ by
one unit, and move the _moveto_ position to coincide with the
_closepath_ position.
- [makeotf] Fixed bug where specifying thousands of singleton kern
pairs could silently overflow offsets, and makeotf would build a bad
font without any warning. (reported by Adam Twardoch)
- [makeotf] Relative file paths can now be used even if the current
directory is not the source font directory. Project files can now be
saved to directories other than the source font directory. Note that
paths stored in project file are relative to the project file's
directory. (reported by Andreas Seidel)
- [makeotf/spot] Added support for Unicode Variation Sequences (UVSes).
See MakeOTF User's Guide and
[Unicode Technical Standard #37](http://unicode.org/reports/tr37/)
- [spot] Fixed bug where contents of 'size' GPOS feature would be
printed for all dump levels.
- [spot] Fixed failure to process 'post' table format 4.0. which
occurs in some Apple TT fonts, such as Osaka.dfont
- Updated Adobe-Japan-1 CMAP files for building CID fonts.
2.0.26 (released 2007-05-05)
----------------------------
- Added `featurefile.plist` for BBedit. Install this in the location
shown at the top of the file; it enables code coloring for FEA syntax.
The file is in FDK/Tools/SharedData
- Added `MSFontValidatorIssues.html` to FDK/Technical Documentation. It
lists the error messages from the MS FontValidator tool that can be
ignored for OpenType/CFF fonts.
- [FontLab macros] Added InstanceGenerator. Another script for making
instances from an MM VFB font. It's simpler than MakeInstances macro.
- [FontLab macros] Removed debug statement in Set Start Points which
blocked processing more than 50 glyphs. (reported by George Ryan)
- [FontLab macros] Added explanation of CheckOutlines errors to help
dialog.
- [checkOutlines] Added option '-he' to print explanation of error
messages.
- [compareFamily] Added error if the font's CFF table contains a
Type 2 `seac` operator. The CFF spec does not support this operator.
Some very old tools allow this to happen.
- [makeotf] Fixed a bug in decomposing glyphs that are defined as
composite glyphs in a Type 1 source font. This bug caused the base
component to be shifted when then left side bearing of the composite
glyph differs from that of the base glyph. This could be consequential,
as FontLab has an option to not decompose composite glyphs when
generating a Type 1 font.
- [makeotf] Fixed a bug in recognizing the "Korea1" order when trying
to pick a default Mac cmap script ID from a CID-keyed font's ROS
(Registry-Order-Supplement) field.
- [tx] Fixed a bug in decomposing pretty much all composite glyphs
from Type 1 and CFF source fonts. It happened only when a Type 1 or
CFF font was being subset, i.e. converted into a font with fewer
glyphs. tx now has the option '+Z' to force this to occur.
2.0.25 (released 2007-03-30)
----------------------------
- [autohint] Added a new option to allow extending the list of glyph
names for which autohint will try to make counter hints.
- [autohint] Fixed bug where Type 2 operator stack limit could be
exceeded when optimizing Type 2 charstrings during conversion from
bez format.
- [autohint] Fixed bug in setting OtherBlues alignment zone values.
- [FontLab macros] The Autohint macro behaves quite differently when
adding 'flex' hints is turned off; it makes more hint substitutions,
since these are not allowed within the segment of the outline that
contributes the 'flex' stem. Turned it on, so that hint results will
be the same as the command-line tool. This does not affect the outline
data.
- [checkOutlines] Fixed bug that prevented the reporting of two
successive points with the same coordinates. The code to convert from
the source outline data to bez format was suppressing zero-length line
segments, so the checkOutlines module never experienced the problem.
- [compareFamily] Added new options '-st n1,n2..' and '-ft n1,n2..' to
allow executing only specific tests.
- [compareFamily] Fixed test "Warn if a style-linked family group does
not have FamilyBlues". When reporting the error that FamilyBlues differ
in a style-linked family group (where at least one font does have real
FamilyBlues), use BlueValues as implied FamilyBlues when the latter
attribute is missing from a font. Same for FamilyOtherBlues.
- [compareFamily] Warn about zones outside of font's BBox only if the
entire zone is outside of the BBox, not just one edge, and warn only
for BlueValue zones, not FamilyBlueValue zones.
- [compareFamily] Fixed fsType check. Complain if fsType is not 8 only
for Adobe fonts, determined by checking if the name table trademark
string is empty or contains "Adobe".
- [compareFamily] Fixed Single Face Test 3 to compare the CFF Full Name
with the name table Preferred Full Name (ID 18) rather than the Full
Name (ID 4).
- [compareFamily] Fixed bug where it failed with CID fonts, because it
referenced the "Private" dict attribute of the font's topDict, which
does not exist in CID fonts.
- [compareFamily] Fixed 'size' test to support the format that indicates
only intended design size, where no range is supplied.
- [compareFamily] Fixed ligature width check to also check that left
and right side bearings match those of the left and right components,
and to use the 'liga' feature to identify ligatures and their components,
instead of heuristics based on glyph names.
- [makeotf] Disallowed negative values in the feature file for the OS/2
table winAscent and winDescent fields.
- [makeotf] Fixed a bug where a lookup excluded with the `exclude_dflt`
keyword was nevertheless included if the script/language was specified
with a languagesystem statement.
- [makeotf] Fixed issue on Windows where a user would see a debug
assert dialog when the OS/2 vendorID was not specified in the feature
file, and the Copyright string contained an 8-bit ASCII character, like
the 'copyright' character.
- [makeotf] Fixed issue on Windows where name ID 17 would be garbage if
no FontMenuNameDB was supplied, and the PostScript name did not contain
a hyphen.
- [makeotf] Added warning for Mac OSX pre 10.5 compatibility: total size
of glyphs names plus 2 bytes padding per glyph must be less than 32K, or
OSX will crash.
- [makeotf] Fixed crash that occurred if the feature file did not have
a languagesystem statement.
- [makeotf] Fixed bug in subroutinizer which allowed a subroutine stack
depth of up to 10, but the Type 1 and Type 2 specs allow only 9. This
caused most rasterizers to declare the font invalid.
- [makeotf] Removed '-cv' option; CJK vertical CMaps have not been
supported since FDK 1.6.
- [spot] Added support for low-level and feature file style
text dumps of GPOS Attachment formats 3, 4, 5 and 6.
- [spot] Added dump of lookup flag value to the feature-file style
report.
- [spot] Added MarkAndAttachmentClassDef record to GDEF table report.
- [spot] Added support for GSUB lookup type 2 (Multiple) when within
contextual substitutions.
- [spot] Fixed bug in GSUB lookup 5, causing crash in dumping trado.ttf.
- [spot] Fixed bug in level 7 (feature-file syntax) dump of GPOS table;
was omitting the value record for extension lookup types.
- [spot] Fixed crash on Windows when proofing contextual substitution
statements.
- [spot] Made Windows version behave like Mac when proofing: PostScript
file data is always sent to standard output, and must be re-directed to
a file.
- [spot] Improved documentation of proofing output and '-P' option.
- [spot] Fixed DSIG table reporting of TTC fonts with the version 2 TTC
header, even if the header reports it is version 1, like meiryo.ttc.
- [spot] Enabled proofing TTC fonts that don't have glyph names in the
post table.
- [spot] Fixed origin offset of bounding box for TTF fonts.
- [spot] Fixed crash in proofing TTF fonts when the last glyph is
non-marking, like trado.ttf in LongHorn.
2.0.24 (released 2006-11-06) — Public release of FDK 2.0
----------------------------
- [autohint/checkOutlines/ProofPDF] Fixed glyph name handling to avoid
stack dump when glyph is not in font. Added support for CID values that
are not zero-padded to 5 hex digits.
- [autohint] Fixed bug where edge hints would be generated rather than
regular hints across the baseline, when there were fewer than 8 pairs of
BlueValues.
- [checkOutlines] Fixed bug where it would not report an overlap if
there were an even number of overlapping contours.
- [compareFamily] Fixed Italic angle Single Test 12 to look at the middle
third of the test glyph stems, rather than the top and bottom of the
glyph bounding box, when guessing the font's italic angle.
- [compareFamily] Fixed Single Test 15 to allow a difference of 1 unit in
the font BBox, to allow for rounding differences.
- [compareFamily] Fixed Single Test 26 to identify uXXXX names as valid
Unicode names; had bug in the regular expression that required 5 digits.
- [compareFamily] Fixed Single Test 22 to treat glyphs in the combining
mark Unicode range u3000-u036F range as accent glyphs; require that they
have the same width as the base glyph.
- [compareFamily] Changed report from Error to Warning for check that
only the first four Panose values are non-zero.
- [compareFamily] Fixed bug that caused a stack dump in Single Test 16
and 22.
- [compareFamily] Added tests for Mac OSX pre 10.4 compatibility: no
charstring is < 32K, total size of glyphs names plus padding is less
than 32K.
- [compareFamily] Added test that known shipping font does not have OS/2
table version 4, and that new fonts do.
- [compareFamily] Fixed Single Test 11: allow BASE offset to differ from
calculated offset by up to 10 design units before it complains.
- [compareFamily/makeotf] Fixed failure when tools path contains a space.
- [kernCheck] New tool; looks for kern GPOS rules that conflict, and also
looks for glyph pairs that overlap.
- [kernCheck] Added option to allow running only the check of GPOS
subtables for kerning rules that mask each other.
- [makeotf] Fixed '-adds' option.
- [makeotf] Added new option '-fi' to specify path to fontinfo file.
- [makeotf] Added new option '-rev' to increment the fontRevision field.
- [makeotf] If the (cid)fontinfo file contains the keyword/value for
FSType, will check that the value is the same as the OS/2 fsType field
in the final OTF font. This has to do with historic Adobe CJK font
development practices.
- [makeotf] Added support for setting some of the Plane 1+ bits in the
OS/2 ulUnicodeRange fields.
- [mergeFonts] Will now apply to the output font the values for the
fields Weight and XUID, from the cidfontinfo file.
- [spot] Added support for showing some of the Plane 1+ bits in the OS/2
ulUnicodeRange fields.
- [stemHist] When requiring that reports not already exist, don't delete
older stem reports when asking for new alignment zone reports, and
vice-versa.
- [setsnap.pl] New tool to pick standard stem hint values. This Perl
script takes in the report from stemHist, and recommends a set of values
to use for the Type 1 font standard stem arrays. This is not as good as
choosing the most relevant values yourself, but better than not providing
any values.
- In _Overview.html_, added warning about 'languagesystem Dflt dflt' and FDK
1.6 feature files.
- In _MakeOTFUserGuide.pdf_, expanded discussion of fontinfo file, updated
documentation of OS/2 v4 table bits with Adobe's practices for the next
library release.
- In _OT Feature File Syntax.html_, fixed incorrect sign for winAscent
keyword, extended discussion of DFLT script tag and useExtension keyword,
and fixed minor typos.
- Added two new tech notes on using rotateFont and mergeFonts.
2.0.22 (released 2006-09-12)
----------------------------
- [compareFamily] Single Test 3 now also checks that Mac name ID 4 starts
with Preferred Family name, and is the same as the CFF table Full Name.
- [compareFamily] Added test for existence and validation of BASE table
in Single Test 11.
- [compareFamily] Fixed bug where failed when reporting font BBox error.
- [compareFamily] Added test that some specific glyph names were not
changed from previous version of font, in Single Test 26.
- [compareFamily] Added "Single Face Test 27: Check
strikeout/subscript/superscript positions". Checks values against default
calculations based on the em-box size.
- [compareFamily] Added "Single Face Test 28: Check font OS/2 codepages
for a common set of code page bits". Checks OS/2 ulCodePageRange and
ulUnicodeRange blocks against the default makeotf heuristics.
- [compareFamily] Added in Single Test 12 a rough calculation of the
italic angle. Warns if this is more than 3 degrees different than the
post table Italic angle value.
- [compareFamily] Added in Family Test 15 a check that all fonts in a
preferred family have the same hhea table underline size and position
values.
- [compareFamily] Added "Family Test 16: Check that for all faces in a
preferred family group, the width of any glyph is not more than 3 times
the width of the same glyph in any other face".
- [compareFamily] Fixed Family Test 3 to be more efficient.
- [makeotf/makeotfexe] Added a new option '-maxs `<integer>`' to limit
the number of subroutines generated by subroutinization. Used only when
building test fonts to explore possible errors in processing the
subroutines.
- [makeotf/makeotfexe] Allow working names to be longer than 31
characters; warn but don't quit, if final names are longer than 31
characters.
2.0.21 (released 2006-08-31)
----------------------------
- [makeotf] Fixed bug where 'size' feature was built incorrectly when it
was the only GPOS feature in the font.
- [spot] Improved error messages for 'size' feature problems.
- [compareFamily] Added dependency on environment variables:
**CF_DEFAULT_URL** should be set to the foundry's URL; it's compared
with name ID 11.
**CF_DEFAULT_FOUNDRY_CODE** should be set to the foundry's 4-letter
vendor code; it's compared with OS/2 table achVendID field.
- [compareFamily] Check that CFF PostScript name is the same as Mac and
Windows name table name ID 6.
- [compareFamily] Check that named IDs 9 and 11 (designer name and
foundry URL) exist.
- [compareFamily] Extended Single Test 4 to verify that version string
is in correct format '(Version|OTF) n.nnn'.
- [compareFamily] Improved Panose test to check that values are not all
0, and that the CFF font dict 'isFixedPitch' field matches the Panose
monospace value.
- [compareFamily] Added check to confirm the presence of Unicode cmap
sub table.
- [compareFamily] Added check to confirm that latn/dflt and DFLT/dflt
script/languages are present, if there are any GPOS or GSUB rules. Also
checks that script and language tags are in registered lists, and that
all faces have the same set of language and script tags, and feature
list under each language and script pair.
- [compareFamily] Added check to confirm that all faces in the family
have the same OS/2 table fsType embedding permission values.
- [compareFamily] Added check to confirm that if font has Bold style
bit, the CFF forceBold flag is on. Also vice-versa, if the font weight
is less than 700.
- [compareFamily] Added check to confirm that the font does not have a
UniqueID or XUID, if it's not CID-keyed.
- [compareFamily] Added glyph name checks: OS/2 default char is .notdef,
and that there are NULL and CR glyphs in TrueType fonts, and that names
conform to the current Adobe Glyph Dictionary. Note that latest practice
is to use 'uni' names for final names for all the 'afii' glyphs.
- [compareFamily] Fixed family BlueValues tests to compare within
compatible family name groups.
- [compareFamily] Changed Family Test 2 to check that all name IDs
except 16, 17, 18, are all present with the same language/script values
within all faces of a preferred family.
- [compareFamily] Changed Single Test 3, which didn't do at all what it
described.
- [FontLab macros] Fixed bug introduced when changing modules shared
with command-line scripts in build 19.
2.0.20 (released 2006-08-14)
----------------------------
- [ProofPDF] Fixed bug in waterfallplot mode, where Acrobat would
report the output PDF file as being damaged.
- [makeotf] Fixed bug that prevented building CID fonts in release
mode, introduced in build 19.
2.0.19 (released 2006-08-04)
----------------------------
- [compareFamily] Added Family Test 13 to report error if two fonts in
the same preferred family have the same OS/2 weight, width and Italic
settings, and the OS/2 version is greater than 3. Also reports an error
if the fsSelection field bit 8 "WEIGHT_WIDTH_SLOPE_ONLY" is set
differently across faces of the same preferred family name group.
- [compareFamily] Fixed Family Test 12 to not fail when the font has a
script/language with no DefaultLangSys entry.
- [makeotf] If a font file with the requested output file name already
exists, will delete it before running makeotfexe, so can tell if it
failed.
- [makeotf] Will now set the new 'fsSlection' bits if the following
key/value pairs are in the 'fontinfo' file:
PreferOS/2TypoMetrics 1
IsOS/2WidthWeigthSlopeOnly 1
IsOS/2OBLIQUE 1
- [digiplot] Added new option to specify the font baseline, so the
baseline can be set correctly when proofing a font file without a BASE
table.
- [digiplot] Allowed using a CID layout file to supply meta info when
proofing name-keyed fonts.
- [ProofPDF] Added two functions: **waterfallplot** and **fontsetplot**.
waterfallplot does not yet work with TrueType or CID-keyed fonts.
2.0.17 (released 2006-05-15)
----------------------------
- Fixed multiple tools to allow installing the FDK on Windows on a path
containing spaces.
- [autohint] Added option to suppress hint substitution.
- [autohint] Fixed help and message to refer to 'autohint' tool name,
rather than to the AC script file name.
- [autohint] Fixed bug in processing hint masks: bytes with no bits set
were being omitted.
- [autohint] Added option to allow hinting fonts without StdHW or StdVW
entries in the font Private font-dictionary.
- [checkOutlines] Fixed writing out the changes when fixing outlines.
- [checkOutlines] Fixed bug that mangled outlines when three alternating
perpendicular lines or vh/hv/vv/hh curveto's followed each other.
- [checkOutlines] Will now write report to a log file as well as to
screen. Added option to set log file path, and added numeric suffix to
name so as to avoid overwriting existing log files.
- [compareFamily] Fixed issue that happened when looking through the
directory for font files, when encountering a file for which the user
did not have read permission.
- [compareFamily] Added Single Test 24: check that 'size' feature
Design Size is within the design range specified for the font.
- [ProofPDF] Added **showfont** command to show how to customize a
command file to produce a different page layout.
- [ProofPDF] Fixed so fonts with em-square other then 1000 will work.
- [fontplot/charplot/digiplot/hintplot/showfont] Added support for
Type 1 font files as well as OTF and TTF files.
- [makeotf] Fixed MakeOTF to survive being given a font path with spaces.
- [makeotf] Fixed '-S' and '-r' options.
- [makeotf] Added new option '-osv `<number>`' to allow setting the OS/2
table version number.
- [makeotf] Added new option '-osbOn `<number>`' to set arbitrary
bitfields in OS/2 table 'fsSelection' to on. May be repeated more than
once to set more than one bit.
- [makeotf] Added new option '-osbOff `<number>`' to set arbitrary
bitfields in OS/2 table 'fsSelection' to off. May be repeated more than
once to unset more than one bit.
- [makeotf] If neither '-b' nor '-i' options are used, check for a file
'fontinfo' in the same directory as the source font file, and set the
style bits if these key/values are found:
IsBoldStyle true
IsItalicStyle true
- [FontLab macros] Built the autohint and checkOutline libraries (PyAC
and focusdll) linked with Python2.3 so they work with FontLab 5.
- [mergeFonts] Added option to copy only font metrics from first source
font.
- [mergeFonts] Allow empty lines and "#" comment lines in glyph alias
and in cidfontinfo files.
- [rotateFont] Fixed bug where it did not allow negative numbers.
- [rotateFont] Allow empty lines and "#" comment lines in rotation info
file
- [sfntedit] Fixed so that it will not leave the temp file behind on a
fatal error, nor quit because one already exists.
- [spot] Fixed order of backtrack glyphs in dump of chaining contextual
`sub` and `pos` statements. Now assumes that these are built in the
correct order.
- Added two new tools, **type1** and **detype1**, that compile/decompile
a Type 1 font from/to a plain text representation.
2.0.5 (released 2006-02-14)
---------------------------
- [compareFamily] Added warning if sum of OS/2 table sTypoLineGap,
sTypoAscender, and sTypoDescender is not equal to the sum of usWinAscent
and usWinDescent.
- [compareFamily] Updated test for allowable weights in style-linked
faces to reflect the current behavior of Windows XP.
- [compareFamily] Added check for OpenType/CFF: Windows name table ID 4
(Full Name) is the same as the PostScript name.
- [compareFamily] Added report on sets of features in different
languagesystems, and an error message if they are not the same in all
faces of the font.
- [compareFamily] Fixed incorrect message about real error when menu
names are not correctly built.
- [compareFamily] Fixed test for improbable FontBBOX to use em-square
rather than assume 1000 em.
- [compareFamily] Added warning if widths of ligatures are not larger
than the width of the first glyph.
- [compareFamily] Added warning if accented glyphs have a width different
than their base glyph.
- [compareFamily] Added error message if two faces in the same family
have the same OS/2 width and weight class and italic style setting, and
are not optical size variants. Optical size check is crude: the Adobe
standard optical size names (Caption, Capt, Disp, Ds, Subh, Six) are
removed from the PS font names and then compared; if the PS names are
the same, then they are assumed to be optical size variants.
- [compareFamily] Added check that no hint is outside the FontBBox, for
CJK fonts only.
- [spot/otfproof] Added "Korean" to list of tags for OS/2 codepage range.
- [spot/otfproof] Fixed dump of 'size' feature to support correct and old
versions
- [spot/otfproof] Added dump/proof of contextual chaining positioning
format 3.
- [spot/otfproof] Added warnings that only low-level dump of other
contextual lookups is supported.
- [makeotf] Program is now a stand-alone C executable.
- [makeotf] Removed option to write contextual positioning rules in the
_old_ incorrect format.
- [makeotf] MakeOTF no longer assigns Unicode Private Use Area values
to glyphs for which it cannot identify. To use PUAs, explicitly assign
them in the GlyphOrderAndAlias file.
- [makeotf] Fixed bug in name table name ID "Version": if version decimal
value is x.000, then the value in the Version name ID string was x.001.
- [makeotf] Fixed bug in handling of DFLT language script: it's now
possible to use this tag.
- [makeotf] Fixed feature file parsing bug where 'dflt' lookups in one
feature were applied to the following feature if the following feature
started with a language statement other than 'dflt'.
- [makeotf] Fixed serious bug where wrong width is calculated for glyphs
where the CFF font Type 2 charstring for the glyph starts with a width
value. This is then followed by the value pairs for the coordinates for
the vertical hint, and then these are followed by a hint mask or control
mask operator. The bug was that when MakeOTF reads in the charstring in
order to derive the hmtx width, it discards the data before the control
mask operator, leading the parser to use the CFF default width for the
glyph.
- [makeotf] vhea.caretSlopeRise and vhea.caretSlopeRun is now set to 0
and 1 respectively, rather than the opposite.
- [makeotf] The OS/2 table 'fsType' field is now set to the feature file
override. If not supplied, then the value of the environment variable
FDK_FSTYPE. If not set then 4 (Preview & Print embedding).
- [makeotf] Added support for contextual chaining positioning of base
glyphs; mark and anchors not yet supported.
- [makeotf] Fixed bug in 'size' feature: the feature param offset is now
set to the offset from the start of the feature table, not from from the
start of the FeatureList table.
- [makeotf] Allowed 'size' feature point sizes to be specified as
decimal points, as well as in integer decipoints.
- [makeotf] OS/2 table version is now set to 3.
- [makeotf] Added OS/2 overrides for winAscent and winDescent.
- [makeotf] Added hhea overrides for Ascender/Descender/LineGap.
- [makeotf] Set OS/2 Unicode coverage bits only if the font has a
reasonable number of glyphs in the Unicode block; it was setting the
bits if the font had even one glyph in the block.
- [makeotf] The "Macintosh" codepage bit in the OS/2 codePageRange fields
is now set by default.
- [FEA spec] Fixed incorrect range example in section _2.g.ii. Named
glyph classes_
- [FEA spec] Changed rule to allow lookup definitions outside of feature
definitions in FDK 2.0.
- [FEA spec] Fixed incorrect uses of 'DFLT' rather than 'dflt' for a
language tag.
1.6.8139 (released 2005-08-30)
------------------------------
- [OTFProof] Fixed error in dumping GSUB table: GSUB lookup 5,
context lookup assumed that there were both a lookahead and a backtrack
sequence.
- Updated SING META table tags to latest set.
1.6.7974 (released 2004-08-30)
------------------------------
- [makeotf] Fixed rule in building CJK font. When looking for Adobe
CMap files, will no longer use a hardcoded max supplement value when
building paths to try.
1.6.7393 (released 2004-01-14)
------------------------------
- [compareFamily] Fix stack dump when family has no BlueValues
(reported by House Industries).
- [compareFamily] Fix stack dump when CFF-CID font has glyph with no
`subr` calls.
- [OTFProof] Corrected error in last release, where spaces between
ligature match string names were omitted.
- [FontLab macros] Added scripts for testing if the joins in a
connecting script font design are good.
- [OTFProof] Fixed crash on proofing or dumping feature file syntax for
GSUB lookup 5, context lookup. Also fixed rule-generating logic:
results were previously wrong for proof and for feature-file syntax
formats. Text dump has always been correct.
- [OTFProof] Fixed crash when dumping cmap subtables that reference
virtual GIDs not in the font.
- [OTFProof] Fixed crash on dumping GSUB lookup type 6 chaining context
subtable format 2. This has never worked before.
- [OTFProof] Added demo for SING glyphlet tables, SING and META.
- [FontLab macros] Added scripts for reading and writing an external
composites definition text file.
- [FontLab macros] Added scripts for working with MM fonts.
1.6.6864 (released 2003-10-08)
------------------------------
- [OTFProof] Fixed crash after dumping contents of ttc fonts (bug
introduced in version 6792).
- [OTFProof] Fixed cmap subtable 4 and 2 dumps. Cmap subtable 2 could
show encoding values for single byte codes which were really the
first byte of two byte character codes. In Format 4, idDelta values
were not being added when the glyphindex was derived from the glyph
index array. These show issues show up in some TTF CJKV fonts.
1.6.6792 (released 2003-09-24)
------------------------------
- [OTFProof] Fixed crash when proofing fonts with _many_ glyphs.
- [OTFProof] Restored "skipping lookup because already seen in
script/language/feature" messages to proof file, which was lost in
version 6604.
- [OTFProof] Added ability to proof resource fork sfnt fonts from Mac
OSX command line. It's still necessary to use the SplitForks tool to
make a data-fork only resource file, but spot/otfproof can now navigate
in the resulting AppleDouble formatted resource file.
- [OTFProof] Added support for a text dump of the GDEF table.
- [OTFProof] Changed title in 'size' feature dump from _Common
Characters_ to _name table name ID for common Subfamily name for size
group_.
- [AGL] Fixed some minor errors in the Adobe Glyph List For New Fonts.
1.6.6629
--------
- [OTFProof] Fixed bug in dumping KERN table from Mac sfnt-wrapped
resource fork Type 1 MM font.
- [OTFProof] Changed the AFM-format dump of kern pairs to list all
kern pairs for each language/script combination in separate blocks, and
to eliminate all class kern pairs that are masked by a singleton kern
pair. The temp buffer file path is now taken from the system C library
function tmpnam(), and is not necessarily in the current directory.
1.6.6568
--------
- [OTFProof] Fixed command-line tool to write proof files in same
location as font, and with font-name prefix, when not auto-spooled for
printing.
- [OTFProof] Fixed bug in UI version where proofing GSUB features and
then GPOS features would cause the GPOS feature proof files to be empty.
- [makeotf] Fixed heuristics for picking OS/2 weight/width so that a
font name containing _ultracondensed_ would trigger only setting the
width, and not the weight as well.
- Updated Mac OS project files to CodeWarrior 8.
1.6.6564
--------
- [OTFProof] When dumping data from TTF fonts, now add `@<gid>` to all
glyph names. This is because the rules for deriving names can lead to
two glyphs being given the same name.
- [OTFProof] Fixed bug in proofing GPOS class kern pairs: was generating
bogus kern pairs and duplicate kern pairs when the coverage format was
type 2. Affects proof file only, not AFM or feature-format dump.
- Fixed memory overwrite bug encountered by Goichi and cleaned up various
memory leaks in the process.
- [compareFamily] Added report on whether a face contains known std
charset. Stub implementation - still need list of std charsets.
- [AFM2Feat] Developed tool to convert an AFM file to a file with
kern feature `pos` rules.
1.6.6148
--------
- Rebuilt all libraries for v1.6 release 3/10/2003.
1.6.6048
--------
- Updated FinishInstall.py to reflect Python 2.2 requirements.
- Picked up last MakeOTF.pdf editing changes.
- Fixed bug in GOADB.
- Updated CID font data in example fonts.
- Updated FDK release notes and installation instructions.
- Updated to use the GlyphOrderAndAliasDB file developed while
converting the Adobe Type Library. Maps all the old glyph names to AGL
compatible names.
1.6.6020
--------
- [OTFProof] Fixed crash in handling of VORG with no entries. (Vantive
574752)
- [MakeOTF] Updated documentation: added a description of how all three
columns of the _GlyphOrderAndAliasDB_ file are used; added a new section
on the key-value pairs of the font project file; updated the description
of the FontMenuNameDB file entries; added minor clarifications throughout.
- Updated _digital_signature_guide.htm_ to match current Verisign website.
- [Example fonts] Changed the incorrect language keyword TUR to TRK.
- [Example fonts] Removed the many key/value pairs in the fontinfo files
that are not used by MakeOTF.
- [OTFProof/spot] Fixed 3-column handling of GOAADB. (Vantive 569681)
1.6.5959
--------
- [MakeOTF] Suppressed the "repeat hint substitution discarded" message
from the source file parsing library. These are so common that they
obscure more useful messages.
- [MakeOTF] Set as default the option to build chaining contextual
substitution rules with the incorrect format used by InDesign 2.0 and
earlier.
- [MakeOTF] If the option above is set, then MakeOTF will write a name
ID (1,0,0,5 - "Version") which will contain the text string which
triggers special case code in future Adobe apps so that it will process
the chaining contextual substitution rules as they were intended. If
this option is NOT set, the name ID 5 will be written so as to not
trigger this special case code. The special case treats specially any
font where the name table name ID (1,0,0,5) exists and either matches,
"OTF[^;]+;PS[^;]+;Core 1\.0\.[23][0-9].*"
(example: "OTF 1.006;PS 1.004;Core 1.0.35")
or contains,
"Core[^;]*;makeotf\.lib"
(example: "Core 1.0.38;makeotf.lib1.5.4898")
or just,
"Core;makeotf.lib"
- [MakeOTF] Turn off by default the option to force the .notdef glyph
in the output OTF font be an crossed rectangle with an advance width
of 500.
- [MakeOTF] Added rule to force the OS/2 WeightClass to always be at
least 250. Shows error message if set or calculated WeightClass was less
than this.
- [MakeOTF] Added test that FSType is set the same in the feature file
as in source CID font files.
- [OTFProof] Page layout for CJKV font vertical layout: now writes the
vertical columns right to left.
- [OTFProof] When writing vertical features, now shows the advance width
sign as negative.
- [OTFProof] When making PostScript proof file, now writes DSC tags with
correct header and page info.
- Added _Unicode and Glyph Name_ documentation to the FDK _Technical
Documentation_ directory, to allow access to this info under the FDK
license.
1.6.4908
--------
- [MakeOTF/FEA syntax] Added new vmtx table overrides, to allow setting
vertical metrics for pre-rotated proportional glyphs that are
specifically designed and are not simply rotated forms of proportional
glyphs.
- [MakeOTF/FEA syntax] Added new OS/2 overrides to set the Unicode and
Windows codepage range fields: UnicodeRange CodePageRange.
- [MakeOTF/FEA syntax] Updated language keywords to be consistent with
OpenType spec, i.e using `dflt` instead of `DFLT`. Expanded section
explaining use of language and script default keywords. Old keywords
still work, but cause a warning to be emitted.
- [FEA syntax] Expanded explanation of kern class pairs and subtable
breaks.
- [MakeOTF] Updated the search rules for CID font CMap files to support
Adobe-Japan2-0, and to look first for UTF-32 CMAP files.
1.5.4987
--------
- Release to Adobe website Sept 2002.
1.5.4908
--------
- [MakeOTF] Changed the name table version string to match OT spec 1.4.
- [CompareFamily] Made it _really_ work with Sept 10th 2002 release of
Just van Rossum's FontTools library.
1.5.4492
--------
- [MakeOTF] (hotlib 1.0.35) Fixed the error in processing GSUB
contextual chaining substitution format 3. This was originally done
according to the OpenType spec 1.4, which is in error by the
established implementation of VOLT and Uniscribe. Added option '-fc' to
cause the library to use the incorrect implementation, according to OT
spec v1.4. By default, MakeOTF builds the correct contextual format
per spec v1.5.
- [MakeOTF] (hotlib 1.0.35) Fixed Unicode cmap bug in assigning the OS/2
table field usLastCharIndex. This is supposed to be the highest Unicode
value in the BMP-16 cmap tables. The problem was in the logic by which
alternates of supplemental plane glyph names were being assigned an EUS
code, but not added to the BMP-16 Unicode cmap tables, e.g. u1D269.alt.
When one of these alternates was assigned an EUS value, the
usLastCharIndex was getting bumped even though the glyph was not being
added to the BMP-16 cmap tables. Fixed by not incrementing
usLastCharIndex in this case.
- [MakeOTF] Fixed bug in applying client-supplied Unicode override
values. These were omitted if the glyph names in the font were different
than the final glyph names, as can happen when the client uses the
getFinalGlyphName call back to supply a glyph production name which is
different than the final glyph name.
- [OTFProof] Fixed crash when proofing liga feature in CID font. Also
fixed crash when proofing charstring with only one operand, e.g
h/r/vmoveto.
- [CompareFamily] Updated to use the latest version of Just van Rossum's
FontTools library, added support for TrueType fonts. Now requires Python
2.2.
- [CompareFamily] Added family test 11: verify that for base font in
style-linked group, Mac and Windows menu names are the same, and that
for other fonts in the style linked group, the Mac and Windows menu
names differ.
1.5.4099
--------
- External release of FDK 1.5 on Adobe website.
1.5.3849
--------
- [CompareFamily] Fixed tabular glyph and isFixedPitch test so that they
are now useful - used to generate far too many false errors.
- [MakeOTF] Fixed bug in setting Panose values from a feature file
override. If any value in the Panose value string is 0, all subsequent
values were also set to 0.
- [MakeOTF] Fixed bug where glyphs that got renamed were not subjected
to the ordering specified by the GlyphOrderAndAliasDB file.
- Added FDK.py file to integrate all tools into a common UI.
- [OTFCompare] Added use of CFFChecker library for CFF table.
- [CFFChecker] Added resource fork handling on OSX.
- [CompareFamily] Added family test 10: if any face in family has a real
panose value, report derived panose values as an error.
- [CompareFamily] Fixed bug in comparing copyright notices in family
test 7: will now really report error only if differs in other than years.
- [CFFChecker] Added support for multiple input files.
- [CFFChecker] Added support for resource fork fonts under MacOS 9.
- Added CFFChecker interface to makeotf.
- [OTFCompare] Added OSX prompt-based support.
- Fix R-O-S mapping for CMAP files.
- Fixed getunicodeCmap() to not hard-wire Adobe-Japan1-3 when processing
J fonts.
- [CFFChecker] MacOS 9 version created.
- Added CFFChecker.
- [CompareFamily] Fixed to not die on font menu names with non-std ASCII.
- [OTFProof] Fixed vertical metrics proofing.
- [MakeOTF] Added warning when truncating OS/2 TypoAscender to force its
sum with TypoDescender to be equal to the em-box.
- [MakeOTF] Allow fractional synthetic weight values. These are rounded
to an integer.
- [MakeOTF] Changed XUID adding algorithm to NOT add the revision number
to the XUID array.
- [MakeOTF] In release mode, add current year to copyright, suppress (c)
string, and fix spaces around the phrase 'All Rights Reserved'.
- [MakeOTF] Fixed to permit building a font in release mode with no
unique ID at all.
- [MakeOTF] Fixed bad cmap entry offset calculation.
- [MakeOTF] Fixed for bad cmap table entry.
1.5.1023
--------
- [MakeOTF] Changed algorithm for adjusting advance width/lsb/rsb of
non-slanted synthetic glyphs when adding to italic fonts.
- [MakeOTF] Fixed failure of re-ordering when NOT forcing use of marking
notdef.
- [MakeOTF] Fixed interaction between 'Sigma' and synthetic 'summation',
'Pi' and 'product'.
- [spot] Added the option to select which feature to dump in GPOS or
GSUB=7 dumps.
- [OTFProof] Added support of TT instructions in compound glyphs.
- [CompareFamily] Fixed incorrect unwrapping T2 charstring subroutines.
All previous reports on whether glyphs were hinted should be doubted.
- [MakeOTF] Tweaked horizontal spacing of upright glyphs in oblique fonts.
- [MakeOTF] Added support for "italicangle", "width" and "weight" keywords
in FontMenuNameDB.
- [SCM/makeotf/typecomp] Fixed Euro-adding bug.
- [OTFProof] Removed header note "1000 units/em" from proofs.
- [OTFProof] Added support for cmap version 12.
- [OTFProof] Removed zero padding of CID values from text reports.
- [OTFProof] Reduced number of warnings about missing characters.
- [OTFProof] Removed warning when GPOS and GSUB table may be too big,
as no tools make this error anymore, and it is triggered
inappropriately when font uses the extension lookup.
- [OTFProof] Fixed different spacing problem reported. (Vantive 420313)
- [OTFProof] Fixed so that vertical proofs write from right to left.
- [MakeOTF] Fixed problem with unspecified CMap files.
1.5.600
-------
- [CompareFamily] Fixed so that it will not error out when one of the
Blues arrays is not present.
- [OTFProof] Fixed so that glyph names for CID fonts print properly.
- [OTFProof] Fixed problems with compile under SunOS.
- [MakeOTF] Added MakeOTFScript.py as an example file to edited, in
order to allow scripting of makeOTF on the Mac (or any other platform).
Minor changes to MakeOTF.py to fix this.
- [MakeOTF] Added an option to allow removing deprecated Type 1 operands
from output font (e.g. `seac` and `dotsection`).
- [MakeOTF] Added an option to allow adding synthesized glyphs to fonts,
leveraging a built-in sans and serif multiple master substitution font.
The source font must contain a 'zero' and a capital 'O'.
The glyphs that can be synthesized are:
Euro
Delta
Omega
approxequal
asciicircum
asciitilde
at
backslash
bar
brokenbar
currency
dagger
daggerdbl
degree
divide
equal
estimated
fraction
greater
greaterequal
infinity
integral
less
lessequal
litre
logicalnot
lozenge
minus
multiply
notequal
numbersign
onehalf
onequarter
paragraph
partialdiff
perthousand
pi
plus
plusminus
product
quotedbl
quotesingle
radical
section
summation
threequarters
zero
1.4.583
-------
- Began tracking files by Perforce changelist label, from the Perforce
source code management system.
- Updated compilers to Mac/CodeWarrior 6 Pro, Windows Visual C++ 6.0.
- Re-organized build directories to have mac/win/sun4 subdirectories.
- Re-organized shared include files to all be under /Programs/api, with
non-conflicting names.
- [Example fonts] Updated MinionPro-Capt: now has correct frac and size
features.
- [Example fonts] Added KozMinPro to samples.
- [MakeOTF] Fixed bug where fontinfo keyword IsStyleBold was ignored for
CID fonts.
- [MakeOTF] Fixed Mac build project to load debug and release libraries
by different names.
- [MakeOTF] Added feature file support for the "languagesystem" statement.
Note that this entailed removing support for script, language, and named
lookup statements in the size feature, and removing support for script and
language statements in the aalt feature. See feature file spec for details.
- [MakeOTF] More descriptive wording in offset overflow error messages.
Feature file error handling improved: multiple error messages are emitted
before failing if possible, instead of just one; final glyph name as well
as glyph alias (if applicable) reported if not found in font.
- [MakeOTF] Changed the 14 Corporate Use subarea Unicode values for Zapf
Dingbats to the proposed UVs in anticipation of their being incorporated
into the Unicode standard.
- [MakeOTF] Added FontWorks ('FWKS') to vendor ID list.
- [MakeOTF] Increased the maximum number of named lookups allowed to 8192.
- [MakeOTF] Now makes kern and vert features from kern data passed in by
clients and from V CMap (respectively) only when the HOT_CONVERSION bit is
set. (Previously, these features were made from the sources mentioned
above if they weren't already defined in a feature file.)
- [MakeOTF] Fixed an obscure bug in OS/2.ulUnicodeRange computation: if
the largest UV in the font were not in any Unicode range recognized by
hotlib then it was counted as being in the next recognized Unicode range
after the UV. (No known fonts are affected by this.)
- [MakeOTF] Forced the OS/2 codepage range bits for Chinese to either
Simplified or Traditional, based on the Mac cmap script, if it is defined
as either Simplified or Traditional, and will fall back to the heuristics
if the script is undefined. If the mac.script is something other than a
Chinese script, then the OS/2 codepage range bits for Chinese will not
be set.
- [OTFCompare] The Python sys.path variable must now contain the path
to the directory containing the OTFProof library (usually
_FDK/Tools/Programs/otfproof/exe_). This replaces the hardcoded path
reference in the OTFCompare.py script. On all platforms, this is done
by adding the file "otfproof.pth", containing the path, to the Python
installation.
- [OTFCompare] Fixed a bug that was causing tables smaller than 16 bytes
to be reported as different
- [OTFProof] Added new proofing mode to CFF_ to print one glyph per page.
- [OTFProof] Added new proofing option to suppress file-specific header
info to facilitate diff-ing of multiple proofs.
- [OTFProof] Added alphabetical sorting of AFM-style dump.
- [OTFProof] Fixed bug causing GPOS/GSUB features with digits in their
names to not appear in the proofing list.
- [OTFProof] Added support for glyphsize option in CFF_ dumps.
- [OTFProof] Fixed conflicting include file names; must now specify
include paths in project file.
- [OTFProof] Reduced some of the recursion in the subroutinization code
to reduce stack space requirements.
- [OTFProof] Fixed support for included feature files in parent folder
on the Mac.
1.3.2 (2000-10-24)
------------------
- [OTFProof] Fixed bug where would report error opening Mac TTF suitcase
font, because data fork was of size 0.
- [OTFProof] Fixed bug where feature tags containing numbers were filtered
out of the feature list for proofing.
- [OTFProof] Fixed bug where baseline was shown incorrectly for CJK fonts
with baselines other than 120.
- [OTFProof] Fixed bug where y-placement changes were not shown correctly
in vertical writing mode proofs.
1.3.1 (2000-08-15)
------------------
- [MakeOTF] Fixed problem with heuristics for OS/2 codepage range
settings, for Chinese Simplified vs Traditional.
- [MakeOTF] Added macro to define MakeOTF version number.
- [MakeOTF] updated makeotflib help/usage messages: shown when args are
incorrectly formatted.
- [makeotf] (makeotf/exe/makeotfutils.py)
- added fontinfo list entry for "Language".
- added 'parameter' variable entry for same.
- increased num values to from 34 to 35.
- changed initialization of 'parameter' so can more easily figure out
which index matches which fontinfo field.
- [makeotf] (makeotf/exe/makeotf.py)
- updated version numbers to 1.3.1.
- added '-cs' and '-cl' options to help.
- added processing of Language field, to set script and language IDs
with '-cs' and '-cl' options.
- [makeotf] (makeotf/source/main.c)
- added macro to define MakeOTF version number, used in help message,
and in client name string for name id 5 "Version".
- added mac_script and mac_language fields to global static 'convert'
structure.
- added processing of '-cs' and '-cl' arguments to parse_args().
- added mac_script and mac_language arguments to call to cbconvert().
- updated print_usage to match that of makeotf.py.
- updated the ReadFontInfo() to process new Language field.
- [makeotf] (makeotf/source/cb.c)
- moved initialization (as type unknown) of mac.encoding, mac.script
and mac.language from cbconvert to cbnew().
- added setting of mac.script and mac.language to cbconvert(), from
arguments.
- added mac_script and mac_language arguments to call to cbconvert().
- [makeotf] (source/includes/cb.h)
- added mac_script and mac_language arguments to call to cbconvert().
- [hotconvlib] (coretype/source/map.c)
- changed logic for setting OS/2 codepage range to set code page to
Simplified or Traditional Chinese based on mac.script setting;
fallback on heuristics only if mac.script is not set.
Raw data
{
"_id": null,
"home_page": "https://github.com/adobe-type-tools/afdko",
"name": "afdko",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "font development tools",
"author": "Adobe Type team & friends",
"author_email": "afdko@adobe.com",
"download_url": "https://files.pythonhosted.org/packages/c8/50/7e9cee87780b86843fbcb29d349e819cf2f8eb2363e08792ffc915b95705/afdko-4.0.2.tar.gz",
"platform": "macosx-10.9-universal2",
"description": "![AFDKO Test Suite](https://github.com/adobe-type-tools/afdko/workflows/AFDKO%20Test%20Suite/badge.svg)\n\n[![Coverage](https://codecov.io/gh/adobe-type-tools/afdko/branch/develop/graph/badge.svg)](https://codecov.io/gh/adobe-type-tools/afdko/branch/develop)\n\n[![PyPI](https://img.shields.io/pypi/v/afdko.svg)](https://pypi.org/project/afdko)\n\n[![Join the chat at https://gitter.im/adobe-type-tools/afdko](https://badges.gitter.im/adobe-type-tools/afdko.svg)](https://gitter.im/adobe-type-tools/afdko?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)\n\nAdobe Font Development Kit for OpenType (AFDKO)\n===============================================\n\nThe AFDKO is a set of tools for building OpenType font files from\nPostScript and TrueType font data.\n\nThis repository contains the data files, Python scripts, and sources for\nthe command line programs that comprise the AFDKO. The project uses the\n[Apache 2.0 Open Source license](https://opensource.org/licenses/Apache-2.0).\nPlease note that the AFDKO makes use of several dependencies, listed in the\nrequirements.txt file, which will automatically be installed if you install\nAFDKO with `pip`. Most of these dependencies are BSD or MIT license, with\nthe exception of `tqdm`, which is [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/).\n\nPlease refer to the\n[AFDKO Overview](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html)\nfor a more detailed description of what is included in the package.\n\nPlease see the\n[wiki](https://github.com/adobe-type-tools/afdko/wiki)\nfor additional information, such as links to reference materials and related\nprojects.\n\n\ud83d\udce3 Recent News\n------------\n**The Python port of psautohint was (re)integrated into the AFDKO repository as \"otfautohint\"**\n\nMore information can be found in [docs/otfautohint_Notes.md](docs/otfautohint_Notes.md)\n\nInstallation\n------------\n\nThe AFDKO requires [Python](http://www.python.org/download) 3.9\nor later. It should work with any Python > 3.9, but occasionally\ntool-chain components and dependencies don't keep pace with major\nPython releases, so there might be some lag time while they catch up.\n\nReleases are available on the [Python Package\nIndex](https://pypi.python.org/pypi/afdko) (PyPI) and can be installed\nwith [pip](https://pip.pypa.io).\n\nNote for macOS users: we recommend that you do **not** use the system\nPython. Among other reasons, some versions of macOS ship with Python 2\nand the latest version of the AFDKO is only available for Python 3. You\ncan find instructions for using Brew to install Python 3 on macOS here:\n[Installing Python 3 on Mac OS X](https://docs.python-guide.org/starting/install3/osx/).\nAlso: [pyenv](https://github.com/pyenv/pyenv) is a great tool for\ninstalling and managing multiple Python versions on macOS.\n\nNote for all users: we **STRONGLY** recommend the use of a Python virtual\nenvironment ([`venv`](https://docs.python.org/3/library/venv.html))\nand the use of `python -m pip install <package>` to install all packages\n(not just AFDKO). Calling `pip install` directly can result in the\nwrong `pip` being called, and the package landing in the wrong location.\nThe combination of using a `venv` + `python -m pip install` helps to ensure\nthat pip-managed packages land in the right place.\n\nNote for Linux users (and users of other platforms that are not macOS or Windows): When there is not a pre-built \"wheel\" for your platform `pip` will attempt to build the C and C++ portions of the package from source. This process will only succeed if both the C and C++ development tools and libuuid are installed. See [build from source](#Build-from-source) below.\n\n### Installing\n\n**Option 1 (Recommended)**\n\n- Create a virtual environment:\n\n ```sh\n python -m venv afdko_env\n ```\n\n- Activate the virtual environment:\n\n - macOS & Linux\n\n ```sh\n source afdko_env/bin/activate\n ```\n\n - Windows\n\n ```sh\n afdko_env\\Scripts\\activate.bat\n ```\n\n- Install [afdko](https://pypi.python.org/pypi/afdko):\n\n ```sh\n python -m pip install afdko\n ```\n\nInstalling the **afdko** inside a virtual environment prevents conflicts\nbetween its dependencies and other modules installed globally.\n\n**Option 2 (not recommended unless there is a global conflict)**\n\nLocal user installation [afdko](https://pypi.python.org/pypi/afdko) ([info](https://pip.pypa.io/en/stable/user_guide/?highlight=%E2%80%93%20user#user-installs)):\n\n python -m pip install --user afdko\n\n### Updating\n\nUse the `-U` (or `--upgrade`) option to update the afdko (and its\ndependencies) to the newest stable release:\n\n python -m pip install -U afdko\n\nTo get pre-release and in-development versions, use the `--pre` flag:\n\n python -m pip install -U afdko --pre\n\n### Uninstalling\n\nTo remove the afdko package use the command:\n\n python -m pip uninstall afdko\n\nBuild from source\n-----------------\n\nFirst you must have installed the development tools for your platform.\n\nOn macOS, install these with:\n\n xcode-select --install\n\nOn Linux (Ubuntu 17.10 LTS or later), install these with:\n\n apt-get -y install python3.9\n apt-get -y install python-pip\n apt-get -y install python-dev\n apt-get -y install uuid-dev\n\nOn other POSIX-like operating systems, `libuuid` and its header files\nmay be in a package named `libuuid-devel` or `util-linux-libs`. The\nsource code for `libuuid` is maintained in the\n[util-linux repository](https://github.com/karelzak/util-linux).\n\nOn Windows, you need Visual Studio 2017 or later.\n\n\nTo build the **afdko** from source, clone the [afdko GitHub\nrepository](https://github.com/adobe-type-tools/afdko), ensure the `wheel`\nmodule is installed (`python -m pip install wheel`), then `cd` to the top-level\ndirectory of the afdko, and run:\n\n python -m pip install .\n\nDeveloping\n-----------------\nIf you'd like to develop & debug AFDKO using Xcode, run:\n\n CMake -G Xcode .\n\nFor further information on building from source see\n[docs/FDK\\_Build\\_Notes.md](docs/FDK_Build_Notes.md).\n\n**Note**\n\nIt's not possible to install the afdko in editable/develop mode using\n`python -m pip install -e .` ; this is because the toolkit includes binary C executables\nwhich setup.py tries to install in the bin/ (or Scripts/) folder, however\nthis process was only meant to be used with text-based scripts (either\nwritten in Python or a shell scripting language). To work around this problem\n(which really only impacts the few core afdko developers who need to get live\nfeedback as they modify the source files) you can use alternative methods like\nexporting a PYTHONPATH, using a .pth file or similar hacks.\nFor further details read [this comment](https://github.com/adobe-type-tools/afdko/pull/677#issuecomment-436747212).\n\nMajor changes from version 2.5.x\n--------------------------------\n\n* The AFDKO has been restructured so that it can be installed as a Python\npackage. It now depends on the user's Python interpreter, and no longer\ncontains its own Python interpreter.\n\n* Two programs, **IS** and **checkoutlines** were dropped because their source\ncode could not be open-sourced. These tools are available in [release version\n2.5.65322 and older](https://github.com/adobe-type-tools/afdko/releases?after=2.6.22).\n\n**Note**\n\nIf you install the old AFDKO as well as the new PyPI afdko package, the tools from\nthe newer version will take precedence over the older. This happens because pip\nadds the afdko's package path at the beginning of the system's PATH environment\nvariable, whereas the old installer adds it at the end; this modification to PATH\nis not undone by the uninstaller. If you want to completely remove the path to the\nnewer version, you will have to edit the PATH. On the Mac, this means editing the\nline in your login file that sets the PATH variable. On Windows, this means editing\nthe PATH environment variable in the system's Control Panel.\n\nChangelog\n=========\n\n4.0.2 (released 2024-11-05)\n---------------------------\n- [otfautohint] Fix otfautohint bugs ([#1759](https://github.com/adobe-type-tools/afdko/pull/1759), [#1751](https://github.com/adobe-type-tools/afdko/pull/1751), [#1749](https://github.com/adobe-type-tools/afdko/pull/1749), [#1758](https://github.com/adobe-type-tools/afdko/pull/1758))\n- [ANTLR] Upgrade ANTLR to v4.13.2\n- [makeinstancesufo] keep all public lib keys in instances (thank you, @arialcrime!) ([#1747](https://github.com/adobe-type-tools/afdko/pull/1747))\n- [ci] Enable Python v3.12, drop v3.8 ([#1756](https://github.com/adobe-type-tools/afdko/pull/1756))\n\n4.0.1 (released 2024-01-16)\n---------------------------\n- [tx] Fix build failures discovered by an upcoming gcc-14 release (thanks @trofi!)([#1730](https://github.com/adobe-type-tools/afdko/pull/1730))\n- [tx] parse multiple attrs in xmlNode ([#1720](https://github.com/adobe-type-tools/afdko/pull/1720))\n- [makeotfexe] Add guards for h->otl == NULL before calling otlSubtableAdd ([#1716](https://github.com/adobe-type-tools/afdko/pull/1716))\n- [otfstemhist] Fix otfstemhist bugs ([#1703](https://github.com/adobe-type-tools/afdko/pull/1703))\n- [sfntedit] Fix bug when attempting to add non-existent file ([#1696](https://github.com/adobe-type-tools/afdko/pull/1696))\n- [documentation] Updates ([#1711](https://github.com/adobe-type-tools/afdko/pull/1711))\n- [requirements.txt] Update dependencies, remove psautohint from dependencies ([#1725](https://github.com/adobe-type-tools/afdko/pull/1725))\n- [ci] Add Python 3.11 to CI test matrix ([#1718](https://github.com/adobe-type-tools/afdko/pull/1718))\n\n4.0.0 (released 2023-09-11)\n---------------------------\n**The Python port of psautohint was (re)integrated into the AFDKO repository as \"otfautohint\"**\n\nChanges Summary:\n- [Name-Change] The name-change better reflects how hinted input is now published, and lets the new version coexist with the old version when needed.\n- [AFDKO Tools Updated] Other tools in AFDKO have been updated to call oftautohint instead of psautohint, and the dependency on the latter's repository has been removed.\n- [Stopping Psautohint Development] We expect to stop development of psautohint after this v4.0.0 release.\n- [Improvements] The new code fixes a number of bugs and in our judgement produces better results on average. It also uses a slightly different encoding in UFO glif files. Accordingly, users should expect that running the new code results in many differences compared with psautohint, but this should be a one-time change.\n- [Variable CFF Hinting] The new code also supports hinting of variable CFF-based fonts, including directly hinting a built CFF2 font. Glyphs that include overlap will typically be hinted close to how they would have been hinted with overlap removed.\n- [Hinting Time] Because psautohint was partly written in (very old) C code, and otfautohint is written entirely in Python, the new code takes significantly longer to hint an individual glyph. However, we have also enhanced otfautohint to hint different glyphs on multiple CPU cores by default. As a result the tool will be 5-8 times slower when running on a single core but will typically be slightly faster when running on 8 cores.\n\nMore information can be found in [docs/otfautohint_Notes.md](https://github.com/adobe-type-tools/afdko/blob/develop/docs/otfautohint_Notes.md)\n\nOther changes in v4.0.0: dependency updates.\n\n3.9.7 (released 2023-08-14)\n---------------------------\n- [buildcff2vf] Don't return zero when input requires compatibilization ([#1668](https://github.com/adobe-type-tools/afdko/pull/1668))\n- [requirements.txt, tests, ttxn] Update dependencies ([#1663](https://github.com/adobe-type-tools/afdko/pull/1663), [#1675](https://github.com/adobe-type-tools/afdko/pull/1675))\n\n3.9.6 (released 2023-06-13)\n---------------------------\n- [requirements.txt] Update dependencies, unpin specific fonttools version to allow more versions ([#1661](https://github.com/adobe-type-tools/afdko/pull/1661))\n- [tx] fix segfaults due to old function call ([#1649](https://github.com/adobe-type-tools/afdko/pull/1649))\n- [hotconv] Fix warning for negative TypoLineGap ([#1654](https://github.com/adobe-type-tools/afdko/pull/1654)) (thanks, @NSGod!)\n- [hotconv] reset dsigCnt in hotReuse() so subsequent conversions add full stub 'DSIG' table ([#1648](https://github.com/adobe-type-tools/afdko/pull/1648)) (thanks, @NSGod!)\n- [hotconv] 'name': fix memory leak in addName() ([#1646](https://github.com/adobe-type-tools/afdko/pull/1646)) (thanks, @NSGod!)\n- [README] Remove LGTM badges ([#1650](https://github.com/adobe-type-tools/afdko/pull/1650)) (thanks, @miguelsousa!)\n\n3.9.5 (released 2023-04-24)\n---------------------------\n- [python] **Drop Python 3.7**\n ([#1638](https://github.com/adobe-type-tools/afdko/pull/1638))\n- [tx] **tx/makeotf glyphOrder bug fix** \n ([#1642](https://github.com/adobe-type-tools/afdko/pull/1642))\n- [spot] fix name table LANG_TAG_REC_SIZE size definition (thanks, @NSGod!)\n ([#1640](https://github.com/adobe-type-tools/afdko/pull/1640))\n- [docs] CID-keyed UFO guide\n ([#1634](https://github.com/adobe-type-tools/afdko/pull/1634))\n- [requirements.txt][buildcff2vf_data] Update to fonttools v4.39.3\n ([#1639](https://github.com/adobe-type-tools/afdko/pull/1639))\n\n3.9.4 (released 2023-04-06)\n---------------------------\n- [tx] FDArray support in CID-Keyed UFOs\n - [tx][libxml2-improved] Move FDArray from fontinfo.plist to lib.plist ([#1576](https://github.com/adobe-type-tools/afdko/pull/1576))\n - [tx] fix languagegroup visibility ([#1620](https://github.com/adobe-type-tools/afdko/pull/1620))\n - [tx] Updates to CID-keyed UFO handling ([#1628](https://github.com/adobe-type-tools/afdko/pull/1628))\n - [tx] revert missing cid fail to warn ([#1633](https://github.com/adobe-type-tools/afdko/pull/1633))\n- [makeotf] Fix GOADB order of processing multiple unicode assignments ([#1615](https://github.com/adobe-type-tools/afdko/pull/1615))\n- [spot] fix 'kern' subtable Format3 rightClass memory leak (double allocation) (thanks @NSGod!) ([#1627](https://github.com/adobe-type-tools/afdko/pull/1627))\n- Small fixes, updates: ([#1614](https://github.com/adobe-type-tools/afdko/pull/1614), [#1624](https://github.com/adobe-type-tools/afdko/pull/1624))\n\n3.9.3 (released 2023-02-02)\n---------------------------\n- CMake github workflow updates:\n - Force static link of libxml2 on both windows and linux ([#1607](https://github.com/adobe-type-tools/afdko/pull/1607))\n- CMake libxml2 updates:\n - Stop forcing static LibXML2 build on Linux ([#1601](https://github.com/adobe-type-tools/afdko/pull/1601))\n - Unify cmake libxml build logic ([#1597](https://github.com/adobe-type-tools/afdko/pull/1597))\n- [docs] Formatting fix-up ([#1605](https://github.com/adobe-type-tools/afdko/pull/1605))\n- [tx] Restore stack-like behavior of parseGLIF transform pointer ([#1595](https://github.com/adobe-type-tools/afdko/pull/1595))\n\n3.9.2 (released 2023-01-10)\n---------------------------\n- tx:\n - [tx] Always use blend for stem storage in cffwrite_t2cstr.c ([#1591](https://github.com/adobe-type-tools/afdko/pull/1591))\n - [tx] [t2cstr] Use non-xxxVF paths in t2cstr when flattening and outputting CFF2 ([#1588](https://github.com/adobe-type-tools/afdko/pull/1588))\n - UFO parsing:\n - [tx] Replace UFO .glif file parsing with libxml2 ([#1556](https://github.com/adobe-type-tools/afdko/pull/1556))\n - [tx] Replace UFO content.plist/glyphList parsing with libxml2 ([#1543](https://github.com/adobe-type-tools/afdko/pull/1543))\n - [tx] Other related uforead & ufowrite parsing updates ([#1595](https://github.com/adobe-type-tools/afdko/pull/1595), [#1590](https://github.com/adobe-type-tools/afdko/pull/1590), [#1568](https://github.com/adobe-type-tools/afdko/pull/1568), [#1566](https://github.com/adobe-type-tools/afdko/pull/1566), [#1541](https://github.com/adobe-type-tools/afdko/pull/1541), [#1537](https://github.com/adobe-type-tools/afdko/pull/1537), [#1536](https://github.com/adobe-type-tools/afdko/pull/1536))\n- [dependencies] add renovate.json ([#1545](https://github.com/adobe-type-tools/afdko/pull/1545))\n- [agd.py] [comparefamily.py] Fixing the two instances of \"rU\" (thanks @colinmford !) ([#1584](https://github.com/adobe-type-tools/afdko/pull/1584))\n- [makeinstancesufo] Add --instance_info option to makeinstancesufo ([#1577](https://github.com/adobe-type-tools/afdko/pull/1577))\n- [makeinstancesufo] Boost number of makeinstancesufo pool processors by one ([#1561](https://github.com/adobe-type-tools/afdko/pull/1561))\n- [otf2ttf] Ensure poolCapacity is at least 1 (thanks @Heptazhou !) ([#1530](https://github.com/adobe-type-tools/afdko/pull/1530))\n- [otf2ttf] Force maxPoolCapacity to be at least 1 (thanks @Heptazhou !)([#1529](https://github.com/adobe-type-tools/afdko/pull/1529))\n\n3.9.1 (released 2022-07-01)\n---------------------------\n- [CMake] Link LibXML2 statically for Linux for bug fix ([#1527](https://github.com/adobe-type-tools/afdko/pull/1527))\n- [makeotf][tx] Fix some linux compile problems with \"bool\" ([#1524](https://github.com/adobe-type-tools/afdko/pull/1524))\n- [tx] Replace UFO lib.plist parsing with libxml2 ([#1523](https://github.com/adobe-type-tools/afdko/pull/1523))\n\n3.9.0 (released 2022-06-23)\n---------------------------\n- [tx] Replace UFO fontinfo.plist parsing with libxml2 ([#1515](https://github.com/adobe-type-tools/afdko/pull/1515), [#1517](https://github.com/adobe-type-tools/afdko/pull/1517), [#1518](https://github.com/adobe-type-tools/afdko/pull/1518), [#1519](https://github.com/adobe-type-tools/afdko/pull/1519))\n- [makeotf] Copy va_list for second use (and add va_end's to avoid leaking) ([#1512](https://github.com/adobe-type-tools/afdko/pull/1512))\n- [requirements] updated dependencies\n\n3.8.3 (released 2022-05-09)\n---------------------------\n- [requirements] updated dependencies\n- [docs] Add links to previously opened Windows build issues ([#1505](https://github.com/adobe-type-tools/afdko/pull/1505))\n- [docs] Fix line wrap in feature file spec ([#1509](https://github.com/adobe-type-tools/afdko/pull/1509))\n- [ci] Enable Codecov informational checks ([#1501](https://github.com/adobe-type-tools/afdko/pull/1501))\n\n3.8.2 (released 2022-04-11)\n---------------------------\n- [tx] Fix Memory Crashes ([#1497](https://github.com/adobe-type-tools/afdko/pull/1497))\n- [antlr4] ANTLR v4.9.3 Upgrade ([#1491](https://github.com/adobe-type-tools/afdko/pull/1491))\n- [tx] ignore subr recursion limit ([#1484](https://github.com/adobe-type-tools/afdko/pull/1484))\n- [tx] Don't parse non-FDArray array of dictionaries in fontinfo.plist\n ([#1478](https://github.com/adobe-type-tools/afdko/pull/1478))\n- [requirements] updated dependencies\n\n3.8.1 (released 2022-02-24)\n---------------------------\n- [tx] Add safety initialization of pdwCtx structure in pdwNew\n ([#1474](https://github.com/adobe-type-tools/afdko/pull/1474))\n- [requirements] updated dependencies\n\n3.8.0 (released 2022-02-03)\n---------------------------\n- [python] **Drop Python 3.6, add Python 3.10 support**\n ([#1456](https://github.com/adobe-type-tools/afdko/pull/1456))\n- [tx] Initialize variables in doFile\n ([#1466](https://github.com/adobe-type-tools/afdko/pull/1466))\n- [ci] Build universal2 wheel instead of arm64 (thanks @miguelsousa!)\n ([#1462](https://github.com/adobe-type-tools/afdko/pull/1462))\n- [ci] Add macOS arm64 wheel (thanks @miguelsousa!)\n ([#1461](https://github.com/adobe-type-tools/afdko/pull/1461))\n- [c] Fix C-code coverage reporting (thanks @miguelsousa!)\n ([#1460](https://github.com/adobe-type-tools/afdko/pull/1460))\n- [tx] Preserve intentional duplicate start points when PFA -> UFO\n ([#1452](https://github.com/adobe-type-tools/afdko/pull/1452))\n- [tx] Fix unintentional duplicate start points caused by floating-value coordinates when PFA -> UFO\n ([#1448](https://github.com/adobe-type-tools/afdko/pull/1448))\n- [README] Fix broken relative link in README\n ([#1424](https://github.com/adobe-type-tools/afdko/pull/1424))\n- [ttxn] Update ttxn for fontTools 4.27.0 update\n ([#1423](https://github.com/adobe-type-tools/afdko/pull/1423)\n [#1418](https://github.com/adobe-type-tools/afdko/issues/1418))\n- [otf2ttf] Add throttling to OTF2TTF to avoid hangs on Windows with large CPU (thanks @be5invis!)\n ([#1421](https://github.com/adobe-type-tools/afdko/pull/1421),\n [#1420](https://github.com/adobe-type-tools/afdko/issues/1420))\n- [requirements] updated dependencies\n\n3.7.1 (released 2021-08-31)\n---------------------------\n- [makeotfexe] **Port of Feature File Parser to Antlr 4**\n ([#548](https://github.com/adobe-type-tools/afdko/issues/548),\n [#1367](https://github.com/adobe-type-tools/afdko/pull/1367))\n- [spec] **OpenType Feature File Specification updated to v1.26** with the following ([here](https://github.com/adobe-type-tools/afdko/blob/26761e9616f8a52aa14e7041ac9cbb0e139a1d83/docs/OpenTypeFeatureFileSpecification.md)):\n - `include` directive is \"statement-only\" \n - with the exception of `mark`, keywords cannot be used as lookup names or tags\n - list of valid characters for tags has been updated\n - tags cannot start with a digit or hyphen\n- [build] Switch to CMake-based builds -- [see documentation](https://github.com/adobe-type-tools/afdko/blob/develop/docs/FDK_Build_Notes.md#build-system)\n ([#1124](https://github.com/adobe-type-tools/afdko/issues/1124),\n [#1360](https://github.com/adobe-type-tools/afdko/pull/1360),\n [#1384](https://github.com/adobe-type-tools/afdko/pull/1384),\n [#1372](https://github.com/adobe-type-tools/afdko/pull/1372))\n- [makeinstancesufo] fixes for fontMath 0.8.1 update\n ([#1391](https://github.com/adobe-type-tools/afdko/pull/1391))\n- [tx] ufowrite for loop init declaration fix \n ([#1373](https://github.com/adobe-type-tools/afdko/pull/1373))\n- [tx] uforead deleting outlines fix\n ([#1370](https://github.com/adobe-type-tools/afdko/pull/1370))\n- [tx] Windows line endings in binary files fix \n ([#1361](https://github.com/adobe-type-tools/afdko/pull/1361))\n- [makeotf] Fix for makeotf heap use after free\n ([#1356](https://github.com/adobe-type-tools/afdko/pull/1356))\n- [tx] uforead, ufowrite, checkoutlinesufo fixes for reading & writing CID-keyed fonts \n ([#1353](https://github.com/adobe-type-tools/afdko/pull/1353))\n- [tx] t1read.c add error for fonts surpassing 65000 SID Limit \n ([#1347](https://github.com/adobe-type-tools/afdko/pull/1347))\n- [tx] cffread.c data type fix\n ([#1344](https://github.com/adobe-type-tools/afdko/pull/1344))\n- [spec] Spec 6.4.iii: 'markClass' instead of 'mark' in example 4 (thanks @moyogo!)\n ([#1336](https://github.com/adobe-type-tools/afdko/pull/1336))\n- [checkoutlinesufo] Moved list sort out of loop to not waste time sorting\n ([#1331](https://github.com/adobe-type-tools/afdko/pull/1331))\n- [makeotf] aarch64 precision errors fix\n ([#1329](https://github.com/adobe-type-tools/afdko/pull/1329))\n- [tests] Add cpplint check\n ([#1325](https://github.com/adobe-type-tools/afdko/pull/1325))\n\n3.6.2 (released 2021-03-02)\n---------------------------\n- [spec] Allow deleting glyphs via Multiple substitution (thanks @simoncozens!)\n ([#1251](https://github.com/adobe-type-tools/afdko/pull/1251),\n [#1234](https://github.com/adobe-type-tools/afdko/issues/1234),\n [#1294](https://github.com/adobe-type-tools/afdko/pull/1294))\n- [makeotfexe] Allow negative internal leading\n ([#1279](https://github.com/adobe-type-tools/afdko/pull/1279),\n [#1227](https://github.com/adobe-type-tools/afdko/issues/1227))\n- [docs] Clean up README.md (thanks @vladdoster!)\n ([#1280](https://github.com/adobe-type-tools/afdko/pull/1280))\n- [cff2vf] Do not assume presence of `STAT.AxisValueArray`\n ([#1283](https://github.com/adobe-type-tools/afdko/pull/1283),\n [#1281](https://github.com/adobe-type-tools/afdko/issues/1281))\n- [repo] Re-sync `master` --> `develop`\n ([#1285](https://github.com/adobe-type-tools/afdko/pull/1285))\n- [tests] Skip version number in diff of makeotfexe test\n ([#1286](https://github.com/adobe-type-tools/afdko/pull/1286))\n- [spot] re-format documentation\n ([#1287](https://github.com/adobe-type-tools/afdko/pull/1287))\n- [checkoutlinesufo] Add `ignore-contour-order` flag\n ([#1289](https://github.com/adobe-type-tools/afdko/pull/1289))\n- [makeinstancesufo] Implement multiprocessing\n ([#1293](https://github.com/adobe-type-tools/afdko/pull/1293),\n [#1161](https://github.com/adobe-type-tools/afdko/issues/1161))\n- [checkoutlinesufo] Fix `restore_contour_order`\n ([#1296](https://github.com/adobe-type-tools/afdko/pull/1296),\n [#1291](https://github.com/adobe-type-tools/afdko/issues/1291))\n- [makeotf] don't fail when converting `'post'` table format 3 -> 2\n ([#1303](https://github.com/adobe-type-tools/afdko/pull/1303),\n [#1301](https://github.com/adobe-type-tools/afdko/issues/1301))\n- [makeotfexe] increase GOADB UV/Alias name string length limit\n ([#1311](https://github.com/adobe-type-tools/afdko/pull/1311),\n [#1310](https://github.com/adobe-type-tools/afdko/issues/1310))\n- [checkoutlinesufo] Fix logic for reporting duplicated start point\n ([#1318](https://github.com/adobe-type-tools/afdko/pull/1318),\n [#1315](https://github.com/adobe-type-tools/afdko/issues/1315))\n- [tests, tx] increase precision (`float` --> `double`) to fix i586 failing tests\n ([#1321](https://github.com/adobe-type-tools/afdko/issues/1321),\n [#1216](https://github.com/adobe-type-tools/afdko/issues/1216),\n [#1163](https://github.com/adobe-type-tools/afdko/issues/1163))\n\n3.6.1 (released 2021-01-13)\n---------------------------\n- [packaging] Fix Windows wheel\n ([#1278](https://github.com/adobe-type-tools/afdko/pull/1278),\n [#1277](https://github.com/adobe-type-tools/afdko/issues/1277))\n\n3.6.0 (released 2020-12-17)\n---------------------------\n- [checkoutlinesufo] Add CID support\n ([#1224](https://github.com/adobe-type-tools/afdko/pull/1224))\n- [checkoutlinesufo] Fix nested loop variable\n ([#1231](https://github.com/adobe-type-tools/afdko/pull/1231))\n- [tests] Update date regex to skip date & time metrics\n ([#1232](https://github.com/adobe-type-tools/afdko/pull/1232))\n- [docs] Fix typo (Thanks, @djr11!)\n ([#1236](https://github.com/adobe-type-tools/afdko/pull/1236))\n- [docs] Describe tab-separated format of GOADB (Thanks, @djr11!)\n ([#1238](https://github.com/adobe-type-tools/afdko/pull/1238))\n- [docs] Fix typo (Thanks, @ln-north!)\n ([#1241](https://github.com/adobe-type-tools/afdko/pull/1241))\n- [checkoutlinesufo] Update progress bar\n ([#1243](https://github.com/adobe-type-tools/afdko/pull/1243))\n- [checkoutlinesufo] Implement `-o` (output file) option\n ([#1244](https://github.com/adobe-type-tools/afdko/pull/1244))\n- [ci, tests] Use GitHub Actions for everything\n ([#1254](https://github.com/adobe-type-tools/afdko/pull/1254),\n [#1265](https://github.com/adobe-type-tools/afdko/pull/1265))\n- [makeotfexe] Update help/usage documentation\n ([#1262](https://github.com/adobe-type-tools/afdko/pull/1262))\n- [comparefamily, pdflib] Fix `== None` comparisons\n ([#1264](https://github.com/adobe-type-tools/afdko/pull/1264))\n- [checkoutlinesufo] Remove UFO2-as-UFO3 hack (now up-converts to UFO3)\n ([#1135](https://github.com/adobe-type-tools/afdko/issues/1135),\n [#1270](https://github.com/adobe-type-tools/afdko/pull/1270))\n\n3.5.1 (released 2020-09-15)\n----------------------\n- [tx] improve robustness\n ([#1187](https://github.com/adobe-type-tools/afdko/pull/1187),\n [#1188](https://github.com/adobe-type-tools/afdko/pull/1188))\n- [makeotfexe] support `OS/2.sFamilyClass` in feature files\n ([#1191](**https://github.com/adobe-type-tools/afdko/issues/1191),\n [#1192](https://github.com/adobe-type-tools/afdko/pull/1192))\n- [docs] correct description of STAT location values\n ([#1190](https://github.com/adobe-type-tools/afdko/issues/1190),\n [#1193](https://github.com/adobe-type-tools/afdko/pull/1193))\n- [makeotfexe] fix check of duplicates in STAT Format 4 Axis Values\n ([#1195](https://github.com/adobe-type-tools/afdko/pull/1195))\n- [ttfcomponentizer] add warning for empty psnames\n ([#1198](https://github.com/adobe-type-tools/afdko/issues/1198),\n [#1199](https://github.com/adobe-type-tools/afdko/pull/1199))\n- [buildcff2vf] add STAT validation\n ([#1200](https://github.com/adobe-type-tools/afdko/pull/1200))\n- [makeotf] allow anonymous glyphclass in LookupFlags\n ([#1206](https://github.com/adobe-type-tools/afdko/pull/1206))\n- [agd] support 5-digit codepoints in AGD file\n ([#1207](https://github.com/adobe-type-tools/afdko/issues/1207),\n [#1208](https://github.com/adobe-type-tools/afdko/pull/1208))\n- [makeinstancesufo] make designspace attributes lowercase\n ([#1211](https://github.com/adobe-type-tools/afdko/issues/1211),\n [#1212](https://github.com/adobe-type-tools/afdko/pull/1212))\n- [makeotf] remove hyphen for STAT range definitions\n ([#1197](https://github.com/adobe-type-tools/afdko/issues/1197),\n [#1213](https://github.com/adobe-type-tools/afdko/pull/1213))\n- [docs] clarify use of `python3` and `pip3` in README\n ([#1215](https://github.com/adobe-type-tools/afdko/pull/1215))\n- [pdflib] fix circle-drawing bug (thanks @bcirc!)\n ([#1218](https://github.com/adobe-type-tools/afdko/issues/1218),\n [#1219](https://github.com/adobe-type-tools/afdko/pull/1219)])\n- [docs] clarify description of glyph name ranges (thanks @PeterCon!)\n ([#1222](https://github.com/adobe-type-tools/afdko/issues/1222),\n [#1211](https://github.com/adobe-type-tools/afdko/pull/1221))\n- [checkoutlinesufo] add support for CID-keyed fonts\n ([#1224](https://github.com/adobe-type-tools/afdko/pull/1224))\n\n3.5.0 (released 2020-07-16)\n----------------------\n- [docs] fix broken links, add new links, fix typos, add templates\n ([#1140](https://github.com/adobe-type-tools/afdko/pull/1140),\n [#1151](https://github.com/adobe-type-tools/afdko/pull/1151),\n [#1176](https://github.com/adobe-type-tools/afdko/pull/1176))\n- [tx] many fixes related to uninitialized variables, buffer/stack overflows,\n etc. Thanks to @antlarr-suse and internal contributors for chasing these down and fixing!\n ([#1141](https://github.com/adobe-type-tools/afdko/pull/1141),\n [#1180](https://github.com/adobe-type-tools/afdko/pull/1180),\n [#1182](https://github.com/adobe-type-tools/afdko/pull/1182),\n [#1187](https://github.com/adobe-type-tools/afdko/pull/1187),\n [#1188](https://github.com/adobe-type-tools/afdko/pull/1188))\n- [makeotf] Drop Multiple Master in OpenType support (thanks @khaledhosny!)\n ([#995](https://github.com/adobe-type-tools/afdko/issues/995),\n [#1144](https://github.com/adobe-type-tools/afdko/pull/1144))\n- [checkoutlinesufo] Improve overlap removal\n ([#790](https://github.com/adobe-type-tools/afdko/issues/790),\n [#1146](https://github.com/adobe-type-tools/afdko/pull/1146),\n [#1170](https://github.com/adobe-type-tools/afdko/pull/1170))\n- [fontsetplot, ttfdecomponentizer] Fix proofing issues\n ([#1125](https://github.com/adobe-type-tools/afdko/issues/1125),\n [#1148](https://github.com/adobe-type-tools/afdko/pull/1148))\n- [requirements] remove dependency on standalone cu2qu (integrated into\n fontTools 4.7.0)\n ([#1150](https://github.com/adobe-type-tools/afdko/pull/1150))\n- [makeinstancesufo] fix `use-varlib` flag, check for extrapolation/warn when\n using varLib\n ([#1152](https://github.com/adobe-type-tools/afdko/issues/1152),\n [#1155](https://github.com/adobe-type-tools/afdko/pull/1155))\n- [makeotf] update a misleading comment regarding how CodePageRange bits are set\n ([#1156](https://github.com/adobe-type-tools/afdko/issues/1156),\n [#1157](https://github.com/adobe-type-tools/afdko/pull/1157))\n- [sfntedit, sfntdiff] fix failures with long file/pathnames\n ([#1139](https://github.com/adobe-type-tools/afdko/issues/1139),\n [#1159](https://github.com/adobe-type-tools/afdko/pull/1159))\n- [tx] don't write FontMatrix in CFF2 FontDict\n ([cffsubr #13](https://github.com/adobe-type-tools/cffsubr/issues/13),\n [#1165](https://github.com/adobe-type-tools/afdko/pull/1165))\n- [makeotf, makeotfexe] STAT table updates and improvements\n ([#1164](https://github.com/adobe-type-tools/afdko/issues/1164),\n [#1166](https://github.com/adobe-type-tools/afdko/pull/1166),\n [#1174](https://github.com/adobe-type-tools/afdko/pull/1174),\n [#1177](https://github.com/adobe-type-tools/afdko/issues/1177),\n [#1178](https://github.com/adobe-type-tools/afdko/issues/1178),\n [#1179](https://github.com/adobe-type-tools/afdko/pull/1179))\n- [makeotf] Check for PostScript name in FontMenuNameDB\n ([#1171](https://github.com/adobe-type-tools/afdko/issues/1171),\n [#1172](https://github.com/adobe-type-tools/afdko/pull/1172))\n- [autohint, stemhist] **REMOVED FROM AFDKO** (use psautohint/psstemhist)\n ([#826](https://github.com/adobe-type-tools/afdko/issues/826),\n [#827](https://github.com/adobe-type-tools/afdko/issues/827),\n [#1175](https://github.com/adobe-type-tools/afdko/pull/1175))\n- [makeotfexe] fix stack buffer overflow and use-after-free issues\n ([#1183](https://github.com/adobe-type-tools/afdko/pull/1183),\n [#1184](https://github.com/adobe-type-tools/afdko/pull/1184))\n- [mergefonts] fix stack buffer overflow issue\n ([#1185](https://github.com/adobe-type-tools/afdko/pull/1185))\n- [spot] fix heap buffer overflow issue\n ([#1186](https://github.com/adobe-type-tools/afdko/pull/1186))\n\n3.4.0 (released 2020-05-26)\n---------------------------\n- [makeotf] STAT table support (thanks @khaledhosny!)\n ([#176](https://github.com/adobe-type-tools/afdko/issues/176),\n [#1127](https://github.com/adobe-type-tools/afdko/pull/1127))\n- [makeotf] Support multiple chained lookups per position (thanks @simoncozens!)\n ([#1119](https://github.com/adobe-type-tools/afdko/issues/1119),\n [#1132](https://github.com/adobe-type-tools/afdko/pull/1132))\n- [makeotf] Allow UTF-8 input for name strings (thanks @khaledhosny!)\n ([#165](https://github.com/adobe-type-tools/afdko/issues/165),\n [#1133](https://github.com/adobe-type-tools/afdko/pull/1133))\n- [spot] prevent string overflow\n ([#1136](https://github.com/adobe-type-tools/afdko/pull/1136))\n- [spec] Update STAT examples, multiple lookup documentation, fix broken links\n ([#1137](https://github.com/adobe-type-tools/afdko/pull/1137),\n [#1140](https://github.com/adobe-type-tools/afdko/pull/1140))\n- [sfntedit] Use portable `rename`\n ([#1138](https://github.com/adobe-type-tools/afdko/pull/1138))\n- [absfont, ttread] Initialize variables before use (thanks @antlarr-suse!)\n ([#1141](https://github.com/adobe-type-tools/afdko/pull/1141))\n\n3.3.0 (released 2020-05-01)\n---------------------------\n- [otf2ttf] update LSB in hmtx to match glyph xMin\n ([#1114](https://github.com/adobe-type-tools/afdko/pull/1114))\n- [dependencies] update to latest fontTools, MutatorMath, ufonormalizer\n ([#1113](https://github.com/adobe-type-tools/afdko/pull/1117),\n [#1120](https://github.com/adobe-type-tools/afdko/pull/1120))\n- [c tools] improved robustness\n ([#1121](https://github.com/adobe-type-tools/afdko/pull/1121),\n [#1122](https://github.com/adobe-type-tools/afdko/pull/1122),\n [#1123](https://github.com/adobe-type-tools/afdko/pull/1123))\n- [makeinstancesufo] add option to use varLib instead of MutatorMath\n ([#1126](https://github.com/adobe-type-tools/afdko/pull/1126))\n\n3.2.1 (released 2020-03-27)\n---------------------------\n- [sfntedit] cleaned up help string\n ([#1084](https://github.com/adobe-type-tools/afdko/pull/1084))\n- [docs] Updated AFDKO Overview doc\n ([#1091](https://github.com/adobe-type-tools/afdko/pull/1091))\n- [waterfallplot] fixed crash\n ([#1094](https://github.com/adobe-type-tools/afdko/pull/1094),\n [#1092](https://github.com/adobe-type-tools/afdko/issues/1092))\n- [ttfdecomponentizer] add ttfdecomponentizer tool\n ([#1096](https://github.com/adobe-type-tools/afdko/pull/1096))\n- [buildcff2vf] update to use new `fontTools.varLib` exceptions\n ([#1097](https://github.com/adobe-type-tools/afdko/pull/1097),\n [#1088](https://github.com/adobe-type-tools/afdko/issues/1088))\n- [ufotools] clean up (remove unused code)\n ([#1098](https://github.com/adobe-type-tools/afdko/pull/1098))\n- [docs] clarify allowed use of `script` and `language` keywords in feature files\n ([#1099](https://github.com/adobe-type-tools/afdko/pull/1099),\n [#990](https://github.com/adobe-type-tools/afdko/issues/990))\n- [requirements] fix issue with PyUp configuration (re-enable automatic updates)\n- [requirements] relax constraints on `ufoProcessor` version\n ([#1102](https://github.com/adobe-type-tools/afdko/issues/1102))\n- [spec] replace invalid example in OpenType Feature File specification\n ([#1106](https://github.com/adobe-type-tools/afdko/issues/1106),\n [#1107](https://github.com/adobe-type-tools/afdko/pull/1107))\n- [makeotfexe] fix bug which could cause a crash with some fonts\n ([#1108](https://github.com/adobe-type-tools/afdko/issues/1108),\n [#1109](https://github.com/adobe-type-tools/afdko/pull/1109))\n\n3.2.0 (released 2020-01-24)\n---------------------------\n- [ttfcomponentizer] minor updates and improvements\n ([#1069](https://github.com/adobe-type-tools/afdko/pull/1069),\n [#1072](https://github.com/adobe-type-tools/afdko/pull/1072))\n- [tests] fix date-based bug in tx tests\n ([#1076](https://github.com/adobe-type-tools/afdko/pull/1076))\n- [autohint] and [stemhist] now simply redirect input to psautohint/psstemhist\n ([#1077](https://github.com/adobe-type-tools/afdko/pull/1077))\n- [makeotfexe] fix bug in font generation with multiple `languagesystem` entries\n ([#1080](https://github.com/adobe-type-tools/afdko/issues/1080),\n [#1081](https://github.com/adobe-type-tools/afdko/pull/1081))\n\n3.1.0 (released 2019-12-16)\n---------------------------\n- [ci] updates and maintenance on several CI services:\n - added LGTM.com (Semmle) analyze-on-Pull-Request support\n - removed Codacy check\n - set up Azure Pipeline with Mac, Windows, and Linux testing\n- [tests] Add filtering for fontTools `DeprecationWarnings`\n- [tx] Add descriptions of optimization options (`tx -cff` help)\n ([#938](https://github.com/adobe-type-tools/afdko/pull/938), \n [#939](https://github.com/adobe-type-tools/afdko/pull/939))\n- [tx] Fix handling of blend options\n ([#940](https://github.com/adobe-type-tools/afdko/issues/940),\n [#941](https://github.com/adobe-type-tools/afdko/pull/941))\n- [fdkutils] Improve shell command handling, increase test coverage\n ([#946](https://github.com/adobe-type-tools/afdko/pull/946))\n- [comparefamily] Trim `agd.py` to only parts needed to keep\n `comparefamily` running\n ([#948](https://github.com/adobe-type-tools/afdko/pull/948))\n- [tx tests] Improved tests\n ([#949](https://github.com/adobe-type-tools/afdko/pull/949),\n [#950](https://github.com/adobe-type-tools/afdko/pull/951))\n- [fdkutils] Add TTC support\n ([#952](https://github.com/adobe-type-tools/afdko/pull/952))\n- [tx] Add variable font support to ttread\n ([#957](https://github.com/adobe-type-tools/afdko/pull/957))\n- [tx] A whole bunch of improvements and fixes\n ([#929](https://github.com/adobe-type-tools/afdko/pull/929),\n [#954](https://github.com/adobe-type-tools/afdko/pull/954),\n [#955](https://github.com/adobe-type-tools/afdko/pull/955),\n [#956](https://github.com/adobe-type-tools/afdko/pull/956),\n [#958](https://github.com/adobe-type-tools/afdko/pull/958),\n [#959](https://github.com/adobe-type-tools/afdko/pull/959),\n [#960](https://github.com/adobe-type-tools/afdko/pull/960),\n [#961](https://github.com/adobe-type-tools/afdko/pull/961),\n [#962](https://github.com/adobe-type-tools/afdko/pull/962),\n [#964](https://github.com/adobe-type-tools/afdko/pull/964),\n [#1045](https://github.com/adobe-type-tools/afdko/issues/1045),\n [#1046](https://github.com/adobe-type-tools/afdko/pull/1046))\n- [makeotfexe] Fix memory consumption issue\n ([#968](https://github.com/adobe-type-tools/afdko/pull/968),\n [#965](https://github.com/adobe-type-tools/afdko/issues/965))\n- [makeotfexe] Import fealib tests (thanks @khaledhosny!)\n ([#973](https://github.com/adobe-type-tools/afdko/pull/973))\n- [makeinstancesufo] Fix potential issue with temp files\n ([#976](https://github.com/adobe-type-tools/afdko/pull/976))\n- [otc2otf] Rewrite, fix `-t` option, increase test coverage\n ([#978](https://github.com/adobe-type-tools/afdko/pull/978))\n- [python][c] Numerous fixes for LGTM-reported issues\n ([LGTM.com/afdko](https://lgtm.com/projects/g/adobe-type-tools/afdko/history/))\n- [makeotf] Fix path issue in Mac OS X 10.15 Catalina\n ([#991](https://github.com/adobe-type-tools/afdko/pull/991))\n- [requirements] Relax pinning\n ([#997](https://github.com/adobe-type-tools/afdko/pull/997),\n [#408](https://github.com/adobe-type-tools/afdko/issues/408))\n- [fea-spec]\n - Fix example for mark glyph positioning (thanks @anthrotype!)\n ([#999](https://github.com/adobe-type-tools/afdko/pull/999))\n - Improve formatting and grammar (thanks @sergeresko!)\n ([#1031](https://github.com/adobe-type-tools/afdko/pull/1031))\n- [otf2ttf] Enhance for Collections, parallel processing, and file wildcards (thanks @msoxzw!)\n ([#1000](https://github.com/adobe-type-tools/afdko/pull/1000))\n- [makeotfexe] Increase code coverage (thanks @khaledhosny!)\n ([#1008](https://github.com/adobe-type-tools/afdko/pull/1008))\n- [docs] update documentation of hex format for GlyphOrderAndAliasDB, multiple Unicodes (thanks @benkiel!)\n ([#1028](https://github.com/adobe-type-tools/afdko/pull/1028),\n [#1024](https://github.com/adobe-type-tools/afdko/pull/1024))\n- [makeotfexe] fix calculation of OS/2.ulCodePageRange bits\n ([#1039](https://github.com/adobe-type-tools/afdko/pull/1042),\n [#1040](https://github.com/adobe-type-tools/afdko/issues/1040))\n- [dependencies] Update `psautohint` and `fontTools` to latest\n ([#1043](https://github.com/adobe-type-tools/afdko/pull/1043),\n [#1057](https://github.com/adobe-type-tools/afdko/pull/1057))\n\n3.0.1 (released 2019-08-22)\n---------------------------\n\n- [tx] Dump each _flex_ hint as a single line\n ([#915](https://github.com/adobe-type-tools/afdko/issues/915))\n- [tx] Fixed handling of `hmtx` values when instantiating a\n CFF2 font with shuffled regions\n ([#913](https://github.com/adobe-type-tools/afdko/issues/913))\n- [tx] Fixed handling of missing glyph names with `-svg`, `-cef`\n and `-afm` options\n ([#905](https://github.com/adobe-type-tools/afdko/pull/905),\n [#908](https://github.com/adobe-type-tools/afdko/pull/908))\n- [tx] Improved handling of defective CFF2 fonts\n ([#903](https://github.com/adobe-type-tools/afdko/pull/903),\n [#906](https://github.com/adobe-type-tools/afdko/pull/906))\n- [ufotools] Corrected the ordering of attributes in GLIF-file\n `<point>` elements to \"x, y, type\" (from \"type, x, y\")\n ([#900](https://github.com/adobe-type-tools/afdko/pull/900))\n- [makeinstancesufo] Various fixes and enhancements\n ([#899](https://github.com/adobe-type-tools/afdko/pull/899))\n- [checkoutlinesufo] Fixed support for non-UFO font formats\n ([#898](https://github.com/adobe-type-tools/afdko/pull/898),\n [#911](https://github.com/adobe-type-tools/afdko/pull/911))\n- [tx] Added support for writting FDSelect format 4\n ([#890](https://github.com/adobe-type-tools/afdko/issues/890))\n\n3.0.0 (released 2019-08-07)\n---------------------------\n\n- **This version supports Python 3.6+ ONLY**\n- NOTE: as a result of switching to new components for writing XML,\n some formatting of UFO-related XML output is slightly different\n from previous versions of AFDKO (ordering of attributes,\n self-closing element tags, indents).\n- [python] Drop support for Python 2.7\n ([#741](https://github.com/adobe-type-tools/afdko/issues/741))\n- [tx] Only use PUA Unicodes for unencoded glyphs in svg output\n ([#822](https://github.com/adobe-type-tools/afdko/issues/822))\n- [buildcff2vf] Use correct default master for compatibilization\n ([#816](https://github.com/adobe-type-tools/afdko/issues/816))\n- [buildcff2vf] Keep all OT features when subsetting\n ([#817](https://github.com/adobe-type-tools/afdko/issues/817))\n- [buildcff2vf] Fix bug in compatibilization\n ([#825](https://github.com/adobe-type-tools/afdko/pull/825))\n- [various Python] Use fontTools.misc.plistlib\n ([#711](https://github.com/adobe-type-tools/afdko/issues/711))\n- [various Python] Use fontTools.misc.etree\n ([#712](https://github.com/adobe-type-tools/afdko/issues/712))\n- [various C/C++] Improve robustness in several tools\n ([#833](https://github.com/adobe-type-tools/afdko/pull/833))\n- [makeotf] Use absolute paths for temp files\n ([#828](https://github.com/adobe-type-tools/afdko/issues/828))\n- [tx] Write a vsindex before the first blend (if needed)\n ([#845](https://github.com/adobe-type-tools/afdko/pull/845))\n- [tx] Decrement subroutine depth after subroutine call\n ([#846](https://github.com/adobe-type-tools/afdko/issues/846))\n- [otf2ttf] Remove VORG table from TTF output\n ([#863](https://github.com/adobe-type-tools/afdko/pull/863))\n- [makeotf] Prevent code execution\n ([#780](https://github.com/adobe-type-tools/afdko/issues/780),\n [#877](https://github.com/adobe-type-tools/afdko/pull/877))\n- [makeotfexe] Port tx subroutinizer\n ([#331](https://github.com/adobe-type-tools/afdko/issues/331))\n- [tx] Add support for reading FDSelect format 4\n ([#799](https://github.com/adobe-type-tools/afdko/issues/799))\n- [tx] Fix handling of IVS region indices\n ([#835](https://github.com/adobe-type-tools/afdko/pull/835))\n- [makeotfexe, makeotf] Limit maximum value for FontRevision\n ([#876](https://github.com/adobe-type-tools/afdko/issues/876),\n [#877](https://github.com/adobe-type-tools/afdko/pull/877))\n- [pdflib] Consolidate PDF-related files under afdko/pdflib\n ([#880](https://github.com/adobe-type-tools/afdko/pull/880))\n- [tx] Fix bug in generating SVG from font without FontName\n ([#883](https://github.com/adobe-type-tools/afdko/issues/883))\n\n2.9.1 (released 2019-06-22)\n---------------------------\n\n- **This is the last version that supports Python 2.7**\n- [autohint/checkoutlinesufo/ufotools] Fixed and enhanced the\n glyph hash calculation. The results now match **psautohint**\n version 1.9.3c1\n ([#806](https://github.com/adobe-type-tools/afdko/pull/806))\n- [makeinstancesufo] The `features.fea` file the instance fonts\n may include are now preserved (only if none of the masters\n have `<features copy=\"1\"/>` set in the designspace file)\n- [buildmasterotfs] Removed sparse masters workaround\n- [tx] Fixed infinite recursion in call to global subroutines\n ([#775](https://github.com/adobe-type-tools/afdko/issues/775))\n- [spot/makeotfexe] Updated OS/2 Unicode Ranges to match current\n OpenType specification\n ([#813](https://github.com/adobe-type-tools/afdko/issues/813),\n [#819](https://github.com/adobe-type-tools/afdko/pull/819))\n- [makeotfexe] Fixed MarkToBase bug (NOTE: a font is affected by\n this bug only when a base anchor record's coordinates match the\n coordinates of the first mark anchor record)\n ([#815](https://github.com/adobe-type-tools/afdko/pull/815))\n- [makeinstancesufo] Improved validation of UFO sources\n ([#778](https://github.com/adobe-type-tools/afdko/issues/778))\n\n2.8.10 (released 2019-05-28)\n---------------------------\n\n- **buildcff2vf** tool was rewritten to support sparse masters,\n glyph subsets, and to rely more on `fontTools.varLib`. Existing\n options were renamed and new ones were added\n ([#792](https://github.com/adobe-type-tools/afdko/pull/792),\n [#800](https://github.com/adobe-type-tools/afdko/pull/800))\n- [mergefonts] Ignore height advance value in UFO glyph files\n ([#795](https://github.com/adobe-type-tools/afdko/pull/795))\n\n2.8.9 (released 2019-04-29)\n---------------------------\n\n- OpenType Feature File specification was converted to markdown\n and is now hosted at https://adobe-type-tools.github.io/afdko/OpenTypeFeatureFileSpecification.html\n ([#777](https://github.com/adobe-type-tools/afdko/pull/777))\n- [tx] Ignore height advance value in UFO glyph files\n ([#786](https://github.com/adobe-type-tools/afdko/issues/786))\n\n2.8.8 (released 2019-03-15)\n---------------------------\n\n- [makeotf] Reverted the preference for `features.fea` file made\n in **afdko** version 2.8.6\n ([#765](https://github.com/adobe-type-tools/afdko/issues/765))\n- [sfntedit] Skip missing tables and issue a warning instead of\n exiting with fatal error\n ([#160](https://github.com/adobe-type-tools/afdko/issues/160))\n- [sfntdiff] Enabled diff'ing different font formats\n ([#626](https://github.com/adobe-type-tools/afdko/issues/626))\n\n2.8.7 (released 2019-03-08)\n---------------------------\n\n- Fixed installation on Cygwin OS\n ([#748](https://github.com/adobe-type-tools/afdko/issues/748))\n- [tx] Fixed blend overflow error\n ([#684](https://github.com/adobe-type-tools/afdko/issues/684))\n- [tx] Fixed error in delta array calculation\n ([#758](https://github.com/adobe-type-tools/afdko/issues/758))\n- [makeotfexe] Fixed detection of offset overflow to a feature parameter\n ([#746](https://github.com/adobe-type-tools/afdko/issues/746))\n- [makeotf] Fixed duplicate warning messages coming from tx\n ([#751](https://github.com/adobe-type-tools/afdko/issues/751))\n- [makeotf] Fixed error message when tool is ran without arguments\n and default named files cannot be found\n ([#755](https://github.com/adobe-type-tools/afdko/issues/755))\n- Updated AGD.txt\n ([#750](https://github.com/adobe-type-tools/afdko/issues/750))\n- [makeinstancesufo] Fixed failure when `filename` attribute in\n designspace's `<instance>` element has no leading folder path.\n Fixed copying non-kerning groups.\n ([#753](https://github.com/adobe-type-tools/afdko/issues/753))\n- [makeinstancesufo] Fixed anisotropic interpolation\n ([#756](https://github.com/adobe-type-tools/afdko/issues/756))\n\n\n2.8.6 (released 2019-03-01)\n---------------------------\n\n- Updated FEA syntax spec to allow `subtable` statements in lookups\n other than PairPos Format 2.\n- [makeotf] Added `features.fea` to list of default FEA file names,\n and gave preference to it\n- [tx] Don't fake font name or version if they're not in the source UFO\n ([#437](https://github.com/adobe-type-tools/afdko/issues/437))\n- [makeinstancesufo] Added `--ufo-version` option\n- [otfpdf/ttfpdf] Round glyph bounds values\n ([#128](https://github.com/adobe-type-tools/afdko/issues/128))\n- [otfpdf] Provide a glyphset to the pens\n ([#125](https://github.com/adobe-type-tools/afdko/issues/125))\n- [tx] Get UFO's layer file names from the layer's contents.plist\n ([#740](https://github.com/adobe-type-tools/afdko/issues/740),\n [#703](https://github.com/adobe-type-tools/afdko/issues/703))\n- [ufotools] Replace `convertGlyphOutlineToBezString()` by\n `get_glyph_bez()` from **psautohint**\n ([#715](https://github.com/adobe-type-tools/afdko/issues/715))\n- [makeotf] Update and re-format documentation\n ([#702](https://github.com/adobe-type-tools/afdko/issues/702))\n- [makeotf] Use FontTools to copy font tables\n ([#739](https://github.com/adobe-type-tools/afdko/pull/739))\n- [makeotf] Delete zero-size font on failure\n ([#736](https://github.com/adobe-type-tools/afdko/issues/736))\n\n2.8.5 (released 2019-02-09)\n---------------------------\n\n- [tx] Improved subroutinization. Removal of futile subroutines\n is now the default. `-no_futile` option has been deprecated\n ([#704](https://github.com/adobe-type-tools/afdko/pull/704))\n- [buildmasterotfs] Fixed failure when master UFOs and designspace\n file are in the same directory\n- [buildcff2vf] Fixed type error bug\n- [fdkutils] Fixed UnicodeDecodeError on py27 Windows\n ([#719](https://github.com/adobe-type-tools/afdko/issues/719))\n- [tx] Fixed failure processing already-subroutinized CFF2 font\n ([#721](https://github.com/adobe-type-tools/afdko/issues/721))\n- [tx] Fixed wrong entries in Standard Apple Glyph Ordering\n ([#727](https://github.com/adobe-type-tools/afdko/pull/727))\n- [makeotfexe] Added support for shorthand syntax for contextual\n multiple substitutions `sub a b' c by d e;`\n ([#725](https://github.com/adobe-type-tools/afdko/issues/725))\n- [makeotfexe] Fixed infinite loop\n ([#728](https://github.com/adobe-type-tools/afdko/pull/728))\n- [makeotfexe] Allow glyph at GID 0 in glyph classes\n ([#726](https://github.com/adobe-type-tools/afdko/issues/726))\n- [ufotools] Skip `<dict>` elements inside `<array>`\n ([#700](https://github.com/adobe-type-tools/afdko/issues/700))\n- [tx] Support self-closing `<dict/>` in UFO's lib.plist\n ([#701](https://github.com/adobe-type-tools/afdko/issues/701))\n- [makeotfexe] Fixed detection of offset overflow error\n ([#731](https://github.com/adobe-type-tools/afdko/issues/731))\n- [makeotfexe] Fixed application of `useExtension` to anonymous lookups\n ([#321](https://github.com/adobe-type-tools/afdko/issues/321))\n- [tx] Support UFO3 guidelines\n ([#705](https://github.com/adobe-type-tools/afdko/issues/705))\n\n2.8.4 (released 2019-01-09)\n---------------------------\n\n- [ufotools] Python 3 fix\n ([#676](https://github.com/adobe-type-tools/afdko/pull/676))\n- [tx] Fixed `-dcf` option failing to print CFF2 global subrs\n ([#681](https://github.com/adobe-type-tools/afdko/pull/681))\n- [tx] Fixed subroutinizer 64K limit\n ([#687](https://github.com/adobe-type-tools/afdko/pull/687))\n- [makeinstancesufo] Switched from using mutatorMath to\n ufoProcessor\n ([#669](https://github.com/adobe-type-tools/afdko/pull/669))\n- [makeinstancesufo] Switched from using autohint to psautohint\n ([#689](https://github.com/adobe-type-tools/afdko/pull/689))\n- [makeotf] Fixed calls to `sfntedit`\n ([#690](https://github.com/adobe-type-tools/afdko/pull/690))\n- [checkoutlinesufo] Fixed failure to remove overlaps\n ([#239](https://github.com/adobe-type-tools/afdko/issues/239))\n- [checkoutlinesufo] Fixed glyph hashes when using `-w` option\n ([#692](https://github.com/adobe-type-tools/afdko/pull/692))\n- [spot] Updated OpenType feature tags to v1.8.3\n ([#693](https://github.com/adobe-type-tools/afdko/pull/693))\n- [makeotfexe] Fixed \"glyph not in font\" error\n ([#698](https://github.com/adobe-type-tools/afdko/pull/698))\n- [tx] Fixed CFF2 blend/path optimization\n ([#697](https://github.com/adobe-type-tools/afdko/pull/697))\n- [otc2otf] Fixed file path bugs\n ([#708](https://github.com/adobe-type-tools/afdko/issues/708))\n- [ttfcomponentizer] Fixed setting first component flag\n ([#709](https://github.com/adobe-type-tools/afdko/issues/709))\n- [ttfcomponentizer] Update `maxp` maxComponentElements value\n ([#710](https://github.com/adobe-type-tools/afdko/issues/710))\n\n2.8.3 (released 2018-11-02)\n---------------------------\n\n- New `otf2ttf` tool that converts OpenType-CFF fonts to TrueType.\n ([#625](https://github.com/adobe-type-tools/afdko/pull/625))\n- [tx] Font and glyph bounding box values are updated now\n ([#618](https://github.com/adobe-type-tools/afdko/issues/618),\n [#655](https://github.com/adobe-type-tools/afdko/issues/655))\n- [makeotfexe] CFF table `FontBBox` values are updated now\n ([#617](https://github.com/adobe-type-tools/afdko/issues/617))\n- [makeotfexe] Removed warning about the font's major version number\n ([#622](https://github.com/adobe-type-tools/afdko/pull/622))\n- [makeotfexe] Fixed garbage in subtable overflow messages\n ([#313](https://github.com/adobe-type-tools/afdko/issues/313))\n- [makeotfexe] Clarified path resolution of `include` statements\n ([#164](https://github.com/adobe-type-tools/afdko/issues/164))\n- [makeotfexe] Raised limit of feature file include recursion to 50\n ([#628](https://github.com/adobe-type-tools/afdko/issues/628))\n- [mergefonts] Fixed warning messages\n ([#635](https://github.com/adobe-type-tools/afdko/issues/635))\n- [autohint] Fixed failure when path contained spaces\n ([#654](https://github.com/adobe-type-tools/afdko/pull/654))\n- [proofpdf/waterfallplot] Various PDF-related fixes\n ([#638](https://github.com/adobe-type-tools/afdko/pull/638))\n- [beztools] Fixed hintLimit calculation on py3\n ([#629](https://github.com/adobe-type-tools/afdko/issues/629))\n- [comparefamily] Updated script and language lists to OpenType spec v1.8.3\n ([#592](https://github.com/adobe-type-tools/afdko/issues/592))\n- [comparefamily] Fixed various crashes\n ([#663](https://github.com/adobe-type-tools/afdko/pull/663),\n 746ddeb4dc995e9975f9a8851d23ed226811fdaa)\n- [makeinstancesufo] Improved the tool's options\n ([#662](https://github.com/adobe-type-tools/afdko/pull/662))\n- [ufotools] Changed name of UFO processed layer from\n `AFDKO ProcessedGlyphs` to `com.adobe.type.processedglyphs`\n ([#662](https://github.com/adobe-type-tools/afdko/pull/662))\n\n2.8.2 (released 2018-09-18)\n---------------------------\n\n- Switched to `autohintexe` from `psautohint` (v1.8.1) package\n ([#596](https://github.com/adobe-type-tools/afdko/pull/596),\n [#606](https://github.com/adobe-type-tools/afdko/pull/606))\n- Added 64-bit (`win_amd64`) wheel for Windows\n ([#609](https://github.com/adobe-type-tools/afdko/pull/609))\n- [snftdiff/snftedit] Fixed exit codes\n ([#613](https://github.com/adobe-type-tools/afdko/pull/613))\n- [makeotfexe] Fixed exit codes\n ([#607](https://github.com/adobe-type-tools/afdko/pull/607))\n- [makeotfexe] Fixed bug in setting Unicode values\n ([#609](https://github.com/adobe-type-tools/afdko/pull/609))\n- [makeotf] Fixed calculation of relative paths when the input\n paths are not on the same drive\n ([#605](https://github.com/adobe-type-tools/afdko/pull/605))\n\n2.8.1 (released 2018-09-07)\n---------------------------\n\n- Made the wheels 'universal' py2.py3\n ([#595](https://github.com/adobe-type-tools/afdko/pull/595))\n\n2.8.0 (released 2018-09-07)\n---------------------------\n\n- Added support for Python 3\n ([#593](https://github.com/adobe-type-tools/afdko/pull/593))\n- Added **psautohint** to the list of installed packages\n- [makeotfexe] Fixed contents of `GDEF` table when using\n `LigatureCaretByPos` and `LigatureCaretByIndex` keywords\n ([#556](https://github.com/adobe-type-tools/afdko/pull/556))\n- [stemhist] Fixed exit codes. Removed duplicate results from\n output and fixed its sorting\n ([#552](https://github.com/adobe-type-tools/afdko/pull/552))\n- [tx] Made subroutinization results deterministic\n ([#541](https://github.com/adobe-type-tools/afdko/pull/541))\n- [makeotfexe] Fixed the creation of secondary lookups with\n `useMarkFilteringSet` flag\n ([#538](https://github.com/adobe-type-tools/afdko/pull/538))\n- [type1] Implemented `-h` option. Fixed exit codes\n ([#537](https://github.com/adobe-type-tools/afdko/pull/537))\n- [detype1] Fixed exit codes\n ([#536](https://github.com/adobe-type-tools/afdko/pull/536))\n- [autohint] Fixed file conflicts when running concurrent processes\n ([#534](https://github.com/adobe-type-tools/afdko/pull/534))\n- [makeotf] Fixed `-cn` option\n ([#525](https://github.com/adobe-type-tools/afdko/pull/525))\n- [spot] Fixed crash with `-t GPOS=7` option\n ([#520](https://github.com/adobe-type-tools/afdko/pull/520))\n- [tx] Added support for colon `:` in UFO glyph names\n ([#518](https://github.com/adobe-type-tools/afdko/pull/518))\n- [makeotf] Fixed `-ga` and related options\n ([#514](https://github.com/adobe-type-tools/afdko/pull/514))\n- Changed tools' and scripts' names to all lowercase\n ([#511](https://github.com/adobe-type-tools/afdko/pull/511))\n- Major reorganization of directory structure and package structure\n ([#508](https://github.com/adobe-type-tools/afdko/pull/508))\n- [spot] Fixed crash with `-t GPOS=6` option\n ([#500](https://github.com/adobe-type-tools/afdko/pull/500))\n- [makeotfexe] Allow mark-to-base statements to reference\n different sets of mark classes\n ([#499](https://github.com/adobe-type-tools/afdko/pull/499))\n- [makeotfexe] Allow any languages under `DFLT` script\n ([#498](https://github.com/adobe-type-tools/afdko/pull/498))\n- [tx] Exit gracefully when a fatal error occurs\n ([#495](https://github.com/adobe-type-tools/afdko/pull/495))\n- Removed scripts `BuildMMFont.py`, `checkUFOProcessedLayer.py`\n and tools `copycffcharstrings`, `kerncheck`, `makeinstances`\n ([#490](https://github.com/adobe-type-tools/afdko/pull/490),\n [#558](https://github.com/adobe-type-tools/afdko/pull/558))\n- [checkoutlinesufo] Support processing UFO3 fonts\n ([#482](https://github.com/adobe-type-tools/afdko/pull/482))\n- [autohint/checkoutlinesufo/makeinstancesufo] Harmonized dot-progress\n ([#478](https://github.com/adobe-type-tools/afdko/pull/478))\n- [tx] Fixed incorrect warning when converting to CFF a CFF2\n variable font with non-varying glyphs\n ([#476](https://github.com/adobe-type-tools/afdko/pull/476))\n- [tx] Fixed failure to dump CFF2 variable font containing many\n hints. Fixed bug in writing CFF2 fonts with FDSelect\n ([#467](https://github.com/adobe-type-tools/afdko/pull/467))\n- [makeotfexe] Zero the advance width of source glyphs with\n negative advance width\n ([#460](https://github.com/adobe-type-tools/afdko/pull/460))\n- [makeotf] Support file paths containing non-ASCII characters.\n Fixed warning about feature file not containing a `vert` feature.\n Removed non-essential **Adobe Cmaps** files. Fixed `-shw`/`-nshw`\n options. Fixed documentation of `-cs`/`-cl` options. Changed handling\n of CID fonts: the output OTF is now saved in the same directory\n as the input font (this matches the handling of non-CID formats;\n use option `-o .` to get the old behavior). Support building in\n release mode from Type 1 font without GlyphOrderAndAliasDB file\n ([#458](https://github.com/adobe-type-tools/afdko/pull/458))\n- [tx] Fixed crash processing UFOs containing `<note>` elements\n ([#455](https://github.com/adobe-type-tools/afdko/pull/455))\n- [tx] Fixed calculation of FontBBox values. Fixed crash processing\n UFOs containing `<anchor>` elements. Added support for UFO's empty\n arrays expressed as `<array/>` instead of `<array></array>`\n ([#452](https://github.com/adobe-type-tools/afdko/pull/452))\n- [makeotf] Removed support for UFOs without `postscriptFontName`.\n Enabled output option to be a folder only\n ([#451](https://github.com/adobe-type-tools/afdko/pull/451))\n- [buildmasterotfs] Added support for designspace files without\n `<instances>` element\n ([#449](https://github.com/adobe-type-tools/afdko/pull/449))\n- [tx] Emit warning instead of error for charstrings longer\n than 65535 bytes\n ([#446](https://github.com/adobe-type-tools/afdko/pull/446),\n [#597](https://github.com/adobe-type-tools/afdko/pull/597))\n\n2.7.2 (released 2018-06-27)\n---------------------------\n\n- Implemented an integration testing framework\n ([#346](https://github.com/adobe-type-tools/afdko/pull/346))\n- [ttxn] Fixed ClassRecord AttributeError\n ([#350](https://github.com/adobe-type-tools/afdko/issues/350))\n- [ttxn] Trailing spaces are now stripped from script and language tags\n- [tx] Get blended glyph stems when the output is not CFF2\n ([#378](https://github.com/adobe-type-tools/afdko/pull/378))\n- [spot] Fixed crash due to buffer overrun errors from long glyph names\n ([#373](https://github.com/adobe-type-tools/afdko/issues/373))\n- [ProofPDF] Added 'pageIncludeTitle' option\n ([#379](https://github.com/adobe-type-tools/afdko/pull/379))\n- [ProofPDF] Removed search for 'CID charsets' folder\n ([#368](https://github.com/adobe-type-tools/afdko/pull/368))\n- Removed **CID charsets** folder and its contents\n ([#264](https://github.com/adobe-type-tools/afdko/issues/264),\n [#368](https://github.com/adobe-type-tools/afdko/pull/368))\n- [ProofPDF] Fixed broken 'lf' option (CID layout)\n ([#382](https://github.com/adobe-type-tools/afdko/issues/382))\n- [ProofPDF] Fixed crash when font has no BlueValues\n ([#394](https://github.com/adobe-type-tools/afdko/issues/394))\n- [makeinstancesufo] Disabled ufonormalizer's writeModTimes option.\n Fixed Windows command\n ([#413](https://github.com/adobe-type-tools/afdko/pull/413))\n- [ufoTools] Fixed line breaks when writting UFOs files on Windows\n ([#413](https://github.com/adobe-type-tools/afdko/pull/413))\n- [makeotf] Implemented correct exit codes\n ([#417](https://github.com/adobe-type-tools/afdko/issues/417))\n- [tx] Fixed Windows crash\n ([#195](https://github.com/adobe-type-tools/afdko/issues/195))\n- [tx] Fixed crash handling copyright symbol in UFO trademark string\n ([#425](https://github.com/adobe-type-tools/afdko/pull/425))\n- [makeotf] Ignore trailing slashes in input font path\n ([#280](https://github.com/adobe-type-tools/afdko/issues/280))\n\n2.7.0 (released 2018-05-09)\n---------------------------\n\n- New `ttfcomponentizer` tool that componentizes TrueType fonts using\n the component data of a related UFO font.\n ([#293](https://github.com/adobe-type-tools/afdko/pull/293))\n- [CheckOutlinesUFO] Replaced Robofab's pens with FontPens'\n ([#230](https://github.com/adobe-type-tools/afdko/issues/230))\n- Removed `extractSVGTableSVGDocs.py` and\n `importSVGDocsToSVGTable.py`. These are superseded by the scripts at\n <https://github.com/adobe-type-tools/opentype-svg/>\n- Removed `cmap-tool.pl`, `fdarray-check.pl`, `fix-fontbbox.pl`,\n `glyph-list.pl`, `hintcidfont.pl`, `setsnap.pl` and `subr-check.pl`.\n These Perl scripts are available from\n <https://github.com/adobe-type-tools/perl-scripts>\n- Removed **CID\\_font\\_support** folder and its contents.\n- [tx] Fixed assert \"out of range region index found in item\n variation store subtable\"\n ([#266](https://github.com/adobe-type-tools/afdko/pull/266))\n- [makeotfexe] Fixed unnecessary truncation of the Format 4 'cmap'\n subtable\n ([#242](https://github.com/adobe-type-tools/afdko/issues/242))\n- [buildCFF2VF] Fix support for CFF2 fonts with multiple FontDicts\n ([#279](https://github.com/adobe-type-tools/afdko/pull/279))\n- [ttxn] Update for latest FontTools version\n ([#288](https://github.com/adobe-type-tools/afdko/pull/288))\n- Added 64-bit support for Mac OSX and Linux\n ([#271](https://github.com/adobe-type-tools/afdko/pull/271),\n [#312](https://github.com/adobe-type-tools/afdko/pull/312),\n [#344](https://github.com/adobe-type-tools/afdko/pull/344))\n- [tx] Fixed `-dcf` mode failing to dump hinted CFF2 variable font\n ([#322](https://github.com/adobe-type-tools/afdko/issues/322))\n- [tx] Fixed conversion of multi-FD CFF2 font to CID-flavored CFF\n font ([#329](https://github.com/adobe-type-tools/afdko/issues/329))\n- [tx] Fixed `-cff2` failing to convert CID/CFF1 to CFF2\n ([#351](https://github.com/adobe-type-tools/afdko/pull/351))\n- Wheels for all three environments (macOS, Windows, Linux) are now\n available on [PyPI](https://pypi.org/project/afdko) and\n [GitHub](https://github.com/adobe-type-tools/afdko/releases)\n\n2.6.25 (released 2018-01-26)\n----------------------------\n\nThis release fixes the following issues:\n\n- [CheckOutlinesUFO] Skip glyphs whose names are referenced in the\n UFO's lib but do not exist\n ([#228](https://github.com/adobe-type-tools/afdko/issues/228))\n- Partial Python 3 support in `BezTools.py`, `ConvertFontToCID.py`,\n `FDKUtils.py`, `MakeOTF.py`, `StemHist.py`, `autohint.py`,\n `buildMasterOTFs.py` and `ufoTools.py`\n ([#231](https://github.com/adobe-type-tools/afdko/issues/231),\n #232, #233)\n- [makeotfexe] Fixed parsing of Character Variant (cvXX) feature\n number\n ([#237](https://github.com/adobe-type-tools/afdko/issues/237))\n- [pip] Fixed `pip uninstall afdko`\n ([#241](https://github.com/adobe-type-tools/afdko/issues/241))\n\n2.6.22 (released 2018-01-03)\n----------------------------\n\nThe **afdko** has been restructured so that it can be installed as a\nPython package. It now depends on the user's Python interpreter, and no\nlonger contains its own Python interpreter.\n\nIn order to do this, the two Adobe-owned, non-opensource programs were\ndropped: `IS` and `checkOutlines`. If these turn out to be sorely\nmissed, an installer for them will be added to the old Adobe afdko\nwebsite. The current intent is to migrate the many tests in\ncheckOutlines to the newer `checkOutlinesUFO` (which does work with\nOpenType and Type 1 fonts, but currently does only overlap detection and\nremoval, and a few basic path checks).\n\nOlder releases can be downloaded from the [repository's Releases\npage](https://github.com/adobe-type-tools/afdko/releases?after=2.6.22).\n\n2.5.66097 (released 2017-12-01)\n-------------------------------\n\nThis only lists the major bug fixes since the last release. For a\ncomplete list see:\n<https://github.com/adobe-type-tools/afdko/commits/master>\n\n- [buildCFF2VF] Add version check for fontTools module: only\n starting with version 3.19.0 does fontTools.cffLib build correct\n PrivateDict BlueValues when there are master source fonts not at the\n ends of the axes.\n- [makeotfexe] Support mapping a glyph to several Unicode values.\n This can now be done by providing the the UV values as a\n comma-separated list in the third field of the GlyphOrderAndAliasDB\n file, in the 'uniXXXXX' format.\n- [makeotfexe] Fixed a crashing bug that can happen when the\n features file contains duplicate class kern pairs. Reported by\n Andreas Seidel in email.\n- [makeotfexe] Add fatal messages if a feature file 'cvParameters'\n block is used in anything other than a Character Variant (cvXX)\n feature, or if a 'featureNames' block is used in anything other\n than a Stylistic Set (ssXX) feature.\n- [makeotfexe] Relaxed restrictions on name table name IDs. Only 2\n and 6 are now reserved for the implementation.\n- [makeotfexe] Fixed bug where use of the 'size' feature in\n conjunction with named stylistic alternates would cause the last\n stylistic alternate name to be replaced by the size feature menu\n name. Incidentally removed old patent notices.\n- [makeotfexe] Restored old check for the fatal error of two\n different glyphs being mapped to the same character encoding.\n- [makeotfexe] If the last line of a GOADB file did not end in a\n new-line, makeotf quit, saying the line was too long.\n- [otf2otc] Can now take a single font as input, and can take an OTC\n font as input.\n- [sfntdiff] Fixed old bug: it used to crash if no file path or only\n one file path was provided.\n- [sfntdiff] Changed behavior: it now returns non-zero only if a\n real error occurs; it used to return non-zero when there was a\n difference between the fonts.\n- [spot] Fixed old bug: a PrivateDict must exist, but it is legal\n for it to have a length of 0.\n- [tx *et al.*] Add support for reading and writing blended hints\n from/to CFF2.\n\n2.5.65811 (released 2017-04-27)\n-------------------------------\n\n- [makeInstancesUFO] Preserve public.postscriptNames lib key.\n- [makeInstancesUFO] Do not use postscriptFontName attribute.\n- [makeotf] New option -V to print MakeOTF.py script version.\n- [tx] Added new option '-maxs', to set the maximum number of\n subroutines allowed. The default is now 32K, as some legacy systems\n cannot support more than this.\n- [tx] Add improved CFF2 support: tx can now use the option -cff2 to\n write from a CFF2 font (in a complete OpenType font) to a file\n containing the output CFF2 table, with full charstring optimization\n and subroutinization. This last option is still work in progress: it\n has not been extensively tested, and does yet support blended hints.\n- [tx] Several bug fixes for overlap removal.\n- [tx] Fixed bug in subroutinization that could leave a small number\n of unused subroutines in the font. This cleanup is optional, as it\n requires 3x the processing speed with the option than without, and\n typically reduces the font size by less than 0.5 percent.\n- [ttxn] Option '-nv' will now print name IDs 3 and 5, but with\n the actual version number replaced by the string \"VERSION\n SUPPRESSED\".\n- [ufoTools] FIx autohint bug with UFO fonts: if edit a glyph and\n re-hint, autohint uses old processed layer glyph.\n\n2.5.65781 (released 2017-04-03)\n-------------------------------\n\n- [variable fonts] **buildMasterOTFs** new script to build OTF font\n files from UFO sources, when building variable fonts.\n- [variable fonts] **buildCFF2VF** new command to build a CFF2\n variable font from the master OTF fonts.\n- [autohint] Fixed bug introduced by typo on Dec 1 2015. Caused\n BlueFuzz to always be set to 1. Rarely causes problems, but found it\n with font that sets BlueFuzz to zero; with BlueFuzz set to 1, some\n of the alignment zones were filtered out as being closer than\n BlueFuzz\\*3.\n- [autohint] Fixed long-standing bug with UFO fonts where if a glyph\n was edited after being hinted, running autohint would process and\n output only the old version of the glyph from the processed layer.\n- [CheckOutlinesUFO] Added \"quiet mode\" option.\n- [CheckOutlinesUFO] Fixed a bug where logic could try and set an\n off-curve point as a start point.\n- [CheckOutlinesUFO] Changed the logic for assigning contour order\n and start point. The overlap removal changes both, and\n checkOutlinesUFO makes some attempt to restore the original state\n when possible. These changes will result in different contour order\n and start points than before the change, but fixes a bug, and will\n usually produce the same contour order and start point in fonts that\n are generated as instances from a set of master designs. There will\n always be cases where there will be some differences.\n- [MakeOTF] Replace old logic for deriving relative paths with\n python function for the same.\n- [MakeOTF] When converting Type 1 to CID in makeotf, the logic in\n mergeFonts and ConvertFontToCID.py was requiring the FDArray\n FontDicts to have keys, like FullName, that are not in fact\n required, and are often not present in the source fonts. Fixed both\n mergeFonts and ConvertFontToCID.py.\n- [MakeOTF] By default, makeotf will add a minimal stub DSIG table\n in release mode. The new options '-addDSIG' and '-omitDSIG' will\n force makeotf to either add or omit the stub DSIG table. This\n function was added because the Adobe Type group is discontinuing\n signing font files.\n- [makeotfexe] Fixed bug in processing UVS input file for makeotf\n for non-CID fonts.\n- [makeotfexe] Fixed bug where makeotf would reject a nameID 25\n record when specified in a feature file. This nameID value used to\n be reserved, but is now used for overriding the postscript family\n named used with arbitrary instances in variable fonts.\n- [mergeFonts] Removed requirement for mergeFonts that each FontDict\n have a FullName, Weight, and Family Name. This fixes a bug in using\n mergeFonts with UFO sources and converting to CID-keyed output font.\n Developers should not have to put these fields in the source fonts,\n since they are not required.\n- [spot] Fixed bug in name table dump: Microsoft platform language\n tags for Big5 and PRC were swapped.\n- [stemHist] Removed debug print line, that caused a lot of annoying\n output, and was left in the last update by accident.\n- [tx] When getting Unicode values for output, the presence of UVS\n cmap meant that no UV values were read from any other cmap subtable.\n I fixed this bug, but 'tx' still does not support reading and\n showing UVS values. Doing so will be a significant amount of work,\n so I am deferring that to my next round of FDK work.\n- [tx] Added support for CFF2 variable fonts as source fonts: when\n using -t1 or -cff, these will be snapshotted to an instance. If no\n user design vector (UDV) argument is supplied, then the output will\n be the default data. If a UDV argument is supplied with the option\n -U, then the instance is built at the specified point in the design\n space.\n- [tx] Added new option +V/-V to remove overlaps in output Type 1\n fonts (mode -t1) and CFF fonts (mode -cff). This is still\n experimental.\n- [tx] Made the subroutinizer a lot faster; the speed bump is quite\n noticeable with CJK fonts. (by Ariza Michiharu)\n- [tx] Added new option (+V/-V) to remove overlaps. (by Ariza\n Michiharu)\n- [ttx] Updated to version 3.9.1 of the fontTools module from master\n branch on GitHub.\n\n2.5.65322 (released 2016-05-27)\n-------------------------------\n\n- [CMAP files] Updated UniCNS-UTF32-H to v1.14\n- [build] Made changes to allow compiling under Xcode 7.x and OSX\n 10.11\n- [documentation] Fixed a bunch of errors in the Feature File spec.\n My thanks to Sascha Brawer, who has been reviewing it carefully. See\n the issues at\n <https://github.com/adobe-type-tools/afdko/issues/created_by/brawer>.\n- [autohint] Fixed support for history file, which can be used with\n non-UFO fonts only. This has been broken since UFO support was\n added.\n- [autohintexe] Fixed really old bug: ascenders and descenders get\n dropped from the alignment zone report if they are a) not in an\n alignment zone and b) there is an overlapping smaller stem hint.\n This happened with a lot of descenders.\n- [checkOutlines] Fixed bug in ufoTools.py that kept checkOutlines\n (NOT checkOutlinesUFO) from working with a UFO font.\n- [checkOutlines] Fixed bug which misidentified orientation of path\n which is very thin and in part convex. I am a bit concerned about\n the solution, as what I did was to delete some logic that was used\n to double-check the default rules for determining orientation.\n However, the default logic is the standard way to determine\n orientation and should always be correct. The backup logic was\n definitely not always correct as it was applied only to a single\n point, and was correct only if the curve associated with the point\n is concave. It is in fact applied at several different points on a\n path, with the majority vote winning. Since the backup logic is used\n only when a path is very thin, I suspect that it was a sloppy\n solution to fix a specific case. The change was tested with several\n large fonts, and found no false positives.\n- [makeInstances] Fixed bug which produced distorted shapes for\n those glyphs which were written with the Type 1 'seac' operator,\n a.k.a. Type 1 composite glyphs.\n- [makeotfexe] Fixed bug where using both kern format A and B in a\n single lookup caused random values to be assigned.\n- [makeotfexe] Fixed bug where a format A kern value (a single\n value) would be applied to X positioning rather than Y positioning\n for the features 'vkrn'. Applied same logic to vpal, valt, and\n vhal.\n- [makeotfexe] Finally integrated Georg Seifert's code for\n supporting hyphen in development glyph names. This version differs\n from Georg's branch in that it does not allow any of the special\n characters in final names (i.e. the left side names in the\n GlyphAliasAndOrderDB). However, allowing this is a smaller tweak\n than it used to be: just use the same arguments in\n `cb.c:gnameFinalScan()` as in `gnameDevScan()`. This update also\n includes Georg's changes for allow source fonts to have CID names\n in the form 'cidNNNN'.\n- [ConvertToCID] Fixed bug that the script expected in several\n places that the fontinfo file would contain at least one user\n defined FontDict.\n- [ConvertToCID] Fixed bug that the script expected that the source\n font would have Weight and Adobe Copyright fields in the font dict.\n- [makeotf] Fixed a bug that kept the '-nS' option for having any\n effect when the '-cn' option is used.\n- [makeotfexe] Remove use of 'strsep()'; function is not defined\n in the Windows C library.\n- [makeotf] Fixed bug in removing duplicate and conflicting entries.\n Changed logic to leave the first pair defined out of a set of\n duplicate or conflicting entries.\n- [makeotfexe] Fixed bug in processing GDEF glyph class statements:\n if multiple GlyphClass statements were used; the additional glyphs\n were added to a new set of 4 glyph classes, rather than merged with\n the allowed 4 glyph classes.\n- [makeotfexe] Fixed issue in GDEF definition processing. Made it an\n error to specify both LigCaretByPosition and LigCaretByIndex for a\n glyph.\n- [makeotfexe] Corrected error message: language and system\n statements are allowed in named lookups within a feature definition,\n but are not allowed in stand-alone lookups.\n- [makeotf] Corrected typo in MakeOTF.py help text about what the\n default source font path.\n- [makeotfexe] Fixed an old bug in makeotf. If a mark-to-base or\n mark-to-mark lookup has statements that do not all reference the\n same mark classes, makeotfexe used to write a 'default' anchor\n attachment point of (0.0) for any mark class that was not referenced\n by a given statement. Fixed this bug by reporting a fatal error: the\n feature file must be re-written so that all the statements in a\n lookup must all reference the same set of mark classes.\n- [makeotf] Suppressed warning about not using GOADB file when\n building a CID font. Some of the changes I made a few weeks ago to\n allow building fonts with CIDs specified as glyphs names with the\n form 'cidNNNNN' allowed this warning to be be shown, but it is not\n appropriate for CID-keyed fonts.\n- [makeotf] Fixed old bug where using option -'cn' to convert a\n non-CID source font to CID would cause a mismatch between the maxp\n table number of glyphs and the number of glyph actually in the output\n font, because the conversion used the source font data rather than\n the first pass name-keyed OTF which had been subject to glyph\n subsetting with the GOADB file.\n- [makeotf] Fixed bug in reading UVS files for non\\_CID fonts.\n- Fixed copyright statements that are incompatible with the open\n source license. Thanks to Dmitry Smirnov for pointing these out.\n These were in some make files, an example Adobe CMAP file, and some\n of the technical documentation.\n- Fixed typos in help text in ProofPDF.py. Thank you Arno Enslin.\n- [ttxn] Fixed bug in ttxn.py that broke it when dumping some\n tables, when used with latest fontTools library.\n- [tx] Fixed bug in rounding fractional values when flattening\n library elements, used in design of CJK fonts.\n- [tx] Fixed bug in handling FontDict FontMatrix array values: not\n enough precision was used, so that 1/2048 was written as 1/2049 in\n some cases.\n- [tx] Fixed bug in reading UFO fonts, so that glyphs with no\n `<outline>` element and with a `<lib>` element would be skipped.\n- [tx] Minor code changes to allow 'tx' to compile as a 64 bit\n program.\n- [tx] Fixed bug in dumping AFM format data, introduced when tx was\n updated to be 64 bit.\n- [tx] Fixed bug in processing seac, introduced in work on rounding\n fractional values.\n- [tx] Fixed bug in writing AFM files: -1 value would be written as\n 4294967295 instead of -1.\n- [tx] Added option -noOpt, renamed blend operator from 'reserved'\n to 'blend'. This was done in order to support experiments with\n multiple master fonts.\n- [tx] When reading a UFO font: if it has no Postscript version\n entry, set the version to 1.0.\n- [tx] When writing a UFO font: if StemSnap[H,V] are missing, but\n Std[H,V]W are present, use the Std[H,V]W values to supply the\n UFO's postscript StemSnap[H,V] values.\n- [tx] Fixed old bug with rounding decimal values for BlueScale is\n one of the few Postscript values with several places of decimal\n precision. It is stored as an ASCII text decimal point number in T1,\n T2, and UFO files, but is stored internally as a C 'float' value\n in some programs. Real values in C cannot exactly represent all\n decimal values. For example, the closest that a C 'float' value\n can come to \"0.375\" is \"0.03750000149\".When writing output\n fonts, tx was writing out the latter value in ASCII text, rather\n than rounding back to 0.0375. Fixed by rounding to 8 decimal places\n on writing the value out. This bug had no practical consequences, as\n 0.0375 and 0.03750000149 both convert to exactly the same float\n value, but was annoying, and could cause rounding differences in any\n programs that use higher precision fields to hold the BlueScale\n value.\n\n2.5.65012 (released 2015-12-01)\n-------------------------------\n\n- [makeotf] Fixed bug that kept makeotfexe from building fonts with\n spaces in the path.\n- [ConvertFontToCID] Fixed bug that kept makeotf from converting UFO\n fonts to CID.\n- [makeotf] Changed support for Unicode Variation Sequence file\n (option '-ci') so that when used with name-keyed fonts, the\n Region-Order field is omitted, and the glyph name may be either a\n final name or developer glyph name. Added warning when glyph in the\n UVS entry is not found in font. See MakeOTF User's Guide.\n- [makeotfexe] now always makes a cmap table subtable MS platform,\n Unicode, format 4 for CID fonts. This is required by Windows. If\n there are no BMP Unicode values, then it makes a stub subtable,\n mapping GID 0 to UVS 0.\n- [tx *et al.*] When reading a UFO source font, do not complain if\n the fontinfo.plist entry `styleName` is present but has an empty\n string. This is valid, and is common when the style is **Regular**.\n\n2.5.64958 (released 2015-11-22)\n-------------------------------\n\n- [autohint/tx] Switched to using new text format that is\n plist-compatible for T1 hint data in UFO fonts. See header of\n ufoTools.py for format.\n- [autohint] Finally fixed excessive generation of flex hints. This\n has been an issue for decades, but never got fixed because it did\n not show up anywhere as a problem. The last version of makeotf\n turned on parsing warnings, and so now we notice.\n- [checkOutlinesUFO] Fixed bug where abutting paths did not get\n merged if there were no changes in the set of points.\n- [checkOutlinesUFO] Fixed bug where a `.glif` file without an\n `<outline>` element was treated as fatal error. It is valid for the\n `<outline>` element to be missing.\n- [checkOutlines] Changed -I option so that it also turns off\n checking for tiny paths. Added new option -5 to turn this check back\n on again.\n- [checkOutlinesUFO] Increased max number of paths in a glyph from\n 64 to 128, per request from a developer.\n- [CompareFamily] Fixed old bug in applying ligature width tests for\n CID fonts, and fixed issue with fonts that do not have Mac name\n table names. The logic now reports missing Mac name table names only\n if there actually are some: if there are none, these messages are\n suppressed.\n- [fontplot/waterfallplot/hintplot/fontsetplot] Fixed bugs that\n prevented these from being used with CID-keyed fonts and UFO fonts.\n Since the third party library that generates the PDF files is very\n limited, I did this by simply converting the source files to a\n name-keyed Type 1 temporary font file, and then applying the tools\n the temporary file.\n- [makeInstancesUFO] Added a call to the ufonormalizer tool for each\n instance. Also added a call to the defcon library to remove all\n private lib keys from lib.py and each glyph in the default layer,\n excepting only \"public.glyphOrder\".\n- Fixed typos in MakeOTF User Guide reported by Gustavo Ferreira\n- [MakeOTF] Increased max number of directories to look upwards when\n searching for GOADB and FontMenuNameDB files from 2 to 3.\n- [MakeOTF/makeotfexe] Added three new options:\n\n - `omitMacNames` and `useMacNames` write only Windows platform\n menu names in name table, apart from the names specified in\n the feature file. `useMacNames` writes Mac as well as\n Windows names.\n - `overrideMenuNames` allows feature file name table entries\n to override default values and the values from the\n FontMenuNameDB for name IDs. NameIDs 2 and 6 cannot be\n overridden. Use this with caution, and make sure you have\n provided feature file name table entries for all platforms.\n - `skco`/`nskco` do/do not suppress kern class optimization by\n using left side class 0 for non-zero kern values. Optimizing\n saves a few hundred to thousand bytes, but confuses some\n programs. Optimizing is the default behavior, and previously\n was the only option.\n\n- [MakeOTF] Allow building an OTF from a UFO font only. The internal\n `features.fea` file will be used if there is no `features` file in\n the font's parent directory. If the GlyphAliasAndOrderDB file is\n missing, only a warning will be issued. If the FontMenuNameDB is\n missing, makeotf will attempt to build the font menu names from the\n UFO fontinfo file, using the first of the following keys found:\n `openTypeNamePreferredFamilyName`, `familyName`, the family name\n part of the `postScriptName`, and finally the value\n **NoFamilyName**. For style, the keys are:\n `openTypeNamePreferredSubfamilyName`, `styleName`, the style name\n part of the `postScriptName`, and finally the value **Regular**.\n- [MakeOTF] Fixed bug where it allowed the input and output file\n paths to be the same.\n- [makeotfexe] Extended the set of characters allowed in glyph names\n to include `+ * : ~ ^ !`.\n- [makeotfexe] Allow developer glyph names to start with numbers;\n final names must still follow the PS spec.\n- [makeotfexe] Fixed crashing bug with more than 32K glyphs in a\n name-keyed font, reported by Gustavo Ferreira.\n- [makeotfexe] Merged changes from Khaled Hosny, to remove\n requirement that 'size' feature menu names have Mac platform\n names.\n- [makeotfexe] Code maintenance in generation of the feature file\n parser. Rebuilt the 'antler' parser generator to get rid of a\n compile-time warning for zzerraction, and changed featgram.g so that\n it would generate the current featgram.c, rather than having to edit\n the latter directly. Deleted the object files for the 'antler'\n parser generator, and updated the read-me for the parser generator.\n- [makeotfexe] Fixed really old bug: relative include file\n references in feature files have not worked right since the FDK\n moved from Mac OS 9 to OSX. They are now relative to the parent\n directory of the including feature file. If that is not found, then\n makeotf tries to apply the reference as relative to the main feature\n file.\n- [spot] Fixed bug in dumping stylistic feature names.\n- [spot] Fixed bug proofing vertical features: needed to use vkern\n values. Fix contributed by Hiroki Kanou.\n- [tx *et all.*] Fix crash when using '-gx' option with source UFO\n fonts.\n- [tx *et all.*] Fix crash when a UFO glyph point has a name\n attribute with an empty string.\n- [tx *et all.*] Fix crash when a UFO font has no public.glyphOrder\n dict in the lib.plist file.\n- [tx *et all.*] Fix really old bug in reading TTF fonts, reported\n by Belleve Invis. TrueType glyphs with nested component references\n and x/y offsets or translation get shifted.\n- [tx *et all.*] Added new option '-fdx' to select glyphs by\n excluding all glyphs with the specified FDArray indices. This and\n the '-fd' option now take lists and ranges of indices, as well as\n a single index value.\n- Added a command to call the ufonormalizer tool.\n- Updated to latest version of booleanOperatons, defcon (ufo3 branch),\n fontMath (ufo3 branch), fontTools, mutatorMath, and robofab (ufo3\n branch). The AFDKO no longer contains any private branches of third\n party modules.\n- Rebuilt the Mac OSX, Linux and Windows Python interpreters in the\n AFDKO, bringing the Python version up to 2.7.10. The Python\n interpreters are now built for 64-bit systems, and will not run on\n 32-bit systems.\n\n2.5.64700 (released 2015-08-04)\n-------------------------------\n\n- [ufoTools] Fixed bug that was harmless but annoying. Every time\n that `autohint -all` was run, it added a new program name entry to\n the history list in the hashmap for each processed glyph. You saw\n this only if you opened the hashmap file with a text editor, and\n perhaps eventually in slightly slower performance.\n- [checkOutlinesUFO] Fixed bug where presence of outlines with only\n one or two points caused a stack dump.\n- [makeotf] Fixed bug reported by Paul van der Laan: failed to build\n TTF file when the output file name contains spaces.\n- [spot] Fixed new bug that caused spot to crash when dumping GPOS\n 'size' feature in feature file format.\n\n2.5.64655 (released 2015-07-17)\n-------------------------------\n\n- [ufoTools] Fixed bug which placed a new hint block after a flex\n operator, when it should be before.\n- [autohint] Fixed new bug in hinting non-UFO fonts, introduced by\n the switch to absolute coordinates in the bez file interchange\n format.\n- [ufoTools] Fixed bugs in using hashmap to detect previously hinted\n glyphs.\n- [ufoTools] Fixed bugs in handling the issue that\n checkOutlinesUFO.py (which uses the defcon library to write UFO glif\n files) will in some cases write glif files with different file names\n than they had in the default glyph layer.\n- [makeotf] Fixed bug with Unicode values in the absolute path to to\n the font home directory.\n- [makeotf] Add support for Character Variant (cvXX) feature params.\n- [makeotf] Fixed bug where setting Italic style forced OS/2 version\n to be 4.\n- [spot] Added support for cvXX feature params.\n- [spot] Fixed in crash in dumping long contextual substitution\n strings, such as in 'GentiumPlus-R.TTF'.\n- [tx] Fixed bug in handling CID glyph ID greater than 32K.\n- [tx] Changed to write widths and FontBBox as integer values.\n- [tx] Changed to write SVG, UFO, and dump coordinates with 2 places\n of precision when there is a fractional part.\n- [tx] Fixed bugs in handling the '-gx' option to exclude glyphs.\n Fixed problem with CID \\> 32K. Fixed problem when font has 65536\n glyphs: all glyphs after first last would be excluded.\n- [tx] Fixed rounding errors in writing out decimal values to cff\n and t1 fonts.\n- [tx] Increased interpreter stack depth to allow for CUBE operators\n (Library elements) with up to 9 blend axes.\n- Fixed Windows builds: had to provide a roundf() function, and more\n includes for the \\_tmpFile function. Fixed a few compile errors.\n- Fixed bug in documentation for makeInstancesUFO.\n- Fixed bug in BezTools.py on Windows, when having to use a temp file.\n\n2.5.64261 (released 2015-05-26)\n-------------------------------\n\n- [autohintexe] Worked through a lot of problems with fractional\n coordinates. In the previous release, autohintexe was changed to\n read and write fractional values. However, internal value storage\n used a Fixed format with only 7 bits of precision for the value.\n This meant that underflow errors occurred with 2 decimal places,\n leading to incorrect coordinates. I was able to fix this by changing\n the code to use 8 bits of precision, which supports 2 decimal places\n (but not more!) without rounding errors, but this required many\n changes. The current autohint output will match the output of the\n previous version for integer input values, with two exceptions.\n Fractional stem values will (rarely) differ in the second decimal\n place. The new version will also choose different hints in glyphs\n which have coordinate values outside of the range -16256 to +16256;\n the previous version had a bug in calculating weights for stems.\n- [autohint] Changed logic for writing bez files to write absolute\n coordinate values instead of relative coordinate values. Fixed bug\n where truncation of decimal values lead to cumulative errors in\n positions adding up to more than 1 design unit over the length of a\n path.\n- [tx] Fixed bugs in handling fractional values: `tx` had a bug with\n writing fractional values that are very near an integer value for\n the modes -dump, -svg, and -ufo. `tx` also always applied the logic\n for applying a user transform matrix, even though the default\n transform is the identity transform. This has the side-effect of\n rounding to integer values.\n\n2.5.64043 (released 2015-04-08)\n-------------------------------\n\n- [checkOutlinesUFO] Added new logic to delete any glyphs from the\n processed layer which are not in the 'glyphs' layer.\n- [makeotf] When building CID font, some error messages were printed\n twice.\n- [makeotf] Added new option `stubCmap4`. This causes makeotf to\n build only a stub cmap 4 subtable, with just two segments. Needed\n only for special cases like AdobeBlank, where every byte is an\n issue. Windows requires a cmap format 4 subtable, but not that it be\n useful.\n- [makeCIDFont] Output FontDict was sized incorrectly. A function at\n the end adds some FontInfo keys, but did not increment the size of\n the dict. Legacy logic is to make the FontInfo dict be 3 larger than\n the current number of keys.\n- [makeInstanceUFO] Changed AFDKO's branch of mutatorMath so that\n kern values, glyph widths, and the BlueValues family of global hint\n values are all rounded to integer even when the `decimal` option is\n used.\n- [makeInstanceUFO] Now deletes the default 'glyphs' layer of the\n target instance font before generating the instance. This solves the\n problem that when glyphs are removed from the master instances, the\n instance font still has them.\n- [makeInstanceUFO] Added a new logic to delete any glyphs from the\n processed layer which are not in the 'glyphs' layer.\n- [makeInstanceUFO] Removed the `all` option: even though\n mutatorMath rewrites all the glyphs, the hash values are still valid\n for glyphs which have not been edited. This means that if the\n developer edits only a few glyphs in the master designs, only those\n glyphs in the instances will get processed by checkOutlinesUFO and\n autohint.\n- Support fractional coordinate values in UFO workflow:\n\n - checkOutlinesUFO (but not checkOutlines), autohint, and\n makeInstancesUFO will now all pass through decimal\n coordinates without rounding, if you use the new option\n \"decimal\". tx will dump decimal values with 3 decimal\n places.\n - tx already reported fractional values, but needed to be\n modified to report only 3 decimal places when writing UFO\n glif files, and in PDF output mode: Acrobat will not read\n PDF files with 9 decimal places in position values.\n - This allows a developer to use a much higher precision of\n point positioning without using a larger em-square. The\n Adobe Type group found that using an em-square of other than\n 1000 design units still causes problems in layout and text\n selection line height in many apps, despite it being legal\n by the Type 1 and CFF specifications.\n - Note that code design issues in autohint currently limit the\n decimal precision and accuracy to 2 decimal places: 1.01\n works but 1.001 will be rounded to 0.\n\n2.5.63782 (released 2015-03-03)\n-------------------------------\n\n- [tx] Fix bug in reading TTFs. Font version was taken from the name\n table, which can include a good deal more than just the font\n version. Changed to read fontRevision from the head table.\n- [detype1] Changed to wrap line only after an operator name, so\n that the coordinates for a command and the command name would stay\n on one line.\n- [otf2otc] Pad table data with zeros so as to align tables on a 4\n boundary. Submitted by Cosimo Lupo.\n\n2.5.63718 (released 2015-02-21)\n-------------------------------\n\n- [ufoTools] Fixed a bug with processing flex hints that caused\n outline distortion.\n- [compareFamily] Fixed bug in processing hints: it would miss\n fractional hints, and so falsely report a glyph as having no hints.\n- [compareFamily] Support processing CFF font without a FullName\n key.\n- [checkOutlinesUFO] Coordinates are written as integers, as well as\n being rounded.\n- [checkOutlinesUFO] Changed save function so that only the\n processed glyph layer is saved, and the default layer is not\n touched.\n- [checkOutlinesUFO] Changed so that XML type is written as\n 'UTF-8' rather than 'utf-8'. This was actually a change in the\n FontTools xmlWriter.py module.\n- [checkOutlinesUFO] Fixed typos in usage and help text.\n- [checkOutlinesUFO] Fixed hash dictionary handling so that it will\n work with autohint, when skipping already processed glyphs.\n- [checkOutlinesUFO] Fixed false report of overlap removal when only\n change was removing flat curve\n- [checkOutlinesUFO] Fixed stack dump when new glyph is seen which\n is not in hash map of previously processed glyphs.\n- [checkOutlinesUFO] Added logic to make a reasonable effort to sort\n the new glyph contours in the same order as the source glyph\n contours, so the final contour order will not depend on (x,y)\n position. This was needed because the pyClipper library (which is\n used to remove overlaps) otherwise sorts the contours in (x,y)\n position order, which can result in different contour order in\n different instance fonts from the same set of master fonts.\n- [makeInstancesUFO] Changed so that the option -i (selection of\n which instances to build) actually works.\n- [makeInstancesUFO] Removed dependency on the presence of\n instance.txt file.\n- [makeInstancesUFO] Changed to call checkOutlinesUFO rather than\n checkOutlines\n- [makeInstancesUFO] Removed hack of converting all file paths to\n absolute file paths: this was a work-around for a bug in\n robofab-ufo3k that is now fixed.\n- [makeInstancesUFO] Removed all references to old instances.txt\n meta data file.\n- [makeInstancesUFO] Fixed so that current dir does not have to be\n the parent dir of the design space file.\n- Merged fixes from the GitHub AFDKO open source repo.\n- Updated to latest version defcon, fontMath, robofab, and\n mutatorMath.\n- Fix for Yosemite (Mac OSX 10.10) in FDK/Tools/setFDKPaths. When an\n AFDKO script is ran from another Python interpreter, such as the one\n in RoboFont, the parent Python interpreter may set the Unix\n environment variables PYTHONHOME and PYTHONPATH. This can cause the\n AFDKO Python interpreter to load some modules from its own library,\n and others from the parent interpreters library. If these are\n incompatible, a crash ensues. The fix is to unset the variables\n PYTHONHOME and PYTHONPATH before the AFDKO interpreter is called.\n Note: As a separate issue, under Mac OSX 10.10, Python calls to FDK\n commands will only work if the calling app is run from the\n command-line (e.g: `open /Applications/RoboFont.app`), and the\n argument `shell=\"True\"` is added to the subprocess module call to\n open a system command. I favor also adding the argument\n `stderr=subprocess.STDOUT`, else you will not see error messages\n from the Unix shell. Example:\n `log = subprocess.check_output( \"makeotf -u\", stderr=subprocess.STDOUT, shell=True)`.\n\n2.5.63408 (released 2014-12-02)\n-------------------------------\n\n- [spot] Fixed error message in GSUB chain contextual 3 proof file\n output; was adding it as a shell comment to the proof output,\n causing conversion to PDF to fail.\n- [makeotf] Increased the limit for glyph name length from 31 to 63\n characters. This is not encouraged in shipping fonts, as there may\n be text engines that will not accept glyphs with more than 31\n characters. This was done to allow building test fonts to look for\n such cases.\n\n2.5.63209 (released 2014-09-18)\n-------------------------------\n\n- [makeInstancesUFO] Added new script to build instance fonts from\n UFO master design fonts. This uses the design space XML file\n exported by Superpolator 3 in order to define the design space, and\n the location of the masters and instance fonts in the design space.\n The definition of the format of this file, and the library to use\n the design space file data, is in the open source mutatorMath\n library on GitHub, and maintained by Erik van Blokland. There are\n several advantages of the Superpolator design space over the\n previous **makeInstances** script, which uses the Type 1 Multiple\n Master font format to hold the master designs. The new version a)\n allows different master designs and locations for each glyph, and b)\n allows master designs to be arbitrarily placed in the design space,\n and hence allows intermediate masters. In order to use the\n mutatorMath library, the AFDKO-supplied Python now contains the\n robofab, fontMath, and defcon libraries, as well as mutatorMath.\n- [ttx] Updated to the latest branch of the fontTools library as\n maintained by Behdad Esfahbod on GitHub. Added a patch to cffLib.py\n to fix a minor problem with choosing charset format with large glyph\n sets.\n- Updated four Adobe-CNS1-\\* ordering files.\n\n2.5.63164 (released 2014-09-08)\n-------------------------------\n\n- [makeotf] Now detects `IsOS/2WidthWeightSlopeOnly` as well as the\n misspelled `IsOS/2WidthWeigthSlopeOnly`, when processing the\n fontinfo file.\n- [makeotfexe] Changed behavior when 'subtable' keyword is used in\n a lookup other than class kerning. This condition now triggers only\n a warning, not a fatal error. Change requested by FontForge\n developers.\n- [makeotf] Fixed bug which prevented making TTF fonts under\n Windows. This was a problem in quoting paths used with the 'ttx'\n program.\n- Fixed installation issues: removed old Windows install files from\n the Windows AFDKOPython directory. This was causing installation of\n a new AFDKO version under Windows to fail when the user's PATH\n environment variable contained the path to the AFDKOPython\n directory. Also fixed command file for invoking ttx.py.\n- Updated files used for building ideographic fonts with Unicode IVS\n sequences:\n `FDK/Tools/SharedData/Adobe Cmaps/Adobe-CNS1/Adobe-CNS1_sequences.txt`\n and `Adobe-Korea1_sequences.txt`.\n\n2.5.62754 (released 2014-05-14)\n-------------------------------\n\n- [IS/addGlobalColor] When using the '-bc' option, fixed bug with\n overflow for CID value in dumping glyph header. Fixed bug in IS to\n avoid crash when logic for glyphs \\> 72 points is used.\n- [makeotfexe] Fixed bug that applied '-gs' option as default\n behavior, subsetting the source font to the list of glyphs in the\n GOADB.\n\n2.5.62690 (released 2014-04-30)\n-------------------------------\n\n- [makeotf] When building output TTF font from an input TTF font,\n will now suppress warnings that hints are missing. Added a new\n option '-shw' to suppress these warnings for other fonts that with\n unhinted glyphs. These warnings are shown only when the font is\n built in release mode.\n- [makeotfexe] If the cmap format 4 UTF16 subtable is too large to\n write, then makeotfexe writes a stub subtable with just the first\n two segments. The last two versions allowed using '-' in glyph\n names. Removed this, as it breaks using glyph tag ranges in feature\n files.\n- Updated copyright, and removed patent references. Made extensive\n changes to the source code tree and build process, to make it easier\n to build the open source AFDKO. Unfortunately, the source code for\n the **IS** and **checkOutlines** programs cannot be open sourced.\n- [tx/mergeFonts/rotateFont] Removed '-bc' option support, as\n this includes patents that cannot be shared in open source.\n- [tx] All tx-related tools now report when a font exceeds the max\n allowed subroutine recursion depth.\n- [tx/mergeFonts/rotateFont] Added common options to all when\n possible: all now support UFO and SVG fonts, the '-gx' option to\n exclude fonts, the '-std' option for cff output, and the '-b'\n option for cff output.\n\n2.5.61944 (released 2014-04-05)\n-------------------------------\n\n- [makeotf] Added new option '-gs'. If the '-ga' or '-r'\n option is used, then '-gs' will omit from the font any glyphs\n which are not named in the GOADB file.\n- [Linux] Replaced the previous build (which worked only on 64-bit\n systems) with a 32 bit version, and rebuilt checkOutlines with debug\n messages turned off.\n- [ttx] Fixed FDK/Tools/win/ttx.cmd file so that the 'ttx' command\n works again.\n\n2.5.61911 (released 2014-03-25)\n-------------------------------\n\n- [makeotf] Add support for two new 'features' file keywords, for\n the OS/2 table. Specifying 'LowerOpSize' and 'UpperOpSize' now\n sets the values 'usLowerOpticalPointSize' and\n 'usUpperOpticalPointSize' in the OS/2 table, and set the table\n version to 5.\n- [makeotf] Fixed the '-newNameID4' option so that if the style\n name is \"Regular\", it is omitted for the Windows platform name ID\n 4, as well as in the Mac platform version. See change in\n build 61250.\n- [tx] When the user does not specify an output destination file\n path (in which case tx tries to write to stdout), tx now reports a\n fatal error if the output is a UFO font, rather than crashing.\n- [tx] Fixed crash when encountering an empty `<dict/>` XML\n element.\n- [spot] Added logic to dump the new fields in OS/2 table version 5,\n **usLowerOpticalPointSize** and **usUpperOpticalPointSize**. An\n example of these values can be seen in the Windows 8 system font\n Sitka.TTC.\n- [ufo workflow] Fixed autohint and checkOutlines so that the '-o'\n option works, by copying the source UFO font to the destination UFO\n font name, and then running the program on the destination UFO font.\n- [ufo workflow] Fixed tools that the PostScript font name is not\n required.\n- Added Linux build.\n\n2.5.61250 (released 2014-02-17)\n-------------------------------\n\n- [tx] Fixed rare crashing bug in reading a font file, where a\n charstring ends exactly on a refill buffer boundary.\n- [tx] Fixed rare crashing bug in subroutinization.\n- [tx] Fixed bug where it reported values for wrong glyph with more\n than 32K glyphs in the font.\n- [tx] Fixed bug where the tool would not dump a TrueType Collection\n font file that contained OpenType/CFF fonts.\n- [tx] Fixed issue where it failed to read a UFO font if the UFO\n font lacked a fontinfo.plist file, or a psFontName entry.\n- [IS] Fixed IS so that it no longer scales the fontDict FontMatrix,\n when a scale factor is supplied, unless you provide an argument to\n request this.\n- [makeotf] The option '-newNameID4' now builds both Mac and Win\n name ID 4 using name ID 1 and 2, as specified in the OpenType spec.\n The style name is omitted from name ID 4 it is \"Regular\".\n- [makeotf] Changed logic for specifying ValueFormat for PosPair\n value records. Previous logic always used the minimum ValueFormat.\n Since changing ValueFormat between one PosPair record and the next\n requires starting a new subtable, feature files that used more than\n one position adjustment in a PosPair value record often got more\n subtable breaks then necessary, especially when specifying a PairPos\n statement with an all zero Value Record value after a PairPos\n statement with a non-zero Value Record. With the new logic, if the\n minimum ValueFormat for the new ValueRecord is different than the\n ValueFormat used with the ValueRecord for the previous PairPos\n statement, and the previous ValueFormat permits expressing all the\n values in the current ValueRecord, then the previous ValueFormat is\n used for the new ValueRecord.\n- Added commands **otc2otf** and **otf2otc** to build OpenType\n collection files from a OpenType font files, and vice-versa.\n- [ttx] Updated the FontTools library to the latest build on the\n GitHub branch maintained by Behdad Esfahbod, as of Jan 14 2014.\n- [ufo workflow] Fixed bugs in ufoTools.py. The glyph list was being\n returned in alphabetic order, even when the public.glyphOrder key\n was present in lib.py. Failed when the glyphOrder key was missing.\n\n2.5.60908 (released 2013-10-21)\n-------------------------------\n\n- [tx] Can now take UFO font as a source font file for all outputs\n except rasterization. It prefers GLIF file from the layer\n `glyphs.com.adobe.type.processedGlyphs`. You can select another\n preferred layer with the option '-altLayer `<layer name>`'. Use\n 'None' for the layer name in order to have tx ignore the preferred\n layer and read GLIF files only from the default layer.\n- [tx] Can now write to a UFO with the option '-ufo'. Note that it\n is NOT a full UFO writer. It writes only the information from the\n Postscript font data. If the source is an OTF or TTF font, it will\n not copy any of the meta data from outside the font program table.\n Also, if the destination is an already existing UFO font, tx will\n overwrite it with the new data: it will not merge the new font data\n with the old.\n- [tx] Fixed bugs with CID values \\> 32K: used to write these as\n negative numbers when dumping to text formats such as AFM.\n- [autohint/checkOutlines] These programs can now be used with UFO\n fonts. When the source is a UFO font, the option '-o' to write to\n another font is not permitted. The changed GLIF files are written to\n the layer 'glyphs.com.adobe.type.processedGlyphs'. Each script\n maintains a hash of the width and marking path operators in order to\n be able to tell if the glyph data in the default layer has changed\n since the script was last run. This allows the scripts to process\n only those glyphs which have changed since the last run. The first\n run of autohint can take two minutes for a 2000 glyph font; the\n second run takes less then a second, as it does not need to process\n the unchanged glyphs.\n- [stemHist/makeotf] Can now take UFO fonts as source fonts.\n\n2.5.60418 (released 2013-02-26)\n-------------------------------\n\n- [autohint] Now skips comment lines in fontinfo file.\n- [makeotf] Added support for source font files in the 'detype1'\n plain text format. Added logic for \"Language\" keyword in fontinfo\n file; if present, will attempt to set the CID font makeotf option\n -\"cs\" to set he Mac script value.\n- [compareFamily] Added check in Family Test 10 that font really is\n monospaced or not when either the FontDict isFixedPitch value or the\n Panose value says that it is monospaced.\n- [spot] Fixed bug that kept 'palt'/'vpal' features from being\n applied when proofing kerning.\n\n2.5.59149 (released 2012-10-31)\n-------------------------------\n\n- [makeotf] When building OpenType/TTF files, changed logic to copy\n the OS/2 table usWinAscent/Descent values over the head table\n yMax/yMin values, if different. This was because:\n\n - both pairs are supposed to represent the real font bounding box\n top and bottom,and should be equal;\n - the TTF fonts we use as sources for makeotf are built by FontLab;\n - FontLab defines the font bounding box for TrueType fonts by using\n off-curve points as well as on-curve points. If a path does not have\n on-curve points at the top and bottom extremes, the font bounding\n box will end up too large. The OS/2 table usWinAscent/Descent\n values, however, are set by makeotf using the converted T1 paths,\n and are more accurate. Note that I do not try to fix the head table\n xMin and xMax. These are much less important, as the head table yMin\n and yMax values are used for line layout by many apps on the Mac,\n and I know of no application for the xMin and yMin values.\n\n- [makeotf] Changed default Unicode H CMAP file for Adobe-Japan1 CID\n fonts to use the UniJIS2004-UTF32-H file.\n- Added the CID font vertical layout files used with KozMinPr6N and\n KozGoPr6N: AJ16-J16.VertLayout.KozGo and AJ16-J16.VertLayout.KozMin.\n- Updated several Unicode CMAP files, used only with CID fonts.\n- Added new Perl script, glyph-list.pl, used in building CID fonts.\n This replaces the three scripts extract-cids.pl, extract-gids.pl,\n and extract-names.pl, which have been removed from the AFDKO.\n\n2.5.58807 (released 2012-09-13)\n-------------------------------\n\n- [makeotf] Discovered that when building TTF fonts, the GDEF table\n was not being copied to the final TTF font file. Fixed.\n\n2.5.58732 (released 2012-09-04)\n-------------------------------\n\n- [autohint] Added new feature to support sets of glyphs with\n different baselines. You can now specify several different sets of\n global alignment zones and stem widths, and apply them to particular\n sets of glyphs within a font when hinting. See option '-hfd' for\n documentation.\n- [autohint] Allow AC to handle fonts with no BlueValues, aka\n alignment zones.\n- [autohint] Respect BlueFuzz value in font.\n- [autohint] Fixed the options to suppress hint substitution and to\n allow changes.\n- [autohint] When hinting a font with no alignment zones or invalid\n alignment zones (and with the '-nb' option), set the arbitrary\n alignment zone outside the FontBBox, rather than the em-square.\n- [checkOutlines] Fixed bug where the arms of an X would be falsely\n identified as coincident paths, when they are formed by only two\n paths with identical bounding boxes.\n- [checkOutlines] Fixed bug where very thin elements would get\n identified as a tiny sub path, and get deleted.\n- [checkOutlines] Fixed bug in determining path orientation. Logic\n was just following the on-path points, and could get confused by\n narrow concave inner paths, like parentheses with an inner contour\n following the outer contour, as in the Cheltenham Std HandTooled\n faces.\n- [checkOutlines] Fixed bugs in determining path orientation.\n Previous logic did not handle multiple inner paths, or multiple\n contained outer paths. Logic was also dependent on correctly sorting\n paths by max Y of path bounding box. Replaced approximations with\n real bezier math to determine path bounding box accurately.\n- [checkOutlines] Changed test for suspiciously large bounding box\n for an outline. Previous test checked for glyph bounding box outside\n of fixed limits that were based on a 1000 em square. The new test\n looks only for paths that are entirely outside a rectangle based on\n the font's em square, and only reports them: it does not ever\n delete them. Added new option '-b' to set the size of the design\n square used for the test.\n- [checkOutlines] Fixed bug where it would leave a temp file on disk\n when processing a Type 1 font.\n- [checkOutlines] Removed test for coincident control points. This\n has not been an issue for decades. It is frequently found in fonts\n because designers may choose to not use one of the two control\n points on a curve. The unused control point then has the same\n coordinates as its nearest end-point, and would to cause\n checkOutlines to complain.\n- [compareFamily] Single Test 6. Report error if there is a patent\n number in the copyright. Adobe discovered that a company can be sued\n if it ships any product with an expired patent number.\n- [compareFamily] Single Test 22 (check RSB and LSB of ligature vs.\n the left and right ligature components) did not parse contextual\n ligature substitution rules correctly. Now fixed.\n- [compareFamily] Family Test 18. Survive OTF fonts with no blue\n values.\n- [compareFamily] Family Test 2 (Check that the Compatible Family\n group has same nameIDs in all languages): Added the WPF nameIDs 21\n and 22 to the exception list, which may not exist in all faces of a\n family.\n- [fontsetplot] Fixed so it works with CID fonts. Also fixed so that\n widow line control works right. Added new low level option for\n controlling point size of group header.\n- [fontsetplot] Fixed syntax of assert statements. Produced error\n messages on first use of the \\*plot commands.\n- [kernCheck] Fix so that it survives fonts with contextual kerning.\n It does not, however, process the kern pairs in contextual kerning.\n- [makeotf] Fixed bug in mark to ligature. You can now use an\n `<anchor NULL>` element without having to follow it by a dummy mark\n class reference.\n- [makeotf] Fixed bug which limited source CID fonts to a maximum of\n 254 FDArray elements, rather than the limit of 255 FDArray elements\n that is imposed by the CFF spec.\n- [makeotf] Fixed bugs in automatic GDEF generation. When now GDEF\n is defined, all conflicting class assignments in the GlyphClass are\n filtered out. If a glyph is assigned to a make class, that\n assignment overrides any other class assignment. Otherwise, the\n first assignment encountered will override a later assignment. For\n example, since the BASE class is assigned first, assignment to the\n BASE class will override later assignments to LIGATURE or COMPONENT\n classes.\n- [makeotf] Fix bug in validating GDEF mark attachment rules. This\n now validates the rules, rather than random memory. Had now effect\n on the output font, but did sometimes produce spurious error\n messages.\n- [makeotf] Fix crashing bug when trying to report that a glyph\n being added to a mark class is already in the mark class.\n- [makeotf] If the OS/2 code page bit 29 (Macintosh encoding) is\n set, then also set bit 0 (Latin (1252). Under Windows XP and Windows\n 7, if only the Mac bit is set, then the font is treated as having no\n encoding, and you cannot apply the font to even basic Latin text.\n- [makeotf] By default, set Windows name ID 4 (Full Name) same as\n Mac nameID 4, instead of setting it to the PostScript name. This is\n in order to match the current definition of the name ID 4 in the\n latest OpenType spec. A new option to makeotf ('-useOldNameID4'),\n and a new key in the fontinfo file (\"UseOldNameID4\"), will cause\n makeotf to still write the PS name to Windows name ID 4.\n- [makeotf] Add support for WPF names, name ID 21 and 22.\n- [makeotf] Fixed attachment order of marks to bug in generating\n Mark to Ligature (GPOS lookup type 4). The component glyphs could be\n reversed.\n- [makeotf] Fixed bug in auto-generating GDEF table when Mark to\n Mark (GPOS lookup Type 4) feature statements are used. The target\n mark glyphs were registered as both GDEF GlyphClass Base and Mark\n glyphs, and the former took precedence. makeotfexe now emits a\n warning when a glyph gets assigned to more than one class when\n auto-generating a GDEF table GlyphClass, and glyphs named in mark to\n mark lookups are assigned only to the Mark GDEF glyph class.\n- [makeotf] Fixed bugs in generating TTF fonts from TTF input. It\n now merges data from the head and hhea tables, and does a better job\n of dealing with the 'post' table. The previous logic made\n incorrect glyph names when the glyphs with names from the Mac Std\n Encoding were not all contiguous and at the start of the font.\n- [makeotf] Added new option '-cn' for non-CID source fonts, to\n allow reading multiple global font alignment zones and stem widths\n from the fontinfo file, and using this to build a CID-keyed CFF\n table with an identity CMAP. This is experimental only; such fonts\n may not work in many apps.\n- [makeotf] Fixed bug where the coverage table for an element in the\n match string for a chaining contextual statement could have\n duplicate glyphs. This happens when a glyph is specified more than\n once in the class definition for the element. The result is that the\n format 2 coverage table has successive ranges that overlap: the end\n of one range is the same glyph ID as the start of the next range;\n harmless, but triggers complaints in font validators.\n- [makeotf] Updated to latest Adobe CMAP files for ideographic\n fonts. Changed name of CMAP directories in the AFDKO, and logic for\n finding the files.\n- [makeotf] When providing a GDEF feature file definition, class\n assignments now may be empty:\n\n table GDEF {\n GlyphClassDef ,,,;\n } GDEF;\n\n is a valid statement. You just need to provide all three commas and\n the final colon to define the four classes. The following statement\n builds a GDEF GlyphClass with an empty Components class.\n\n table GDEF {\n GlyphClassDef [B], [L], [M], ;\n } GDEF;\n\n- [makeotf] The glyph alias file now defines order in which glyphs\n are added to the end of the target font, as well as defining the\n subset and renaming.\n- [makeotf] The `-cid <cidfontinfo>` option for converting a\n font to CID can now be used without a glyph alias file, if the\n source font glyphs have names in the form \"cidXXXX\", as is output\n when mergeFonts is used to convert from CID to name-keyed. If the\n `-cid <cidfontinfo>` option is used, and there is no glyph alias\n file, then any glyphs in the font without a name in the form\n \"cidXXXX\" will be ignored.\n- [spot] Added error message for duplicate glyph IDs in coverage\n tables with format 2, a problem caused by a bug in makeotf with some\n Adobe fonts that use chaining contextual substitution. Note: error\n message is written only if level 7 GSUB/GPOS dump is requested.\n- [spot] Minor formatting changes to the GSUB/GPOS level 7 dump, to\n make it easier to edit this into a real feature file.\n- [spot] When writing out feature file syntax for GPOS 'ignore\n pos' rules, the rule name is now written as 'ignore pos', not\n just 'ignore'.\n- [spot] Can now output glyph names up to 128 chars (Note: these are\n not legal PostScript glyph names, and should be encountered only in\n development fonts.)\n- [spot] Has new option '-ngid' which suppresses output of the\n trailing glyph ID `@<gid>` for TTF fonts.\n- [spot] No longer dumps the DefaultLangSys entry when there is\n none.\n- [spot] Changed dump logic for contextual and chain contextual\n lookups so that spot will not dump the lookups referenced by the\n substitution or position rules in the contextual lookups. The\n previous logic led to some lookups getting dumped many times, and\n also to infinite loops in cases where a contextual lookup referenced\n other contextual lookups.\n- [spot] Added support for Apple kern subtable format 3. Fixed old\n bug causing crash when dumping font with Apple kern table from\n Windows OS.\n- [spot] Fixed error when dumping Apple kern table subtable format\n 0, when kern table is at end of font file.\n- [spot] Fixed crashing bug seen in DejaVuSansMono.TTF: spot did not\n expect an anchor offset to be zero in a Base Array base Record.\n- [spot] Removed comma from lookupflag dump, to match feature file\n spec.\n- [spot] Added logic to support name table format 1, but it probably\n does not work, since I have been unable to find a font to test with\n this format.\n- [spot] Fixed spelling error for \"Canadian\" in OS/2 code page\n fields.\n- [spot] Changed dump of cmap subtable 14: hex values are\n uppercased, and base+UVS values are written in the order [base,\n uvs].\n- [stemHist] Always set the alignment zones outside the font BBox,\n so as to avoid having the source font alignment zones affect\n collection of stem widths.\n- [stemHist] Fix bug where the glyph names reported in the stem and\n alignment reports were off by 1 GID if the list of glyphs included\n the '.notdef' glyph.\n- [tx] Added support for option '-n' to remove hints for writing\n Type 1 and CFF output fonts.\n- [tx] Added new option \"+b\" to the cff output mode, to force\n glyph order in the output font to be the same as in the input font.\n- [tx] Fixed bug in flattening 'seac' operator. If the glyph\n components were not in the first 256 glyphs, then the wrong glyph\n would be selected.\n- [tx] Added new library to read in svg fonts as a source. tx can\n now read all the SVG formats that it can write. Handles only the\n path operators: M, m, L, L, C, c, Z, z, and the font and glyph\n attributes: 'font-family', 'unicode', 'horiz-adv-x',\n 'glyph-name', 'missing-glyph'.\n- [tx] Fixed bug in converting TTF to OpenType/CFF. It flipped the\n sign of the ItalicAngle in the 'post' table, which in turn flipped\n the sign of the OS/2 table fields ySubscriptXOffset and\n ySuperscriptXOffset. This bug showed up in TTF fonts built by\n makeotf, as makeotf uses 'tx' to build a temporary Type 1 font\n from the source TTF.\n- [tx] Fixed bug where '-usefd' option was not respected, when\n converting from CID to name-keyed fonts.\n- Updated the internal Python interpreter to version 2.7.\n- Updated Adobe Cmaps/Adobe-Japan1 files:\n\n - Adobe-Japan1\\_sequences.txt\n - UniJIS-UTF32-H\n - UniJIS2004-UTF32-H\n - UniJISX0213-UTF32-H\n - UniJISX02132004-UTF32-H\n\n- Added several scripts related to CID font production:\n\n - cmap-tool.pl\n - extract-cids.pl\n - extract-gids.pl\n - extract-names.pl\n - fdarray-check.pl\n - fix-fontbbox.pl\n - hintcidfont.pl\n - subr-check.pl\n\n2.5.25466 (released 2012-03-04)\n-------------------------------\n\n- [charplot] This was non-functional since build 21898. Now fixed.\n- [checkOutlines] Changed so that the test for nearly vertical or\n horizontal lines is invoked only if the user specifies the options\n '-i' or '-4', instead of always. It turns out that this test,\n when fixed automatically, causes more problems than it cures in CJK\n fonts.\n- [compareFamily] Changed so that the default is to check stem\n widths and positions for bogus hints. Used 'tx' rather than Python\n code for parsing charstring in order to speed up hint check.\n- [compareFamily] Updated script tags and language tags according to\n OpenType specification version 1.6.\n- [documentation] In feature file syntax reference, fixed some\n errors and bumped the document version to 1.10.\n- [documentation] Fixed typo in example in section 4.d: lookFlag\n values are separated by spaces, not commas.\n- [documentation] Fixed typo in example in section 8.c on stylistic\n names: quotes around name string need to be matching double quotes.\n Reported by Karsten Luecke.\n- [documentation] Changed agfln.txt copyright notice to BSD license.\n- [makeInstances] Fixed bug where a space character in any of the\n path arguments caused it to fail.\n- [makeInstances] Fixed bug that can make the FontBBox come out\n wrong when using ExtraGlyphs.\n- [makeInstances] Fixed rounding bug that could (rarely) cause\n makeInstances to think that a composite glyph is being scaled (which\n is not supported by this script) when it is not.\n- [makeotf] Fixed bug in generating TTF fonts from TTF input.\n Previous version simply did not work.\n- [spot] Added support for \"Small\" fonts, an Adobe internal\n Postscript variant used for CJK fonts.\n- [spot] Added support for large kern tables, such as in the Vista\n font Cambria, where the size of the kern subtable exceeds the value\n that can be held in the subtable \"length\" field. In this case, the\n \"length\" filed must be ignored.\n- [spot] Fixed proof option to show GPOS records in GID order by\n default, and in lookup order only with the '-f' option. It had\n always been proofing the GPOS rules in lookup order since 2003.\n- [spot] Fixed double memory deallocation when dumping TTC files;\n this could cause a crash.\n- [spot] When decompiling GSUB table to feature file format (-t\n GSUB=7) and reporting skipped lookups identify lookups which are\n referenced by a chaining contextual rule.\n- [sfntedit] Changed final \"done\" message to be sent to stdout\n instead of stderr. Reported by Adam Twardoch.\n- [stemHist] Fixed typo in help text, reported by Lee Digidea:\n '-all' option was not working.\n- [tx] Added new option '-std' to force StdEncoding in output CFF\n fonts.\n\n2.5.21898 (released 2009-05-01)\n-------------------------------\n\n- [autohint/checkOutlines] Fixed rare case when an _rrcurveto_ is\n preceded by such a long list of _rlineto_ that the stack limit is\n passed.\n- [autohint/checkOutlines] Fixed to restore font.pfa output file to\n StandardEncoding Encoding vector. Since requirements of CFF\n StandardEncoding differs from Type 1 StandardEncoding, a\n StandardEncodingEncoding vector in a Type 1 font was sometimes\n getting converted to a custom Encoding vector when being\n round-tripped through the CFF format which autohint does internally.\n- [checkOutlines] Fixed random crash on Windows due to buffer\n overrun.\n- [checkOutlines] Changed default logging mode to not report glyph\n names when there is no error report for the glyph.\n- [CompareFamily] Added \"ring\" to the list of accent names used to\n find (accented glyph, base glyph) pairs for Single Face Test 23.\n Reported by David Agg.\n- Renamed showfont to fontplot2 to avoid conflict with the Mac OSX\n showfont tool.\n- Fixed problem with showing vertical origin and advance: was not\n using VORG and vmtx table correctly.\n- [FontLab scripts] Added logic to Instance Generator to support\n eliminating \"working\" glyphs from instances, to substitute\n alternate glyph designs for specific instances, and to update more\n Font Dict fields in the instance fonts. Added help.\n- Added command line equivalent, \"makeInstances' which does the same\n thing, but which uses the IS tool for making the snapshot. See the\n 'IS' entry.\n- [IS] Added new tool for \"intelligent scaling\". This uses the\n hinting in an MM font to keep glyph paths aligned when snapshotting\n from MM fonts. The improvement is most visible in glyphs with\n several elements that need to maintain alignment, such as percent\n and perthousand. It is also useful for the same reason when scaling\n fonts from a large em-square size to a smaller size. To be\n effective, the source MM font must be hinted and must have global\n alignment zones defined. The new font must be re-hinted. For\n instances from MM fonts especially, it is a good idea to redo the\n alignment zones, as the blending of the MM base designs usually does\n not produce the best alignment zones or stem widths for the instance\n fonts. makeInstances and \"Instance Generator\" scripts allow you to\n preserve these modifications when redoing the MM instance snapshot.\n- [makeotf] Fixed generation of version 1.2 GDEF table to match the\n final OpenType spec version 1.6. This version is generated only when\n the new lookup flag 'UseMarkFilteringSet\" is used.\n- [makeotf] Fixed generation of names for stylistic alternates\n features. There was a bug such that in some circumstances, the\n feature table entry for the stylistic alternate feature would point\n to the wrong lookup table.\n- [makeotf] Fixed generation of the reverse substitution lookup\n type. This was unintentionally disabled just before the previous\n release.\n- [makeotf] Fixed bugs in memory management of glyph objects. If the\n font built, it was correct, but this bug could cause the font to\n fail to build.\n- [spot] Fixed to dump GDEF table version 1.2 according to the final\n OpenType spec version 1.6.\n- [spot] Fixed feature-format dump of the lookupflags\n MarkAttachmentType and UseMarkFilteringSet to give a class name as\n an argument, rather than a class index.\n- [spot] Extended the GDEF table dump to provide a more readable\n form.\n- [spot] Added dump formats for htmx and vtmx to show the advance\n and side bearing metrics for all glyphs.\n\n2.5.21340 (released 2009-01-22)\n-------------------------------\n\n- [AGLFN] (Adobe Glyph List for New Fonts) Created new version 1.7.\n- [AGLFN] Reverted to the AGLFN v1.4 name and Unicode assignments\n for Delta, Omega, and mu. The v1.6 versions were better from a\n designer's point of view, but we cannot use name-to-Unicode value\n mappings that conflict with the historic usage in the Adobe Glyph\n List 2.0. See\n <http://www.adobe.com/devnet/opentype/archives/glyph.html>.\n- [AGLFN] Dropped all the 'afii' names from the list: 'uni'\n names are actually more descriptive, and map to the right Unicode\n values under Mac OSX.\n- [AGLFN] Dropped all the 'commaccent' names from the list:\n 'uni' names map to the right Unicode values under Mac OSX before\n 10.4.x.\n- [autohint] Converted AC.py script to call a command-line program\n rather than a Python extension module, same way makeotf works, to\n avoid continuing Python version problems.\n- [autohint] Fixed to actually emit vstem3 and hstem3 hint operators\n (counter control hints, which work to keep the space between three\n stems open and equal, as in an 'm') - this has been broken since\n the first AFDKO. It will now also look in the same directory as the\n source font for a file named \"fontinfo\", and will attempt to add\n stem3 hints to the glyph which are listed by name in the name list\n for the keys \"HCounterChars\" or \"VCounterChars\".\n- [autohint] Fixed old bug where it would only pay attention to the\n bottom four of the top zone specified in the FontDict BlueValues\n list. This results in more edge hints in tall glyphs.\n- [autohint] Fixed special case when adding flex operator which\n could result in an endless loop\n- [autohint] Added 'logOnly' option, to allow collecting report\n without changing the font.\n- [autohint] Added option to specify which glyphs to exclude from\n autohinting.\n- [autohint] Suppressed generation and use of `<font-name>.plist`\n file, unless it is specifically requested.\n- [autohint] Fixed bug where an extremely complex glyph would\n overflow a buffer of the list of hints.\n- [checkOutlines] Improved overlap detection and path orientation:\n it will now work with outlines formed by overlapping many stroke\n elements, as is sometimes done in developing CJK fonts.\n- [checkOutlines] added new test for nearly vertical or horizontal\n lines. Fixed bug in this new code, reported by Erik van Blokland.\n- [CompareFamily] For the warning that the Full Family name in the\n CFF table differs from that in the name table, changed it to a\n \"Warning\" rather than \"Error\", and explained that there is no\n functional consequence.\n- [CompareFamily] Removed check that Mac names ID 16 and 17 do not\n exist, as makeotf now does make them. See notes in MakeOTF User\n Guide about this.\n- [CompareFamily] Fixed so it works with TTF fonts again.\n- [makeotf] Removed code that added a default Adobe copyright to the\n name table if no copyright is specified, and removed code to add a\n default trademark.\n- [makeotf] Added support for the lookupflag UseMarkFilteringSet.\n This is defined in the proposed changes for OpenType spec 1.6, and\n is subject to change in definition.\n- [makeotf] Dropped restriction that vmtx/VORG/vhea tables will only\n be written for CID-keyed fonts. The presence in the feature file of\n either a 'vrt2' feature of vmtx table overrides will now cause\n these tables to be written for both CID-keyed and name-keyed fonts.\n- [makeotf] Added warning when a feature is referenced in the aalt\n feature definition, but either does not exist or does not contribute\n any rules to the aalt feature. The aalt feature can take only single\n and alternate substitution rules.\n- [makeotf] Added support for the following lookup types:\n\n - GSUB type 2 Multiple Substitution\n - GSUB type 8 Reverse Chaining Single Substitution\n - GPOS type 3 Cursive Adjustment\n - GPOS type 4 Mark-to-Base Attachment\n - GPOS type 5 Mark-to-Ligature Attachment\n - GPOS type 6 Mark-to-Mark Attachment\n\n- [makeotf] Added support for explicit definition of the GDEF table,\n and automatic creation of the GDEF when any of the lookup flag\n settings for ignoring a glyph class is used, or any mark classes are\n defined.\n- [makeotf] Support using TTF fonts as input, to build an\n OpenType/TTF font, with the limitation that glyph order and glyph\n names cannot be changed. This is rather ugly under the hood, but it\n works. The MakeOTF.py Python script uses the tx tool to convert the\n TTF font to CFF data without changing glyph order or names. It then\n builds an OpenType/CFF font. It then uses the sfntedit tool to copy\n the TTF glyph data to the OpenType font, and to delete the CFF\n table.\n- [makeotf] Added support for building Unicode Variation Selectors\n for CID-keyed fonts, using the new cmap subtable type 14.\n- [makeotf] Fixed bug with inheritance of default rules by scripts\n and languages in feature file feature definitions. Explicitly\n defined languages were only getting default rules defined after the\n last script statement, and when a script is named, languages of the\n script which are not named got no rules at all.\n- [makeotf] Fixed bug where you could not run makeotf when the\n current directory is not the same is the source font's home\n directory.\n- [makeotf] Set OS/2.lastChar field to U+FFFF when using mappings\n beyond the BMP.\n- [makeotf] Create the Mac platform name table font menu names by\n the same rules as used for the Windows menu names. Add new keywords\n to the FontMenuNameDB file syntax. If you use the old keywords, you\n get the old format; if you use the new syntax, you get nameIDs 1, 2\n and 16 and 17 just like for the Windows platform.\n- [makeotf] Fixed bug in name table font menu names: if you entered\n a non-English Preferred name (\"f=\") and not a compatible family\n name (\"c=\"), you would end up with a nameID 16 but no nameID 17.\n- [makeotf] Fixed bogus 'deprecated \"except\" syntax' message\n under Windows.\n- [makeotf] Fixed bug where contextual pos statements without\n backtrack or lookahead context were writing as a non-contextual\n rule. Reported by Karsten Luecke.\n- [makeotf] Added new option to make stub GSUB table when no GSUB\n rules are present.\n- [makeotf] Added warning if the aalt feature definition references\n any feature tags that either do not exist in the font, or do not\n contribute any rules that the aalt feature can use.\n- [sfntdiff] Fixed so that only error messages are written to\n stderr; all others now written to stdout.\n- [sfntdiff] Fixed bug in dump of 'name' table: when processing\n directories rather than individual files, the name table text was\n never updated after the first file for the second directory.\n- [spot] Fixed option '-F' to show the contextual rule sub-lookup\n indices, and to flag those which have already been used by another\n lookup.\n- [spot] If a left side class 0 is empty, do not report it.\n- [spot] For GSUB/GPOS=7 FEA dump, give each class a unique name in\n the entire font by appending the lookup ID to the class names. It\n was just `[LEFTCLASS]()<class index>_<subtable index>`, but\n these names are repeated in every lookup. It is now\n `LEFTCLASS_c<class index>_s<subtable index>_l<lookup\n index>`.\n- [spot] When a positioning value record has more than one value,\n print the full 4 item value record. Previously, it would just print\n non-zero values. This was confusing when dumping Adobe Arabic, as\n you would see two identical values at the end of some pos rules. In\n fact, each of these pos rule does have two adjustment values, one\n for x and one for y advance adjustment, that happen to be the same\n numeric value.\n- [spot] Fixed to write backtrack context glyphs in the right order.\n- [tx] Added option to NOT clamp design coordinates to within the\n design space when snapshotting MM fonts.\n- [tx] Added option to subroutinize the font when writing to CFF.\n This option is derived from the same code used by makeotfexe, but\n takes only about 10% the memory and runs much faster. This should\n allow subroutinizing large CJK fonts that makeotfexe could not\n handle. This is new code, so please test results carefully, i.e. if\n you use it, always check that the flattened glyphs outlines from the\n output font are identical to the flattened glyph outlines from the\n input font.\n- [ttxn] Added options to suppress hinting in the font program, and\n version and build numbers.\n\n2.0.27 (released 2007-11-10)\n----------------------------\n\n- [compareFamily] Fixed Single Test 3 (reported by Mark Simonson and\n others); the test should compare the Mac platform name ID 4 (name ID\n 1 + space + name ID 2) with the target value, but was instead using\n the value of the name ID 18 (Compatible Full Name).\n- [compareFamily] Fixed Family Test 2 to print a report that helps\n determine which {platform, script, language, name ID} is present in\n some fonts but not others.\n- [IS] Fixed a bug where applying hint-based scaling can cause an\n off-by-1 error when the the _closepath_ position is supposed to\n coincide with the original _moveto_, leading to an effective final\n 1-unit _lineto_, that may overlap the initial path. In the old MM\n design world, we worked around this issue by designing the MMs so\n that there was always a one unit difference between a final _curveto_\n point and the original _moveto_. FontLab doesn't support doing that\n automatically, so when making an instance, **IS** will instead simply\n look for cases where the _moveto_ and _closepath_ positions differ by\n one unit, and move the _moveto_ position to coincide with the\n _closepath_ position.\n- [makeotf] Fixed bug where specifying thousands of singleton kern\n pairs could silently overflow offsets, and makeotf would build a bad\n font without any warning. (reported by Adam Twardoch)\n- [makeotf] Relative file paths can now be used even if the current\n directory is not the source font directory. Project files can now be\n saved to directories other than the source font directory. Note that\n paths stored in project file are relative to the project file's\n directory. (reported by Andreas Seidel)\n- [makeotf/spot] Added support for Unicode Variation Sequences (UVSes).\n See MakeOTF User's Guide and\n [Unicode Technical Standard #37](http://unicode.org/reports/tr37/)\n- [spot] Fixed bug where contents of 'size' GPOS feature would be\n printed for all dump levels.\n- [spot] Fixed failure to process 'post' table format 4.0. which\n occurs in some Apple TT fonts, such as Osaka.dfont\n- Updated Adobe-Japan-1 CMAP files for building CID fonts.\n\n2.0.26 (released 2007-05-05)\n----------------------------\n\n- Added `featurefile.plist` for BBedit. Install this in the location\n shown at the top of the file; it enables code coloring for FEA syntax.\n The file is in FDK/Tools/SharedData\n- Added `MSFontValidatorIssues.html` to FDK/Technical Documentation. It\n lists the error messages from the MS FontValidator tool that can be\n ignored for OpenType/CFF fonts.\n- [FontLab macros] Added InstanceGenerator. Another script for making\n instances from an MM VFB font. It's simpler than MakeInstances macro.\n- [FontLab macros] Removed debug statement in Set Start Points which\n blocked processing more than 50 glyphs. (reported by George Ryan)\n- [FontLab macros] Added explanation of CheckOutlines errors to help\n dialog.\n- [checkOutlines] Added option '-he' to print explanation of error\n messages.\n- [compareFamily] Added error if the font's CFF table contains a\n Type 2 `seac` operator. The CFF spec does not support this operator.\n Some very old tools allow this to happen.\n- [makeotf] Fixed a bug in decomposing glyphs that are defined as\n composite glyphs in a Type 1 source font. This bug caused the base\n component to be shifted when then left side bearing of the composite\n glyph differs from that of the base glyph. This could be consequential,\n as FontLab has an option to not decompose composite glyphs when\n generating a Type 1 font.\n- [makeotf] Fixed a bug in recognizing the \"Korea1\" order when trying\n to pick a default Mac cmap script ID from a CID-keyed font's ROS\n (Registry-Order-Supplement) field.\n- [tx] Fixed a bug in decomposing pretty much all composite glyphs\n from Type 1 and CFF source fonts. It happened only when a Type 1 or\n CFF font was being subset, i.e. converted into a font with fewer\n glyphs. tx now has the option '+Z' to force this to occur.\n\n2.0.25 (released 2007-03-30)\n----------------------------\n\n- [autohint] Added a new option to allow extending the list of glyph\n names for which autohint will try to make counter hints.\n- [autohint] Fixed bug where Type 2 operator stack limit could be\n exceeded when optimizing Type 2 charstrings during conversion from\n bez format.\n- [autohint] Fixed bug in setting OtherBlues alignment zone values.\n- [FontLab macros] The Autohint macro behaves quite differently when\n adding 'flex' hints is turned off; it makes more hint substitutions,\n since these are not allowed within the segment of the outline that\n contributes the 'flex' stem. Turned it on, so that hint results will\n be the same as the command-line tool. This does not affect the outline\n data.\n- [checkOutlines] Fixed bug that prevented the reporting of two\n successive points with the same coordinates. The code to convert from\n the source outline data to bez format was suppressing zero-length line\n segments, so the checkOutlines module never experienced the problem.\n- [compareFamily] Added new options '-st n1,n2..' and '-ft n1,n2..' to\n allow executing only specific tests.\n- [compareFamily] Fixed test \"Warn if a style-linked family group does\n not have FamilyBlues\". When reporting the error that FamilyBlues differ\n in a style-linked family group (where at least one font does have real\n FamilyBlues), use BlueValues as implied FamilyBlues when the latter\n attribute is missing from a font. Same for FamilyOtherBlues.\n- [compareFamily] Warn about zones outside of font's BBox only if the\n entire zone is outside of the BBox, not just one edge, and warn only\n for BlueValue zones, not FamilyBlueValue zones.\n- [compareFamily] Fixed fsType check. Complain if fsType is not 8 only\n for Adobe fonts, determined by checking if the name table trademark\n string is empty or contains \"Adobe\".\n- [compareFamily] Fixed Single Face Test 3 to compare the CFF Full Name\n with the name table Preferred Full Name (ID 18) rather than the Full\n Name (ID 4).\n- [compareFamily] Fixed bug where it failed with CID fonts, because it\n referenced the \"Private\" dict attribute of the font's topDict, which\n does not exist in CID fonts.\n- [compareFamily] Fixed 'size' test to support the format that indicates\n only intended design size, where no range is supplied.\n- [compareFamily] Fixed ligature width check to also check that left\n and right side bearings match those of the left and right components,\n and to use the 'liga' feature to identify ligatures and their components,\n instead of heuristics based on glyph names.\n- [makeotf] Disallowed negative values in the feature file for the OS/2\n table winAscent and winDescent fields.\n- [makeotf] Fixed a bug where a lookup excluded with the `exclude_dflt`\n keyword was nevertheless included if the script/language was specified\n with a languagesystem statement.\n- [makeotf] Fixed issue on Windows where a user would see a debug\n assert dialog when the OS/2 vendorID was not specified in the feature\n file, and the Copyright string contained an 8-bit ASCII character, like\n the 'copyright' character.\n- [makeotf] Fixed issue on Windows where name ID 17 would be garbage if\n no FontMenuNameDB was supplied, and the PostScript name did not contain\n a hyphen.\n- [makeotf] Added warning for Mac OSX pre 10.5 compatibility: total size\n of glyphs names plus 2 bytes padding per glyph must be less than 32K, or\n OSX will crash.\n- [makeotf] Fixed crash that occurred if the feature file did not have\n a languagesystem statement.\n- [makeotf] Fixed bug in subroutinizer which allowed a subroutine stack\n depth of up to 10, but the Type 1 and Type 2 specs allow only 9. This\n caused most rasterizers to declare the font invalid.\n- [makeotf] Removed '-cv' option; CJK vertical CMaps have not been\n supported since FDK 1.6.\n- [spot] Added support for low-level and feature file style\n text dumps of GPOS Attachment formats 3, 4, 5 and 6.\n- [spot] Added dump of lookup flag value to the feature-file style\n report.\n- [spot] Added MarkAndAttachmentClassDef record to GDEF table report.\n- [spot] Added support for GSUB lookup type 2 (Multiple) when within\n contextual substitutions.\n- [spot] Fixed bug in GSUB lookup 5, causing crash in dumping trado.ttf.\n- [spot] Fixed bug in level 7 (feature-file syntax) dump of GPOS table;\n was omitting the value record for extension lookup types.\n- [spot] Fixed crash on Windows when proofing contextual substitution\n statements.\n- [spot] Made Windows version behave like Mac when proofing: PostScript\n file data is always sent to standard output, and must be re-directed to\n a file.\n- [spot] Improved documentation of proofing output and '-P' option.\n- [spot] Fixed DSIG table reporting of TTC fonts with the version 2 TTC\n header, even if the header reports it is version 1, like meiryo.ttc.\n- [spot] Enabled proofing TTC fonts that don't have glyph names in the\n post table.\n- [spot] Fixed origin offset of bounding box for TTF fonts.\n- [spot] Fixed crash in proofing TTF fonts when the last glyph is\n non-marking, like trado.ttf in LongHorn.\n\n2.0.24 (released 2006-11-06) \u2014 Public release of FDK 2.0\n----------------------------\n\n- [autohint/checkOutlines/ProofPDF] Fixed glyph name handling to avoid\n stack dump when glyph is not in font. Added support for CID values that\n are not zero-padded to 5 hex digits.\n- [autohint] Fixed bug where edge hints would be generated rather than\n regular hints across the baseline, when there were fewer than 8 pairs of\n BlueValues.\n- [checkOutlines] Fixed bug where it would not report an overlap if\n there were an even number of overlapping contours.\n- [compareFamily] Fixed Italic angle Single Test 12 to look at the middle\n third of the test glyph stems, rather than the top and bottom of the\n glyph bounding box, when guessing the font's italic angle.\n- [compareFamily] Fixed Single Test 15 to allow a difference of 1 unit in\n the font BBox, to allow for rounding differences.\n- [compareFamily] Fixed Single Test 26 to identify uXXXX names as valid\n Unicode names; had bug in the regular expression that required 5 digits.\n- [compareFamily] Fixed Single Test 22 to treat glyphs in the combining\n mark Unicode range u3000-u036F range as accent glyphs; require that they\n have the same width as the base glyph.\n- [compareFamily] Changed report from Error to Warning for check that\n only the first four Panose values are non-zero.\n- [compareFamily] Fixed bug that caused a stack dump in Single Test 16\n and 22.\n- [compareFamily] Added tests for Mac OSX pre 10.4 compatibility: no\n charstring is < 32K, total size of glyphs names plus padding is less\n than 32K.\n- [compareFamily] Added test that known shipping font does not have OS/2\n table version 4, and that new fonts do.\n- [compareFamily] Fixed Single Test 11: allow BASE offset to differ from\n calculated offset by up to 10 design units before it complains.\n- [compareFamily/makeotf] Fixed failure when tools path contains a space.\n- [kernCheck] New tool; looks for kern GPOS rules that conflict, and also\n looks for glyph pairs that overlap.\n- [kernCheck] Added option to allow running only the check of GPOS\n subtables for kerning rules that mask each other.\n- [makeotf] Fixed '-adds' option.\n- [makeotf] Added new option '-fi' to specify path to fontinfo file.\n- [makeotf] Added new option '-rev' to increment the fontRevision field.\n- [makeotf] If the (cid)fontinfo file contains the keyword/value for\n FSType, will check that the value is the same as the OS/2 fsType field\n in the final OTF font. This has to do with historic Adobe CJK font\n development practices.\n- [makeotf] Added support for setting some of the Plane 1+ bits in the\n OS/2 ulUnicodeRange fields.\n- [mergeFonts] Will now apply to the output font the values for the\n fields Weight and XUID, from the cidfontinfo file.\n- [spot] Added support for showing some of the Plane 1+ bits in the OS/2\n ulUnicodeRange fields.\n- [stemHist] When requiring that reports not already exist, don't delete\n older stem reports when asking for new alignment zone reports, and\n vice-versa.\n- [setsnap.pl] New tool to pick standard stem hint values. This Perl\n script takes in the report from stemHist, and recommends a set of values\n to use for the Type 1 font standard stem arrays. This is not as good as\n choosing the most relevant values yourself, but better than not providing\n any values.\n- In _Overview.html_, added warning about 'languagesystem Dflt dflt' and FDK\n 1.6 feature files.\n- In _MakeOTFUserGuide.pdf_, expanded discussion of fontinfo file, updated\n documentation of OS/2 v4 table bits with Adobe's practices for the next\n library release.\n- In _OT Feature File Syntax.html_, fixed incorrect sign for winAscent\n keyword, extended discussion of DFLT script tag and useExtension keyword,\n and fixed minor typos.\n- Added two new tech notes on using rotateFont and mergeFonts.\n\n2.0.22 (released 2006-09-12)\n----------------------------\n\n- [compareFamily] Single Test 3 now also checks that Mac name ID 4 starts\n with Preferred Family name, and is the same as the CFF table Full Name.\n- [compareFamily] Added test for existence and validation of BASE table\n in Single Test 11.\n- [compareFamily] Fixed bug where failed when reporting font BBox error.\n- [compareFamily] Added test that some specific glyph names were not\n changed from previous version of font, in Single Test 26.\n- [compareFamily] Added \"Single Face Test 27: Check\n strikeout/subscript/superscript positions\". Checks values against default\n calculations based on the em-box size.\n- [compareFamily] Added \"Single Face Test 28: Check font OS/2 codepages\n for a common set of code page bits\". Checks OS/2 ulCodePageRange and\n ulUnicodeRange blocks against the default makeotf heuristics.\n- [compareFamily] Added in Single Test 12 a rough calculation of the\n italic angle. Warns if this is more than 3 degrees different than the\n post table Italic angle value.\n- [compareFamily] Added in Family Test 15 a check that all fonts in a\n preferred family have the same hhea table underline size and position\n values.\n- [compareFamily] Added \"Family Test 16: Check that for all faces in a\n preferred family group, the width of any glyph is not more than 3 times\n the width of the same glyph in any other face\".\n- [compareFamily] Fixed Family Test 3 to be more efficient.\n- [makeotf/makeotfexe] Added a new option '-maxs `<integer>`' to limit\n the number of subroutines generated by subroutinization. Used only when\n building test fonts to explore possible errors in processing the\n subroutines.\n- [makeotf/makeotfexe] Allow working names to be longer than 31\n characters; warn but don't quit, if final names are longer than 31\n characters.\n\n2.0.21 (released 2006-08-31)\n----------------------------\n\n- [makeotf] Fixed bug where 'size' feature was built incorrectly when it\n was the only GPOS feature in the font.\n- [spot] Improved error messages for 'size' feature problems.\n- [compareFamily] Added dependency on environment variables:\n **CF_DEFAULT_URL** should be set to the foundry's URL; it's compared\n with name ID 11.\n **CF_DEFAULT_FOUNDRY_CODE** should be set to the foundry's 4-letter\n vendor code; it's compared with OS/2 table achVendID field.\n- [compareFamily] Check that CFF PostScript name is the same as Mac and\n Windows name table name ID 6.\n- [compareFamily] Check that named IDs 9 and 11 (designer name and\n foundry URL) exist.\n- [compareFamily] Extended Single Test 4 to verify that version string\n is in correct format '(Version|OTF) n.nnn'.\n- [compareFamily] Improved Panose test to check that values are not all\n 0, and that the CFF font dict 'isFixedPitch' field matches the Panose\n monospace value.\n- [compareFamily] Added check to confirm the presence of Unicode cmap\n sub table.\n- [compareFamily] Added check to confirm that latn/dflt and DFLT/dflt\n script/languages are present, if there are any GPOS or GSUB rules. Also\n checks that script and language tags are in registered lists, and that\n all faces have the same set of language and script tags, and feature\n list under each language and script pair.\n- [compareFamily] Added check to confirm that all faces in the family\n have the same OS/2 table fsType embedding permission values.\n- [compareFamily] Added check to confirm that if font has Bold style\n bit, the CFF forceBold flag is on. Also vice-versa, if the font weight\n is less than 700.\n- [compareFamily] Added check to confirm that the font does not have a\n UniqueID or XUID, if it's not CID-keyed.\n- [compareFamily] Added glyph name checks: OS/2 default char is .notdef,\n and that there are NULL and CR glyphs in TrueType fonts, and that names\n conform to the current Adobe Glyph Dictionary. Note that latest practice\n is to use 'uni' names for final names for all the 'afii' glyphs.\n- [compareFamily] Fixed family BlueValues tests to compare within\n compatible family name groups.\n- [compareFamily] Changed Family Test 2 to check that all name IDs\n except 16, 17, 18, are all present with the same language/script values\n within all faces of a preferred family.\n- [compareFamily] Changed Single Test 3, which didn't do at all what it\n described.\n- [FontLab macros] Fixed bug introduced when changing modules shared\n with command-line scripts in build 19.\n\n2.0.20 (released 2006-08-14)\n----------------------------\n\n- [ProofPDF] Fixed bug in waterfallplot mode, where Acrobat would\n report the output PDF file as being damaged.\n- [makeotf] Fixed bug that prevented building CID fonts in release\n mode, introduced in build 19.\n\n2.0.19 (released 2006-08-04)\n----------------------------\n\n- [compareFamily] Added Family Test 13 to report error if two fonts in\n the same preferred family have the same OS/2 weight, width and Italic\n settings, and the OS/2 version is greater than 3. Also reports an error\n if the fsSelection field bit 8 \"WEIGHT_WIDTH_SLOPE_ONLY\" is set\n differently across faces of the same preferred family name group.\n- [compareFamily] Fixed Family Test 12 to not fail when the font has a\n script/language with no DefaultLangSys entry.\n- [makeotf] If a font file with the requested output file name already\n exists, will delete it before running makeotfexe, so can tell if it\n failed.\n- [makeotf] Will now set the new 'fsSlection' bits if the following\n key/value pairs are in the 'fontinfo' file:\n\n PreferOS/2TypoMetrics 1\n IsOS/2WidthWeigthSlopeOnly 1\n IsOS/2OBLIQUE 1\n\n- [digiplot] Added new option to specify the font baseline, so the\n baseline can be set correctly when proofing a font file without a BASE\n table.\n- [digiplot] Allowed using a CID layout file to supply meta info when\n proofing name-keyed fonts.\n- [ProofPDF] Added two functions: **waterfallplot** and **fontsetplot**.\n waterfallplot does not yet work with TrueType or CID-keyed fonts.\n\n2.0.17 (released 2006-05-15)\n----------------------------\n\n- Fixed multiple tools to allow installing the FDK on Windows on a path\n containing spaces.\n- [autohint] Added option to suppress hint substitution.\n- [autohint] Fixed help and message to refer to 'autohint' tool name,\n rather than to the AC script file name.\n- [autohint] Fixed bug in processing hint masks: bytes with no bits set\n were being omitted.\n- [autohint] Added option to allow hinting fonts without StdHW or StdVW\n entries in the font Private font-dictionary.\n- [checkOutlines] Fixed writing out the changes when fixing outlines.\n- [checkOutlines] Fixed bug that mangled outlines when three alternating\n perpendicular lines or vh/hv/vv/hh curveto's followed each other.\n- [checkOutlines] Will now write report to a log file as well as to\n screen. Added option to set log file path, and added numeric suffix to\n name so as to avoid overwriting existing log files.\n- [compareFamily] Fixed issue that happened when looking through the\n directory for font files, when encountering a file for which the user\n did not have read permission.\n- [compareFamily] Added Single Test 24: check that 'size' feature\n Design Size is within the design range specified for the font.\n- [ProofPDF] Added **showfont** command to show how to customize a\n command file to produce a different page layout.\n- [ProofPDF] Fixed so fonts with em-square other then 1000 will work.\n- [fontplot/charplot/digiplot/hintplot/showfont] Added support for\n Type 1 font files as well as OTF and TTF files.\n- [makeotf] Fixed MakeOTF to survive being given a font path with spaces.\n- [makeotf] Fixed '-S' and '-r' options.\n- [makeotf] Added new option '-osv `<number>`' to allow setting the OS/2\n table version number.\n- [makeotf] Added new option '-osbOn `<number>`' to set arbitrary\n bitfields in OS/2 table 'fsSelection' to on. May be repeated more than\n once to set more than one bit.\n- [makeotf] Added new option '-osbOff `<number>`' to set arbitrary\n bitfields in OS/2 table 'fsSelection' to off. May be repeated more than\n once to unset more than one bit.\n- [makeotf] If neither '-b' nor '-i' options are used, check for a file\n 'fontinfo' in the same directory as the source font file, and set the\n style bits if these key/values are found:\n\n IsBoldStyle true\n IsItalicStyle true\n\n- [FontLab macros] Built the autohint and checkOutline libraries (PyAC\n and focusdll) linked with Python2.3 so they work with FontLab 5.\n- [mergeFonts] Added option to copy only font metrics from first source\n font.\n- [mergeFonts] Allow empty lines and \"#\" comment lines in glyph alias\n and in cidfontinfo files.\n- [rotateFont] Fixed bug where it did not allow negative numbers.\n- [rotateFont] Allow empty lines and \"#\" comment lines in rotation info\n file\n- [sfntedit] Fixed so that it will not leave the temp file behind on a\n fatal error, nor quit because one already exists.\n- [spot] Fixed order of backtrack glyphs in dump of chaining contextual\n `sub` and `pos` statements. Now assumes that these are built in the\n correct order.\n- Added two new tools, **type1** and **detype1**, that compile/decompile\n a Type 1 font from/to a plain text representation.\n\n2.0.5 (released 2006-02-14)\n---------------------------\n\n- [compareFamily] Added warning if sum of OS/2 table sTypoLineGap,\n sTypoAscender, and sTypoDescender is not equal to the sum of usWinAscent\n and usWinDescent.\n- [compareFamily] Updated test for allowable weights in style-linked\n faces to reflect the current behavior of Windows XP.\n- [compareFamily] Added check for OpenType/CFF: Windows name table ID 4\n (Full Name) is the same as the PostScript name.\n- [compareFamily] Added report on sets of features in different\n languagesystems, and an error message if they are not the same in all\n faces of the font.\n- [compareFamily] Fixed incorrect message about real error when menu\n names are not correctly built.\n- [compareFamily] Fixed test for improbable FontBBOX to use em-square\n rather than assume 1000 em.\n- [compareFamily] Added warning if widths of ligatures are not larger\n than the width of the first glyph.\n- [compareFamily] Added warning if accented glyphs have a width different\n than their base glyph.\n- [compareFamily] Added error message if two faces in the same family\n have the same OS/2 width and weight class and italic style setting, and\n are not optical size variants. Optical size check is crude: the Adobe\n standard optical size names (Caption, Capt, Disp, Ds, Subh, Six) are\n removed from the PS font names and then compared; if the PS names are\n the same, then they are assumed to be optical size variants.\n- [compareFamily] Added check that no hint is outside the FontBBox, for\n CJK fonts only.\n- [spot/otfproof] Added \"Korean\" to list of tags for OS/2 codepage range.\n- [spot/otfproof] Fixed dump of 'size' feature to support correct and old\n versions\n- [spot/otfproof] Added dump/proof of contextual chaining positioning\n format 3.\n- [spot/otfproof] Added warnings that only low-level dump of other\n contextual lookups is supported.\n- [makeotf] Program is now a stand-alone C executable.\n- [makeotf] Removed option to write contextual positioning rules in the\n _old_ incorrect format.\n- [makeotf] MakeOTF no longer assigns Unicode Private Use Area values\n to glyphs for which it cannot identify. To use PUAs, explicitly assign\n them in the GlyphOrderAndAlias file.\n- [makeotf] Fixed bug in name table name ID \"Version\": if version decimal\n value is x.000, then the value in the Version name ID string was x.001.\n- [makeotf] Fixed bug in handling of DFLT language script: it's now\n possible to use this tag.\n- [makeotf] Fixed feature file parsing bug where 'dflt' lookups in one\n feature were applied to the following feature if the following feature\n started with a language statement other than 'dflt'.\n- [makeotf] Fixed serious bug where wrong width is calculated for glyphs\n where the CFF font Type 2 charstring for the glyph starts with a width\n value. This is then followed by the value pairs for the coordinates for\n the vertical hint, and then these are followed by a hint mask or control\n mask operator. The bug was that when MakeOTF reads in the charstring in\n order to derive the hmtx width, it discards the data before the control\n mask operator, leading the parser to use the CFF default width for the\n glyph.\n- [makeotf] vhea.caretSlopeRise and vhea.caretSlopeRun is now set to 0\n and 1 respectively, rather than the opposite.\n- [makeotf] The OS/2 table 'fsType' field is now set to the feature file\n override. If not supplied, then the value of the environment variable\n FDK_FSTYPE. If not set then 4 (Preview & Print embedding).\n- [makeotf] Added support for contextual chaining positioning of base\n glyphs; mark and anchors not yet supported.\n- [makeotf] Fixed bug in 'size' feature: the feature param offset is now\n set to the offset from the start of the feature table, not from from the\n start of the FeatureList table.\n- [makeotf] Allowed 'size' feature point sizes to be specified as\n decimal points, as well as in integer decipoints.\n- [makeotf] OS/2 table version is now set to 3.\n- [makeotf] Added OS/2 overrides for winAscent and winDescent.\n- [makeotf] Added hhea overrides for Ascender/Descender/LineGap.\n- [makeotf] Set OS/2 Unicode coverage bits only if the font has a\n reasonable number of glyphs in the Unicode block; it was setting the\n bits if the font had even one glyph in the block.\n- [makeotf] The \"Macintosh\" codepage bit in the OS/2 codePageRange fields\n is now set by default.\n- [FEA spec] Fixed incorrect range example in section _2.g.ii. Named\n glyph classes_\n- [FEA spec] Changed rule to allow lookup definitions outside of feature\n definitions in FDK 2.0.\n- [FEA spec] Fixed incorrect uses of 'DFLT' rather than 'dflt' for a\n language tag.\n\n1.6.8139 (released 2005-08-30)\n------------------------------\n\n- [OTFProof] Fixed error in dumping GSUB table: GSUB lookup 5,\n context lookup assumed that there were both a lookahead and a backtrack\n sequence.\n- Updated SING META table tags to latest set.\n\n1.6.7974 (released 2004-08-30)\n------------------------------\n\n- [makeotf] Fixed rule in building CJK font. When looking for Adobe\n CMap files, will no longer use a hardcoded max supplement value when\n building paths to try.\n\n1.6.7393 (released 2004-01-14)\n------------------------------\n\n- [compareFamily] Fix stack dump when family has no BlueValues\n (reported by House Industries).\n- [compareFamily] Fix stack dump when CFF-CID font has glyph with no\n `subr` calls.\n- [OTFProof] Corrected error in last release, where spaces between\n ligature match string names were omitted.\n- [FontLab macros] Added scripts for testing if the joins in a\n connecting script font design are good.\n- [OTFProof] Fixed crash on proofing or dumping feature file syntax for\n GSUB lookup 5, context lookup. Also fixed rule-generating logic:\n results were previously wrong for proof and for feature-file syntax\n formats. Text dump has always been correct.\n- [OTFProof] Fixed crash when dumping cmap subtables that reference\n virtual GIDs not in the font.\n- [OTFProof] Fixed crash on dumping GSUB lookup type 6 chaining context\n subtable format 2. This has never worked before.\n- [OTFProof] Added demo for SING glyphlet tables, SING and META.\n- [FontLab macros] Added scripts for reading and writing an external\n composites definition text file.\n- [FontLab macros] Added scripts for working with MM fonts.\n\n1.6.6864 (released 2003-10-08)\n------------------------------\n\n- [OTFProof] Fixed crash after dumping contents of ttc fonts (bug\n introduced in version 6792).\n- [OTFProof] Fixed cmap subtable 4 and 2 dumps. Cmap subtable 2 could\n show encoding values for single byte codes which were really the\n first byte of two byte character codes. In Format 4, idDelta values\n were not being added when the glyphindex was derived from the glyph\n index array. These show issues show up in some TTF CJKV fonts.\n\n1.6.6792 (released 2003-09-24)\n------------------------------\n\n- [OTFProof] Fixed crash when proofing fonts with _many_ glyphs.\n- [OTFProof] Restored \"skipping lookup because already seen in\n script/language/feature\" messages to proof file, which was lost in\n version 6604.\n- [OTFProof] Added ability to proof resource fork sfnt fonts from Mac\n OSX command line. It's still necessary to use the SplitForks tool to\n make a data-fork only resource file, but spot/otfproof can now navigate\n in the resulting AppleDouble formatted resource file.\n- [OTFProof] Added support for a text dump of the GDEF table.\n- [OTFProof] Changed title in 'size' feature dump from _Common\n Characters_ to _name table name ID for common Subfamily name for size\n group_.\n- [AGL] Fixed some minor errors in the Adobe Glyph List For New Fonts.\n\n1.6.6629\n--------\n\n- [OTFProof] Fixed bug in dumping KERN table from Mac sfnt-wrapped\n resource fork Type 1 MM font.\n- [OTFProof] Changed the AFM-format dump of kern pairs to list all\n kern pairs for each language/script combination in separate blocks, and\n to eliminate all class kern pairs that are masked by a singleton kern\n pair. The temp buffer file path is now taken from the system C library\n function tmpnam(), and is not necessarily in the current directory.\n\n1.6.6568\n--------\n\n- [OTFProof] Fixed command-line tool to write proof files in same\n location as font, and with font-name prefix, when not auto-spooled for\n printing.\n- [OTFProof] Fixed bug in UI version where proofing GSUB features and\n then GPOS features would cause the GPOS feature proof files to be empty.\n- [makeotf] Fixed heuristics for picking OS/2 weight/width so that a\n font name containing _ultracondensed_ would trigger only setting the\n width, and not the weight as well.\n- Updated Mac OS project files to CodeWarrior 8.\n\n1.6.6564\n--------\n\n- [OTFProof] When dumping data from TTF fonts, now add `@<gid>` to all\n glyph names. This is because the rules for deriving names can lead to\n two glyphs being given the same name.\n- [OTFProof] Fixed bug in proofing GPOS class kern pairs: was generating\n bogus kern pairs and duplicate kern pairs when the coverage format was\n type 2. Affects proof file only, not AFM or feature-format dump.\n- Fixed memory overwrite bug encountered by Goichi and cleaned up various\n memory leaks in the process.\n- [compareFamily] Added report on whether a face contains known std\n charset. Stub implementation - still need list of std charsets.\n- [AFM2Feat] Developed tool to convert an AFM file to a file with\n kern feature `pos` rules.\n\n1.6.6148\n--------\n\n- Rebuilt all libraries for v1.6 release 3/10/2003.\n\n1.6.6048\n--------\n\n- Updated FinishInstall.py to reflect Python 2.2 requirements.\n- Picked up last MakeOTF.pdf editing changes.\n- Fixed bug in GOADB.\n- Updated CID font data in example fonts.\n- Updated FDK release notes and installation instructions.\n- Updated to use the GlyphOrderAndAliasDB file developed while\n converting the Adobe Type Library. Maps all the old glyph names to AGL\n compatible names.\n\n1.6.6020\n--------\n\n- [OTFProof] Fixed crash in handling of VORG with no entries. (Vantive\n 574752)\n- [MakeOTF] Updated documentation: added a description of how all three\n columns of the _GlyphOrderAndAliasDB_ file are used; added a new section\n on the key-value pairs of the font project file; updated the description\n of the FontMenuNameDB file entries; added minor clarifications throughout.\n- Updated _digital_signature_guide.htm_ to match current Verisign website.\n- [Example fonts] Changed the incorrect language keyword TUR to TRK.\n- [Example fonts] Removed the many key/value pairs in the fontinfo files\n that are not used by MakeOTF.\n- [OTFProof/spot] Fixed 3-column handling of GOAADB. (Vantive 569681)\n\n1.6.5959\n--------\n\n- [MakeOTF] Suppressed the \"repeat hint substitution discarded\" message\n from the source file parsing library. These are so common that they\n obscure more useful messages.\n- [MakeOTF] Set as default the option to build chaining contextual\n substitution rules with the incorrect format used by InDesign 2.0 and\n earlier.\n- [MakeOTF] If the option above is set, then MakeOTF will write a name\n ID (1,0,0,5 - \"Version\") which will contain the text string which\n triggers special case code in future Adobe apps so that it will process\n the chaining contextual substitution rules as they were intended. If\n this option is NOT set, the name ID 5 will be written so as to not\n trigger this special case code. The special case treats specially any\n font where the name table name ID (1,0,0,5) exists and either matches,\n\n \"OTF[^;]+;PS[^;]+;Core 1\\.0\\.[23][0-9].*\"\n\n (example: \"OTF 1.006;PS 1.004;Core 1.0.35\")\n or contains,\n\n \"Core[^;]*;makeotf\\.lib\"\n\n (example: \"Core 1.0.38;makeotf.lib1.5.4898\")\n or just,\n\n \"Core;makeotf.lib\"\n\n- [MakeOTF] Turn off by default the option to force the .notdef glyph\n in the output OTF font be an crossed rectangle with an advance width\n of 500.\n- [MakeOTF] Added rule to force the OS/2 WeightClass to always be at\n least 250. Shows error message if set or calculated WeightClass was less\n than this.\n- [MakeOTF] Added test that FSType is set the same in the feature file\n as in source CID font files.\n- [OTFProof] Page layout for CJKV font vertical layout: now writes the\n vertical columns right to left.\n- [OTFProof] When writing vertical features, now shows the advance width\n sign as negative.\n- [OTFProof] When making PostScript proof file, now writes DSC tags with\n correct header and page info.\n- Added _Unicode and Glyph Name_ documentation to the FDK _Technical\n Documentation_ directory, to allow access to this info under the FDK\n license.\n\n1.6.4908\n--------\n\n- [MakeOTF/FEA syntax] Added new vmtx table overrides, to allow setting\n vertical metrics for pre-rotated proportional glyphs that are\n specifically designed and are not simply rotated forms of proportional\n glyphs.\n- [MakeOTF/FEA syntax] Added new OS/2 overrides to set the Unicode and\n Windows codepage range fields: UnicodeRange CodePageRange.\n- [MakeOTF/FEA syntax] Updated language keywords to be consistent with\n OpenType spec, i.e using `dflt` instead of `DFLT`. Expanded section\n explaining use of language and script default keywords. Old keywords\n still work, but cause a warning to be emitted.\n- [FEA syntax] Expanded explanation of kern class pairs and subtable\n breaks.\n- [MakeOTF] Updated the search rules for CID font CMap files to support\n Adobe-Japan2-0, and to look first for UTF-32 CMAP files.\n\n1.5.4987\n--------\n\n- Release to Adobe website Sept 2002.\n\n1.5.4908\n--------\n\n- [MakeOTF] Changed the name table version string to match OT spec 1.4.\n- [CompareFamily] Made it _really_ work with Sept 10th 2002 release of\n Just van Rossum's FontTools library.\n\n1.5.4492\n--------\n\n- [MakeOTF] (hotlib 1.0.35) Fixed the error in processing GSUB\n contextual chaining substitution format 3. This was originally done\n according to the OpenType spec 1.4, which is in error by the\n established implementation of VOLT and Uniscribe. Added option '-fc' to\n cause the library to use the incorrect implementation, according to OT\n spec v1.4. By default, MakeOTF builds the correct contextual format\n per spec v1.5.\n- [MakeOTF] (hotlib 1.0.35) Fixed Unicode cmap bug in assigning the OS/2\n table field usLastCharIndex. This is supposed to be the highest Unicode\n value in the BMP-16 cmap tables. The problem was in the logic by which\n alternates of supplemental plane glyph names were being assigned an EUS\n code, but not added to the BMP-16 Unicode cmap tables, e.g. u1D269.alt.\n When one of these alternates was assigned an EUS value, the\n usLastCharIndex was getting bumped even though the glyph was not being\n added to the BMP-16 cmap tables. Fixed by not incrementing\n usLastCharIndex in this case.\n- [MakeOTF] Fixed bug in applying client-supplied Unicode override\n values. These were omitted if the glyph names in the font were different\n than the final glyph names, as can happen when the client uses the\n getFinalGlyphName call back to supply a glyph production name which is\n different than the final glyph name.\n- [OTFProof] Fixed crash when proofing liga feature in CID font. Also\n fixed crash when proofing charstring with only one operand, e.g\n h/r/vmoveto.\n- [CompareFamily] Updated to use the latest version of Just van Rossum's\n FontTools library, added support for TrueType fonts. Now requires Python\n 2.2.\n- [CompareFamily] Added family test 11: verify that for base font in\n style-linked group, Mac and Windows menu names are the same, and that\n for other fonts in the style linked group, the Mac and Windows menu\n names differ.\n\n1.5.4099\n--------\n\n- External release of FDK 1.5 on Adobe website.\n\n1.5.3849\n--------\n\n- [CompareFamily] Fixed tabular glyph and isFixedPitch test so that they\n are now useful - used to generate far too many false errors.\n- [MakeOTF] Fixed bug in setting Panose values from a feature file\n override. If any value in the Panose value string is 0, all subsequent\n values were also set to 0.\n- [MakeOTF] Fixed bug where glyphs that got renamed were not subjected\n to the ordering specified by the GlyphOrderAndAliasDB file.\n- Added FDK.py file to integrate all tools into a common UI.\n- [OTFCompare] Added use of CFFChecker library for CFF table.\n- [CFFChecker] Added resource fork handling on OSX.\n- [CompareFamily] Added family test 10: if any face in family has a real\n panose value, report derived panose values as an error.\n- [CompareFamily] Fixed bug in comparing copyright notices in family\n test 7: will now really report error only if differs in other than years.\n- [CFFChecker] Added support for multiple input files.\n- [CFFChecker] Added support for resource fork fonts under MacOS 9.\n- Added CFFChecker interface to makeotf.\n- [OTFCompare] Added OSX prompt-based support.\n- Fix R-O-S mapping for CMAP files.\n- Fixed getunicodeCmap() to not hard-wire Adobe-Japan1-3 when processing\n J fonts.\n- [CFFChecker] MacOS 9 version created.\n- Added CFFChecker.\n- [CompareFamily] Fixed to not die on font menu names with non-std ASCII.\n- [OTFProof] Fixed vertical metrics proofing.\n- [MakeOTF] Added warning when truncating OS/2 TypoAscender to force its\n sum with TypoDescender to be equal to the em-box.\n- [MakeOTF] Allow fractional synthetic weight values. These are rounded\n to an integer.\n- [MakeOTF] Changed XUID adding algorithm to NOT add the revision number\n to the XUID array.\n- [MakeOTF] In release mode, add current year to copyright, suppress (c)\n string, and fix spaces around the phrase 'All Rights Reserved'.\n- [MakeOTF] Fixed to permit building a font in release mode with no\n unique ID at all.\n- [MakeOTF] Fixed bad cmap entry offset calculation.\n- [MakeOTF] Fixed for bad cmap table entry.\n\n1.5.1023\n--------\n\n- [MakeOTF] Changed algorithm for adjusting advance width/lsb/rsb of\n non-slanted synthetic glyphs when adding to italic fonts.\n- [MakeOTF] Fixed failure of re-ordering when NOT forcing use of marking\n notdef.\n- [MakeOTF] Fixed interaction between 'Sigma' and synthetic 'summation',\n 'Pi' and 'product'.\n- [spot] Added the option to select which feature to dump in GPOS or\n GSUB=7 dumps.\n- [OTFProof] Added support of TT instructions in compound glyphs.\n- [CompareFamily] Fixed incorrect unwrapping T2 charstring subroutines.\n All previous reports on whether glyphs were hinted should be doubted.\n- [MakeOTF] Tweaked horizontal spacing of upright glyphs in oblique fonts.\n- [MakeOTF] Added support for \"italicangle\", \"width\" and \"weight\" keywords\n in FontMenuNameDB.\n- [SCM/makeotf/typecomp] Fixed Euro-adding bug.\n- [OTFProof] Removed header note \"1000 units/em\" from proofs.\n- [OTFProof] Added support for cmap version 12.\n- [OTFProof] Removed zero padding of CID values from text reports.\n- [OTFProof] Reduced number of warnings about missing characters.\n- [OTFProof] Removed warning when GPOS and GSUB table may be too big,\n as no tools make this error anymore, and it is triggered\n inappropriately when font uses the extension lookup.\n- [OTFProof] Fixed different spacing problem reported. (Vantive 420313)\n- [OTFProof] Fixed so that vertical proofs write from right to left.\n- [MakeOTF] Fixed problem with unspecified CMap files.\n\n1.5.600\n-------\n\n- [CompareFamily] Fixed so that it will not error out when one of the\n Blues arrays is not present.\n- [OTFProof] Fixed so that glyph names for CID fonts print properly.\n- [OTFProof] Fixed problems with compile under SunOS.\n- [MakeOTF] Added MakeOTFScript.py as an example file to edited, in\n order to allow scripting of makeOTF on the Mac (or any other platform).\n Minor changes to MakeOTF.py to fix this.\n- [MakeOTF] Added an option to allow removing deprecated Type 1 operands\n from output font (e.g. `seac` and `dotsection`).\n- [MakeOTF] Added an option to allow adding synthesized glyphs to fonts,\n leveraging a built-in sans and serif multiple master substitution font.\n The source font must contain a 'zero' and a capital 'O'.\n The glyphs that can be synthesized are:\n\n Euro\n Delta\n Omega\n approxequal\n asciicircum\n asciitilde\n at\n backslash\n bar\n brokenbar\n currency\n dagger\n daggerdbl\n degree\n divide\n equal\n estimated\n fraction\n greater\n greaterequal\n infinity\n integral\n less\n lessequal\n litre\n logicalnot\n lozenge\n minus\n multiply\n notequal\n numbersign\n onehalf\n onequarter\n paragraph\n partialdiff\n perthousand\n pi\n plus\n plusminus\n product\n quotedbl\n quotesingle\n radical\n section\n summation\n threequarters\n zero\n\n1.4.583\n-------\n\n- Began tracking files by Perforce changelist label, from the Perforce\n source code management system.\n- Updated compilers to Mac/CodeWarrior 6 Pro, Windows Visual C++ 6.0.\n- Re-organized build directories to have mac/win/sun4 subdirectories.\n- Re-organized shared include files to all be under /Programs/api, with\n non-conflicting names.\n- [Example fonts] Updated MinionPro-Capt: now has correct frac and size\n features.\n- [Example fonts] Added KozMinPro to samples.\n- [MakeOTF] Fixed bug where fontinfo keyword IsStyleBold was ignored for\n CID fonts.\n- [MakeOTF] Fixed Mac build project to load debug and release libraries\n by different names.\n- [MakeOTF] Added feature file support for the \"languagesystem\" statement.\n Note that this entailed removing support for script, language, and named\n lookup statements in the size feature, and removing support for script and\n language statements in the aalt feature. See feature file spec for details.\n- [MakeOTF] More descriptive wording in offset overflow error messages.\n Feature file error handling improved: multiple error messages are emitted\n before failing if possible, instead of just one; final glyph name as well\n as glyph alias (if applicable) reported if not found in font.\n- [MakeOTF] Changed the 14 Corporate Use subarea Unicode values for Zapf\n Dingbats to the proposed UVs in anticipation of their being incorporated\n into the Unicode standard.\n- [MakeOTF] Added FontWorks ('FWKS') to vendor ID list.\n- [MakeOTF] Increased the maximum number of named lookups allowed to 8192.\n- [MakeOTF] Now makes kern and vert features from kern data passed in by\n clients and from V CMap (respectively) only when the HOT_CONVERSION bit is\n set. (Previously, these features were made from the sources mentioned\n above if they weren't already defined in a feature file.)\n- [MakeOTF] Fixed an obscure bug in OS/2.ulUnicodeRange computation: if\n the largest UV in the font were not in any Unicode range recognized by\n hotlib then it was counted as being in the next recognized Unicode range\n after the UV. (No known fonts are affected by this.)\n- [MakeOTF] Forced the OS/2 codepage range bits for Chinese to either\n Simplified or Traditional, based on the Mac cmap script, if it is defined\n as either Simplified or Traditional, and will fall back to the heuristics\n if the script is undefined. If the mac.script is something other than a\n Chinese script, then the OS/2 codepage range bits for Chinese will not\n be set.\n- [OTFCompare] The Python sys.path variable must now contain the path\n to the directory containing the OTFProof library (usually\n _FDK/Tools/Programs/otfproof/exe_). This replaces the hardcoded path\n reference in the OTFCompare.py script. On all platforms, this is done\n by adding the file \"otfproof.pth\", containing the path, to the Python\n installation.\n- [OTFCompare] Fixed a bug that was causing tables smaller than 16 bytes\n to be reported as different\n- [OTFProof] Added new proofing mode to CFF_ to print one glyph per page.\n- [OTFProof] Added new proofing option to suppress file-specific header\n info to facilitate diff-ing of multiple proofs.\n- [OTFProof] Added alphabetical sorting of AFM-style dump.\n- [OTFProof] Fixed bug causing GPOS/GSUB features with digits in their\n names to not appear in the proofing list.\n- [OTFProof] Added support for glyphsize option in CFF_ dumps.\n- [OTFProof] Fixed conflicting include file names; must now specify\n include paths in project file.\n- [OTFProof] Reduced some of the recursion in the subroutinization code\n to reduce stack space requirements.\n- [OTFProof] Fixed support for included feature files in parent folder\n on the Mac.\n\n1.3.2 (2000-10-24)\n------------------\n\n- [OTFProof] Fixed bug where would report error opening Mac TTF suitcase\n font, because data fork was of size 0.\n- [OTFProof] Fixed bug where feature tags containing numbers were filtered\n out of the feature list for proofing.\n- [OTFProof] Fixed bug where baseline was shown incorrectly for CJK fonts\n with baselines other than 120.\n- [OTFProof] Fixed bug where y-placement changes were not shown correctly\n in vertical writing mode proofs.\n\n1.3.1 (2000-08-15)\n------------------\n\n- [MakeOTF] Fixed problem with heuristics for OS/2 codepage range\n settings, for Chinese Simplified vs Traditional.\n- [MakeOTF] Added macro to define MakeOTF version number.\n- [MakeOTF] updated makeotflib help/usage messages: shown when args are\n incorrectly formatted.\n\n- [makeotf] (makeotf/exe/makeotfutils.py)\n\n - added fontinfo list entry for \"Language\".\n - added 'parameter' variable entry for same.\n - increased num values to from 34 to 35.\n - changed initialization of 'parameter' so can more easily figure out\n which index matches which fontinfo field.\n\n- [makeotf] (makeotf/exe/makeotf.py)\n\n - updated version numbers to 1.3.1.\n - added '-cs' and '-cl' options to help.\n - added processing of Language field, to set script and language IDs\n with '-cs' and '-cl' options.\n\n- [makeotf] (makeotf/source/main.c)\n\n - added macro to define MakeOTF version number, used in help message,\n and in client name string for name id 5 \"Version\".\n - added mac_script and mac_language fields to global static 'convert'\n structure.\n - added processing of '-cs' and '-cl' arguments to parse_args().\n - added mac_script and mac_language arguments to call to cbconvert().\n - updated print_usage to match that of makeotf.py.\n - updated the ReadFontInfo() to process new Language field.\n\n- [makeotf] (makeotf/source/cb.c)\n\n - moved initialization (as type unknown) of mac.encoding, mac.script\n and mac.language from cbconvert to cbnew().\n - added setting of mac.script and mac.language to cbconvert(), from\n arguments.\n - added mac_script and mac_language arguments to call to cbconvert().\n\n- [makeotf] (source/includes/cb.h)\n\n - added mac_script and mac_language arguments to call to cbconvert().\n\n- [hotconvlib] (coretype/source/map.c)\n\n - changed logic for setting OS/2 codepage range to set code page to\n Simplified or Traditional Chinese based on mac.script setting;\n fallback on heuristics only if mac.script is not set.\n",
"bugtrack_url": null,
"license": "Apache License, Version 2.0",
"summary": "Adobe Font Development Kit for OpenType",
"version": "4.0.2",
"project_urls": {
"Homepage": "https://github.com/adobe-type-tools/afdko"
},
"split_keywords": [
"font",
"development",
"tools"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "00cf3ef73cbefdf76fe19ed0d67cb84b8d0594b94022e976559b25329176f4ae",
"md5": "71589c0423a6107efa3a02d5817424ac",
"sha256": "f05738d8aa849e49600906908e4c13360282761f3e126ce08984cd228df0b6a9"
},
"downloads": -1,
"filename": "afdko-4.0.2-py3-none-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "71589c0423a6107efa3a02d5817424ac",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 5188895,
"upload_time": "2024-11-06T00:36:10",
"upload_time_iso_8601": "2024-11-06T00:36:10.546358Z",
"url": "https://files.pythonhosted.org/packages/00/cf/3ef73cbefdf76fe19ed0d67cb84b8d0594b94022e976559b25329176f4ae/afdko-4.0.2-py3-none-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a396d8e143b8406d499c953b2aacbcc151c464e667f22176729caecb635da8f5",
"md5": "194f9597a7df289d1396e17f6c52dff4",
"sha256": "8367901a8245e8a3317681378ed55c6a443e2ce550c9fe50ac26080585cc4b6b"
},
"downloads": -1,
"filename": "afdko-4.0.2-py3-none-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "194f9597a7df289d1396e17f6c52dff4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 3122896,
"upload_time": "2024-11-06T00:36:12",
"upload_time_iso_8601": "2024-11-06T00:36:12.482613Z",
"url": "https://files.pythonhosted.org/packages/a3/96/d8e143b8406d499c953b2aacbcc151c464e667f22176729caecb635da8f5/afdko-4.0.2-py3-none-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d809728f4e9b27109f6999381c10c4c24c37e81dfad6c6a6bcc3068abba7f17",
"md5": "577f7b2f1903eb81dd04895af8132257",
"sha256": "f7efcba7ea9f2bbced5e26e89f0880574e6c7d646962e9caea83ec9ab30f9b58"
},
"downloads": -1,
"filename": "afdko-4.0.2-py3-none-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "577f7b2f1903eb81dd04895af8132257",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 5305946,
"upload_time": "2024-11-06T00:36:14",
"upload_time_iso_8601": "2024-11-06T00:36:14.364833Z",
"url": "https://files.pythonhosted.org/packages/2d/80/9728f4e9b27109f6999381c10c4c24c37e81dfad6c6a6bcc3068abba7f17/afdko-4.0.2-py3-none-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4089e6a60791035b40e31506a25f3d14a8451489474abc27560b936f98204dd",
"md5": "d36fb7b4da3e865643480bb03a21f5db",
"sha256": "216dfa168cedc4356d7596941dc24a9687016a1e6d72c8ffc0d7327e3f1c4693"
},
"downloads": -1,
"filename": "afdko-4.0.2-py3-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "d36fb7b4da3e865643480bb03a21f5db",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 4639867,
"upload_time": "2024-11-06T00:36:16",
"upload_time_iso_8601": "2024-11-06T00:36:16.277007Z",
"url": "https://files.pythonhosted.org/packages/a4/08/9e6a60791035b40e31506a25f3d14a8451489474abc27560b936f98204dd/afdko-4.0.2-py3-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8507e9cee87780b86843fbcb29d349e819cf2f8eb2363e08792ffc915b95705",
"md5": "4f4cd22876befd75de02f1fe17e22a1f",
"sha256": "e1a31e871e83dd022635b852297c433c8e9c9d9d4f0c0f634e8d55dde28ad930"
},
"downloads": -1,
"filename": "afdko-4.0.2.tar.gz",
"has_sig": false,
"md5_digest": "4f4cd22876befd75de02f1fe17e22a1f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 17804422,
"upload_time": "2024-11-06T00:36:18",
"upload_time_iso_8601": "2024-11-06T00:36:18.690478Z",
"url": "https://files.pythonhosted.org/packages/c8/50/7e9cee87780b86843fbcb29d349e819cf2f8eb2363e08792ffc915b95705/afdko-4.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-06 00:36:18",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "adobe-type-tools",
"github_project": "afdko",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"requirements": [],
"lcname": "afdko"
}