├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTORS ├── LICENSE ├── PLAN.md ├── README.md ├── REFACTOR_FILELIST.txt ├── REFACTOR_SPLITTING.md ├── TODO.md ├── _config.yml ├── app ├── OTFeatureFreezer.py ├── dmgbuild_settings.py ├── featfreeze.iss ├── macdeploy ├── pyinstaller-mac.spec └── pyinstaller-win.spec ├── download └── OTFeatureFreezer.dmg ├── llms.txt ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── src └── opentype_feature_freezer │ ├── __init__.py │ └── cli.py └── tests ├── conftest.py ├── data ├── EmptyNameID16_OTF.ttx ├── EmptyNameID16_TTF.ttx ├── Empty_OTF.ttx ├── Empty_TTF.ttx ├── OpenSans-Bold.subset.ttx ├── OpenSans-Bold.subset_LICENSE.txt └── SubGlyphsWithoutUnicode.ttx ├── test_freeze.py └── test_rename.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/LICENSE -------------------------------------------------------------------------------- /PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/PLAN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/README.md -------------------------------------------------------------------------------- /REFACTOR_FILELIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/REFACTOR_FILELIST.txt -------------------------------------------------------------------------------- /REFACTOR_SPLITTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/REFACTOR_SPLITTING.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/TODO.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/_config.yml -------------------------------------------------------------------------------- /app/OTFeatureFreezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/OTFeatureFreezer.py -------------------------------------------------------------------------------- /app/dmgbuild_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/dmgbuild_settings.py -------------------------------------------------------------------------------- /app/featfreeze.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/featfreeze.iss -------------------------------------------------------------------------------- /app/macdeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/macdeploy -------------------------------------------------------------------------------- /app/pyinstaller-mac.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/pyinstaller-mac.spec -------------------------------------------------------------------------------- /app/pyinstaller-win.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/app/pyinstaller-win.spec -------------------------------------------------------------------------------- /download/OTFeatureFreezer.dmg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/download/OTFeatureFreezer.dmg -------------------------------------------------------------------------------- /llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/llms.txt -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/opentype_feature_freezer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/src/opentype_feature_freezer/__init__.py -------------------------------------------------------------------------------- /src/opentype_feature_freezer/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/src/opentype_feature_freezer/cli.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/EmptyNameID16_OTF.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/EmptyNameID16_OTF.ttx -------------------------------------------------------------------------------- /tests/data/EmptyNameID16_TTF.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/EmptyNameID16_TTF.ttx -------------------------------------------------------------------------------- /tests/data/Empty_OTF.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/Empty_OTF.ttx -------------------------------------------------------------------------------- /tests/data/Empty_TTF.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/Empty_TTF.ttx -------------------------------------------------------------------------------- /tests/data/OpenSans-Bold.subset.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/OpenSans-Bold.subset.ttx -------------------------------------------------------------------------------- /tests/data/OpenSans-Bold.subset_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/OpenSans-Bold.subset_LICENSE.txt -------------------------------------------------------------------------------- /tests/data/SubGlyphsWithoutUnicode.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/data/SubGlyphsWithoutUnicode.ttx -------------------------------------------------------------------------------- /tests/test_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/test_freeze.py -------------------------------------------------------------------------------- /tests/test_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twardoch/fonttools-opentype-feature-freezer/HEAD/tests/test_rename.py --------------------------------------------------------------------------------