Yanone

Results 92 comments of Yanone

@aminabedi68 I looked at the Fontbakery results. Please focus on the glyph coverage for now. The rest are details we'll iron out once Google Fonts decides to onboard it. As...

Hi. I'm currently onboarding Tilt to Google Fonts, so we've forked the repo here: https://github.com/googlefonts/Tilt-Fonts I could theoretically make static fonts, but I need to ask how you would like...

@deivid-rodriguez @abdulapopoola Hi. Is anything planned for this issue? We're suffering from this bug and need to increase the lower bound (actually, just standalone) of a `>=` dependency notation in...

FWIW, here's an updated script that should work with almost any Italic VF. (The italicAngle is font-specific, tho). ```python import sys import math from fontTools.ttLib import TTFont font = TTFont(sys.argv[-2])...

Update: In the above code snipped, the italic angle got abs()'d, so it assumes right-leaning fonts. This is correct: ```python font["hhea"].caretSlopeRun = round(math.tan(math.radians(-font["post"].italicAngle)) * font["head"].unitsPerEm) ```

Yeah, why stop at 2D graphics? Within the hour people will want fonts for AR/VR environments. Light sources can be set per glyph for single glyphs such as emoji, or...

Update: I got as far as finding _a_ `connect_qtconsole()` [here](https://github.com/ipython/ipykernel/blob/fc51ba4cccbc3b56323f9fc75f0ba631916812d9/ipykernel/connect.py#L80). But it calls `from IPython.qt.console import qtconsoleapp`, which in turn doesn't exist anymore :/

Thank you @guidoferreyra I've updated the rationale like this: ``` Legacy accents should not be used in accented glyphs. The use of legacy accents in accented glyphs breaks the mark...

I’m not sure I fully agree. Let's take it apart. This check emits three different FAILs: 1. `legacy-accents-component` FAILs when legacy accents are detected in composites. 2. `legacy-accents-width` FAILs when...

Also, a font could have no anchors whatsoever in legacy accents, with those marks be used as pre-composed components, and with legacy accents still having positive width when used standalone....