Tal Leming
Tal Leming
Add `/Skateboard Previews` to the default ignore settings.
When the window opens, check to see if there is a font open in RoboFont that is in the root of a known project. If so, select that project. If...
Instead of the notes file, write a log. Format sketch: ``` Commit Message: This is blah blah blah. Added Files: foo.txt Removed Files: bar.txt Changed Files: blob.png Changed Fonts: something.ufo...
- optionally pass a GLIF vendors to `diffFont` and compare the raw text before getting into the object. if the text matches, don't parse. if the text doesn't match, parse...
Allow users to define pre and post script execution for initialize and commit. I need to figure out if this should be definable at the project level, extension level or...
[A discussion about this on the RoboFont Discord.](https://discord.com/channels/1052516637489766411/1055056206735101993/1084809259923017769) ```python font = RFont(showInterface=False) font.groups["public.kern1.Y"] = ["Y", "Y.alt"] font.groups["public.kern2.Z"] = ["Z", "Z.alt"] font.kerning["A", "B"] = 1 font.kerning["public.kern1.Y", "public.kern2.Z"] = 2 print(f"get: A...
Probably right here: https://github.com/robotools/fontParts/blob/master/Lib/fontParts/world.py#L681
See the discussion here: https://discord.com/channels/1052516637489766411/1062341829376364575/1062699552026673222
This addresses #145. Closing the test window in the issue goes from taking 0.11 seconds to 0.01 seconds.
I'm trying to create a UFOOperator on the fly using fonts that are open in RoboFont. I'm adding sources with `addSource` with the font object set in the SourceDescriptor. However,...