Skip to content

Commit

Permalink
Merge pull request #5 from emmamarichal/main
Browse files Browse the repository at this point in the history
First round!
  • Loading branch information
redstonedesign authored Oct 31, 2024
2 parents f055428 + ece3e98 commit 001636e
Show file tree
Hide file tree
Showing 17 changed files with 3 additions and 102 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ venv
venv-test
build.stamp
proof
fonts
node_modules
package-lock.json
package.json
Expand Down
Binary file added fonts/ttf/Parkinsans-Bold.ttf
Binary file not shown.
Binary file added fonts/ttf/Parkinsans-ExtraBold.ttf
Binary file not shown.
Binary file added fonts/ttf/Parkinsans-Light.ttf
Binary file not shown.
Binary file added fonts/ttf/Parkinsans-Medium.ttf
Binary file not shown.
Binary file added fonts/ttf/Parkinsans-Regular.ttf
Binary file not shown.
Binary file added fonts/ttf/Parkinsans-SemiBold.ttf
Binary file not shown.
Binary file added fonts/variable/Parkinsans[wght].ttf
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-Bold.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-ExtraBold.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-Light.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-Medium.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-Regular.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans-SemiBold.woff2
Binary file not shown.
Binary file added fonts/webfonts/Parkinsans[wght].woff2
Binary file not shown.
File renamed without changes.
104 changes: 3 additions & 101 deletions sources/config.yaml
Original file line number Diff line number Diff line change
@@ -1,105 +1,7 @@
# The configuration for the builder is in YAML format. You can use
# https://www.yamllint.com/ to make sure that your configuration
# file is correctly formatted.

# First we need to define the source files to build. Please list
# all sources in the same family. These are expected to be in the
# sources/ directory, so all paths should be relative to that
# directory.
sources:
- Parkinsans_AW_Google.glyphs
# You don't have to supply the family name, but builds are slightly
# faster if you do.
#familyName: "Parkinsans"

# Next you can supply alternative paths for where you want the
# binaries to live. But we'd recommend you stick to the defaults
# especially if you are planning to upload your font to Google Fonts.

outputDir: ../fonts
# vfDir: $outputDir/variable
ttDir: $outputDir/ttf
otDir: $outputDir/otf
woffDir: $outputDir/webfonts

# The following entries, which are either "true" or "false"
# determine which targets to build. We turn off OTFs for this demo.

buildVariable: false
- Parkinsans.glyphs
buildVariable: true
buildStatic: true
buildTTF: true
buildOTF: false
# buildSmallCap: false

# The next flags control autohinting.
# autohintTTF: true
# autohintOTF: false
# ttfaUseScript: false # Set this to true if your font is not Latin

# The "fix" operation can optionally fix some problems which
# are better dealt with in the font sources. Set this to true if you
# want gftools-fix to automatically fix source problems.
# includeSourceFixes: true

# These options give fine-grained control over how fontmake builds
# the fonts.
# flattenComponents: true
# decomposeTransformedComponents: true
# checkCompatibility: true
# overlaps: booleanOperations
# expandFeaturesToInstances: false
# reverseOutlineDirection: true
# removeOutlineOverlaps: true
# extraFontmakeArgs: ""
# extraVariableFontmakeArgs: ""
# extraStaticFontmakeArgs: ""
# glyphData: GlyphData.xml

# This control how STAT tables are generated. The STAT table is
# specified here as a list of axis names, tags and values. You
# can either map a list to each output VF, or provide a single
# list which is used for all VFs. Note that the build will fail
# if you specify a dictionary which does not contain an entry
# for each VF file built.
# stat:
# RadioCanadaDisplay[wght].ttf:
# - name: Weight
# tag: wght
# values:
# - name: Regular
# value: 400
# linkedValue: 700
# flags: 2
# - name: Medium
# value: 500
# - name: SemiBold
# value: 600
# - name: Bold
# value: 700
# - name: Italic
# tag: ital
# values:
# - name: Roman
# value: 0
# linkedValue: 1
# flags: 2
# RadioCanadaDisplay-Italic[wght].ttf:
# - name: Weight
# tag: wght
# values:
# - name: Regular
# value: 400
# linkedValue: 700
# flags: 2
# - name: Medium
# value: 500
# - name: SemiBold
# value: 600
# - name: Bold
# value: 700
# - name: Italic
# tag: ital
# values:
# - name: Italic
# value: 1
# Configuration file for fontmake
cleanUp: true

0 comments on commit 001636e

Please sign in to comment.