You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two bugfixes:
1. Allow user to specify new font name. Default if no new name is
specified will be "(old name) Dotted". This is not compliant with
the OFL as it reuses the Reserved Font Name, but it allows you to
get up and running quickly.
2. Fix bug where glyph width wasn't copied to new fonts.
parser.add_argument('-g', '--show-glyph', action="store_true", help="Show the glyph outline")
768
786
parser.add_argument('-r', '--radius', action="store", type=float, default=12, help="Radius of dots, in em units (default 12)")
769
787
parser.add_argument('-s', '--spacing', action="store", type=float, default=6.0, help="Spacing of dots, as a multiple of dot radius (default 6.0 for 600%%)")
788
+
parser.add_argument('-b', '--copy-bearings', action="store_true", help="Copy left/right side bearings of glyphs to new font (default is to calculate them automatically, use this to copy them from the old font instead)")
789
+
parser.add_argument('-n', '--font-name', action="store", type=str, default="", help="New font name (REQUIRED if you plan to distribute this font to others, as the default is to use \"(orignal name) Dotted\", which is NOT OFL-compliant)")
0 commit comments