summaryrefslogtreecommitdiff
path: root/scripts/lib
Commit message (Collapse)AuthorAge
* Correct family and style data in name table.James Godfrey-Kittle2015-06-10
| | | | | | | | | | This uncomments some code which distinguishes between Regular/Bold and other weights when setting the UFOs' styleMapFamilyName attribute, which is used by the FDK to set the output OTFs' family names (this association is documented here: http://unifiedfontobject.org/versions/ufo2/fontinfo.html). It's not clear why this code was commented out in the first place. Part of #37
* Correctly copy FGlyphs to RoboFab RGlyphs.James Godfrey-Kittle2015-05-13
| | | | This caused some glyph mixes to fail.
* Copy kerning info when copying FFonts.James Godfrey-Kittle2015-05-12
| | | | This affects the creation of condensed masters, without it they had no kerning info.
* Don't remove overlaps while italicizing glyphs.James Godfrey-Kittle2015-05-12
| | | | This was causing problems with Thin Italic font generation.
* Merge pull request #34 from google/anchor-fixJames Godfrey-Kittle2015-05-11
|\ | | | | Fix bug causing inaccurate anchor coordinates.
| * Use RGlyph.move() to shift composite glyphs.James Godfrey-Kittle2015-05-08
| | | | | | | | This has now been fixed upstream.
| * Correctly shift composite glyphs with offsets.James Godfrey-Kittle2015-05-07
| | | | | | | | Ideally we could call RGlyph.move(offset, anchors=False), but we have to bring back "shiftGlyphMembers" from the original toolchain because RGlyph.move does not work as documented.
| * Infer composite glyphs' unicode values from names.James Godfrey-Kittle2015-05-01
| |
| * Remove some checks when adding anchors.James Godfrey-Kittle2015-05-01
| | | | | | | | These issues are solved with the updated anchor resources.
| * Set unicode values of generated glyphs earlier.James Godfrey-Kittle2015-04-30
| | | | | | | | This is necessary for correctly adding anchors in the immediately following code.
| * Fix bug causing inaccurate anchor coordinates.James Godfrey-Kittle2015-04-30
| | | | | | | | I introduced this bug in aa285dc861fb8a5b5083e1de3bb00ea1ef658cb1 while adapting updated scripts from Paratype.
* | Remove feaTools adaptions which are now upstream.James Godfrey-Kittle2015-04-29
|/
* More descriptive variable names in kerning.py.James Godfrey-Kittle2015-04-27
|
* Clean up kern feature generation a bit.James Godfrey-Kittle2015-04-22
|
* Clean up anchor addition code, include comments.James Godfrey-Kittle2015-04-22
|
* Make glyph anchor info prettier.James Godfrey-Kittle2015-04-22
|
* Don't check for invalid mark lookups.James Godfrey-Kittle2015-04-20
| | | | With anchors fixed, we shouldn't need this check. Rollback of 55519e636b119dcdd91319364c572d3550050a43.
* Re-add dropped anchors to glyphs during build.James Godfrey-Kittle2015-04-20
| | | | This is a temporary workaround until VFB to UFO conversion is fixed.
* Break up kerning subtable by actual rule counts.James Godfrey-Kittle2015-04-20
| | | | This should avoid segmentation faults from makeotf even as we add more kerning rules. Necessary for the upcoming missing-anchor fix.
* Exit after failing to generate OTF.James Godfrey-Kittle2015-04-17
| | | | Part of #3
* Minor style modification in fontbuild/Build.py.Roozbeh Pournader2015-04-17
|
* Don't try generating TTF if OTF generation fails.James Godfrey-Kittle2015-04-17
| | | | Closes #3
* Clear base font's kerning when interpolating.James Godfrey-Kittle2015-04-16
| | | | This matches the behavior of the old toolchain. The result should only contain kern rules for pairs present in both masters.
* Change default arg value for type consistency.James Godfrey-Kittle2015-04-16
|
* Remove debugging code.James Godfrey-Kittle2015-04-16
|
* Generate kern feature ourselves.James Godfrey-Kittle2015-04-16
|
* Respond to comments on rc2d741006986.James Godfrey-Kittle2015-04-16
|
* Move v2 output from out/v2/ to out/.James Godfrey-Kittle2015-04-16
| | | | Rollback changes from ra92a8e3146bd.
* Remove unused createFEA flag.James Godfrey-Kittle2015-04-16
| | | | OTF syntax files are created automatically with UFOs. So this doesn't make sense as a separate option.
* Add license files and headers.James Godfrey-Kittle2015-04-16
|
* Remove booleanOperations from repo.James Godfrey-Kittle2015-04-16
| | | | This was included mostly because it's not convenient to install (no setup.py). But that can be fixed upstream.
* Use os.path.join to produce output paths.James Godfrey-Kittle2015-04-16
|
* Update scripts to use external kerning rules.James Godfrey-Kittle2015-04-16
|
* Support pair positioning rules.James Godfrey-Kittle2015-04-16
|
* Make sure mark feature values are ints.James Godfrey-Kittle2015-04-16
| | | | This is necessary when a font has been italicized, and its anchors have been transformed.
* Handle missing anchors when building mark feature.James Godfrey-Kittle2015-04-16
|
* Revise updated scripts to run without FontLab.James Godfrey-Kittle2015-04-16
|
* Update scripts based on 03/31 delivery.James Godfrey-Kittle2015-04-16
|
* Handle new contextual feature rules.James Godfrey-Kittle2015-04-16
| | | | This depends on our own version of feaTools, which is a bit hacky. Ideally we should use something more robust that feaTools (e.g. a full feature syntax compiler). This also adds a message about the feaTools dependency to the readme, which I forgot about before.
* Add support for table parsing in feature syntax.James Godfrey-Kittle2015-04-16
|
* Add some notes about booleanOperations library.James Godfrey-Kittle2015-04-16
|
* Add mark, mkmk features before generating fonts.James Godfrey-Kittle2015-04-16
| | | | No idea why we weren't doing this before -- these features are necessary for proper rendering.
* Response to comment on r292d0b238dde.James Godfrey-Kittle2015-04-16
|
* Move removeGlyphOverlap to main build script.James Godfrey-Kittle2015-04-16
| | | | Another small function which probably does not warrant a separate module.
* Use booleanOperations for overlap removal.James Godfrey-Kittle2015-04-16
|
* Add booleanOperations library to scripts/lib/.James Godfrey-Kittle2015-04-16
| | | | This library will be used for overlap removal. We include it here for now because it doesn't have a setup.py.
* Make feature creation compatible with features.py.James Godfrey-Kittle2015-04-16
| | | | Specifically the "mark" and "mkmk" features.
* Use feaTools in features.py.James Godfrey-Kittle2015-04-16
| | | | Use an existing library for parsing OpenType features, which should be more robust (though this library does have some syntax parsing issues, addressed in our code).
* Add the correct metadata to italic fonts.James Godfrey-Kittle2015-04-16
|
* Move saveOTF module into main build script.James Godfrey-Kittle2015-04-16
| | | | saveOTF has become small enough that it probably shouldn't be a separate module.