6757 Commits

Author SHA1 Message Date
Khaled Hosny
6bb0545655 [feaLib] Don’t hard-code "subtable" support
Allow for making more lookups support subtabe breaks. Although AFDKO’s
makeotf supports subtable breaks only in pair pos lookups, I believe
that is an implementation limit that we don’t have to follow; all
OpenType lookups has subtables and it should be possible to code that in
the feature files.
2019-03-01 01:48:48 +02:00
Cosimo Lupo
0cc1dda00d grUtils: must import lz4.block
otherwise one gets AttributeError: 'module' object has no attribute 'block'

I noticed this by change. The whole SIL lz4-compressed Glif/Silf tables is still untested...
2019-02-28 11:00:29 -08:00
Cosimo Lupo
a4c6abbbb6 mutator: --no-overlap option doesn't belong to logging group of options
copypasta error
2019-02-28 09:50:58 -08:00
Cosimo Lupo
67d9830978 mutator: add --no-overlap cli option to disable setting OVERLAP glyf flags
can be useful for debugging
2019-02-28 09:46:16 -08:00
Chris Simpkins
16bb3fd605 [varLib.mutator] set OVERLAP_SIMPLE and OVERLAP_COMPOUND by default in instantiateVariableFont (#1518) 2019-02-28 09:34:43 -08:00
Cosimo Lupo
c10cca83b0
Merge pull request #1519 from fonttools/pyup-scheduled-update-2019-02-25
Scheduled weekly dependency update for week 08
2019-02-27 17:22:07 -08:00
Cosimo Lupo
55c7af9e86
Merge branch 'master' into pyup-scheduled-update-2019-02-25 2019-02-27 17:10:00 -08:00
Cosimo Lupo
a288bbf580 requirements.txt: pin munkres to latest py2 compatible version
As of version 1.1.0, munkres no longer supports Python 2.
https://github.com/bmc/munkres

hence it fails on pypy2 on Travis:
https://travis-ci.org/fonttools/fonttools/jobs/498219661

so we tell pyup bot to ignore it.
2019-02-27 17:09:31 -08:00
Cosimo Lupo
fdb3974dd9 add identifier parameter to PointToSegmentPen.addComponent method
'identifier' param is part of the AbstractPointPen interface.
Even though it is unused by the segment pen protocol, the caller may attempt
to pass it by positional argument instead of keyword argument, e.g.
2920ddd07c/Lib/fontMath/mathGlyph.py (L486)

this patch avoids the resulting TypeError exception
2019-02-27 16:30:20 -08:00
Cosimo Lupo
2dfb7bf0ff whitespace [skip ci] 2019-02-27 15:25:59 -08:00
Cosimo Lupo
caa58d86ef
Merge pull request #1521 from anthrotype/ds-normalize-location
[designspaceLib] use axis maps in DesignSpaceDocument.normalizeLocation
2019-02-27 15:25:25 -08:00
Cosimo Lupo
0475246eef designspaceLib_test: fix test_normalization4 expected results 2019-02-27 15:17:24 -08:00
Cosimo Lupo
a979af2019 designspaceLib: use axis maps with normalizeLocation
fixes https://github.com/fonttools/fonttools/issues/1226
2019-02-27 15:17:24 -08:00
Cosimo Lupo
cbb7528395 varLib.plot: fix IndexError when specifying anonymous locations on the commandline
Don't write title with the source's name where we don't have one
2019-02-27 14:08:14 -08:00
Cosimo Lupo
cd58eb3276 README: remove Landscape.io badge
It's no longer working since we moved to the new fonttools organization, and it wasn't that useful after all
(I never used it myself), so I'm removing it from the main page.
2019-02-26 14:23:32 -08:00
pyup-bot
a54caa4975 Update fs from 2.3.1 to 2.4.3 2019-02-25 15:22:07 +00:00
pyup-bot
c46cb4deb5 Update munkres from 1.0.12 to 1.1.2 2019-02-25 15:22:05 +00:00
Michiharu Ariza
c8d4149b32 Fix issue #1516: subset VVAR (#1517)
* fix #issue 1516: subset VOrgMap

* fixed BsbMap as well

* fix bad edit
2019-02-22 19:23:04 -05:00
Nikolaus Waxweiler
1fccfacb3d
Merge pull request #1514 from madig/varLib-load_designspace-add-ital-std-name
[varLib] load_designspace: add standard en name for ital tag
2019-02-22 13:13:27 +00:00
Nikolaus Waxweiler
3cb88ba861 Add NEWS item 2019-02-22 13:02:44 +00:00
Nikolaus Waxweiler
ea24fa8d2a [varLib] load_designspace: add standard en name for ital tag 2019-02-22 11:29:33 +00:00
Cosimo Lupo
67fe931f15 Snippets/svg2glif: import internal copy of glifLib and pointPen modules 2019-02-22 11:08:40 +00:00
Khaled Hosny
cbd0995224 [feaLib] Fix double indentation of subtable
Similar to 05329ed033ae0aa2451272a39ada9aad9f1f5ed7.
2019-02-19 19:00:16 +02:00
Khaled Hosny
1a0aec4c56 [feaLib] Add forceChain to MultipleSubstStatement
For consistency with other substitution statements.
2019-02-19 18:59:58 +02:00
Cosimo Lupo
4e687c8327 Bump version: 3.38.0 → 3.38.1.dev0 2019-02-18 09:57:09 +00:00
Cosimo Lupo
517dde00b9 Release 3.38.0 2019-02-18 09:57:09 +00:00
Cosimo Lupo
9dd01bd001 Update changelog 2019-02-18 09:57:04 +00:00
Read Roberts
7ae6ca8106 [subset CFF] Fix de-subroutinizing bug when subroutines contain hints (#1499)
* [subset CFF] Fix bug in de-subroutinizing when subroutines contain hints, issue 1493

The  code was skipping executing a subroutine if it had already been desubroutinized. The initial set of vstemhm and hstemhm operators and values may be in a subroutine. If a charstring is being executed which calls such subroutines, they still need to be executed in order to count the number of hint values seen, so that the byte length of the hintmask can be calculated.

I fixed this bug by executing subroutines even if they have already been desubroutinized, as long  as  (we don't know yet if we are doing hintmasks) or ( we do need a hintmask, but have not yet seen it).

Clean up code per Cosimo's suggestions:

In arg list for stop_hint_count(), use *args to accept unused argument, rather than a dummy positional argument.

Change stop_hintcount_ops to a from a global variable to a class variable  in _DesubroutinizingT2Decompiler.

Remove un-needed 'return' at line 387

Remove duplicate assignment of cs at line 437

Add patch for the bug where AttributeError is encountered when remove_hints is run after desubroutinize: remove lines deleting the GlobalSubrs for each FontDict. This always needed to be done only once, and is now in any case done in cff.GlobalSubrs.clear(), at the end of the desubroutinize() function.

Changed test case subset_test.py::'test_no_hinting_desubroutinize_CFF' to reference a font with a non-empty GlobalSubr, in order to trigger AttributeError traceback.
2019-02-18 09:43:27 +00:00
Cosimo Lupo
1e48dc5cfc
Merge pull request #1498 from fonttools/pyup-scheduled-update-2019-02-11
Scheduled weekly dependency update for week 06
2019-02-18 09:35:14 +00:00
Cosimo Lupo
da4ea5b906
Merge pull request #1508 from fonttools/svg-shapes
[svgLib] add support for importing shapes into paths
2019-02-15 21:25:47 +00:00
Just van Rossum
9f80939576
Merge pull request #1509 from khaledhosny/pointpen
A couple ufoLib.pointPen → pens.pointPen
2019-02-15 08:03:42 +01:00
Khaled Hosny
e0b517a6e7 A couple ufoLib.pointPen → pens.pointPen 2019-02-14 23:38:11 +02:00
Cosimo Lupo
7a25b3a4e1 factor out _strip_xml_ns into its own function 2019-02-14 17:43:44 +00:00
Cosimo Lupo
dda4c1a41e svgLib: rename PathBuilder's 'pathes' attribute to 'paths' 2019-02-14 17:18:33 +00:00
Cosimo Lupo
a4ed057dd1 minor whitespace 2019-02-14 17:16:26 +00:00
Cosimo Lupo
813826f68c Merge pull request #1500 from rsheeter/master into svg-shapes 2019-02-14 17:11:51 +00:00
Cosimo Lupo
bcd40431d6
Merge pull request #1501 from punchcutter/master
Read special case of contextual positioning
2019-02-14 10:40:54 +00:00
Cosimo Lupo
72e046647b
Add parentheses to clarify operators
Co-Authored-By: punchcutter <punchcutter@gmail.com>
2019-02-13 11:12:21 -08:00
Cosimo Lupo
51a49de3ed
Merge pull request #1476 from chrissimpkins/name-viewer
[Snippets] Add name-viewer.ipynb jupyter notebook
2019-02-13 18:16:23 +00:00
punchcutter
da5b1500b9 Read special case of contextual positioning. 2019-02-12 12:35:34 -08:00
Rod Sheeter
4f318045fd Merge remote-tracking branch 'upstream/master' 2019-02-12 11:53:52 -08:00
Rod Sheeter
416da67fdd Try to follow FT coding style 2019-02-12 11:53:27 -08:00
pyup-bot
33a39a94e1 Update fs from 2.2.1 to 2.3.1 2019-02-11 16:14:10 +01:00
pyup-bot
901eaf41c1 Update scipy from 1.2.0 to 1.2.1 2019-02-11 16:14:08 +01:00
Miguel Sousa
113a4c2585
Merge pull request #1497 from fonttools/fealib-main-tables
[feaLib] Add 'tables' option to __main__.py
2019-02-11 00:41:39 -08:00
Miguel Sousa
17b2108666 [feaLib] Add 'tables' option to __main__.py
Relates to #1159
2019-02-10 22:27:26 -08:00
Khaled Hosny
c3f3606c59 [feaLib] Allow hyphen in glyph class names
Matches AFDKO’s makeotf behaviour.
2019-02-10 14:31:37 +02:00
Rod Sheeter
199aa9e24b Rudimentary decimal support 2019-02-08 14:59:28 -08:00
Rod Sheeter
1e70458679 More simple shape examples 2019-02-08 13:11:33 -08:00
Rod Sheeter
d910ba371b Wire SVGPath to import other shapes 2019-02-08 11:37:00 -08:00