Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for Version 1.086 #531

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p align="center">
<strong>Want (infrequent) updates on new fonts from Arrow Type?</strong>
<strong>Want (infrequent) updates on new fonts from ArrowType?</strong>
</p>
<p align="center">
💌 <strong>Sign up for the <a href="https://arrowtype.com/" target="_blank">Arrow Type newsletter!</a></strong> 💌
💌 <strong>Sign up for the <a href="https://arrowtype.com/" target="_blank">ArrowType newsletter!</a></strong> 💌
</p>
<p align="center">
📝 <strong>Follow <a href="https://instagram.com/arrowtype" target="_blank">@ArrowType</a> on Instagram!</strong> 📝
Expand Down Expand Up @@ -302,7 +302,7 @@ Before beginning, change your working directory to `mastering`.
cd mastering
```

`python build.py --files` is the first step. This will generate all the files needed for building the variable and static fonts. You will likely want to give the font a version number with this command (`python build.py --version 1.085 --files`). To prep only files for the variable font, use `python build.py --varfiles`, or to prep only files for the static fonts, use `python build.py --statfiles`.
`python build.py --files` is the first step. This will generate all the files needed for building the variable and static fonts. You will likely want to give the font a version number with this command (`python build.py --version 1.086 --files`). To prep only files for the variable font, use `python build.py --varfiles`, or to prep only files for the static fonts, use `python build.py --statfiles`.

After the files have been generated (do note that the static instances take a bit of time to generate), you will want to look at the `mastering/build/static/CFF/checkoutlines.txt` file. This is the report (edited to remove issues that do not need attention) from [checkoutlinesUFO](https://adobe-type-tools.github.io/afdko/AFDKO-Overview.html#checkoutlinesufo). Issues found in this report should be cleaned up in the static UFOs. Many issues are due to overlap removal. Nothing is perfect, overlap removal algorithms included.

Expand All @@ -312,7 +312,7 @@ To build the variable font, run:

```bash
# activate venv, install dependencies, cd mastering
version=1.085 # (replace version number)
version=1.086 # (replace version number)
python build.py --varfiles --version $version
python build.py --variable --version $version
```
Expand All @@ -323,7 +323,7 @@ To build all the static fonts, run:

```bash
# activate venv, install dependencies, cd mastering
version=1.085 # (replace version number)
version=1.086 # (replace version number)
python build.py --statfiles --version $version
python build.py --static --version $version
```
Expand All @@ -334,7 +334,7 @@ If you want to build all of the sources, fonts, and WOFF2 versions of all of the

```bash
# activate venv, install dependencies, cd mastering
python build.py --all --version 1.085 # (replace version number)
python build.py --all --version 1.086 # (replace version number)
```

**Get notifications (Mac only)**
Expand All @@ -343,7 +343,7 @@ Add option `--pync` (`-p` for short) to the script call to get Mac notifications

```bash
# activate venv, install dependencies, cd mastering
python build.py --all --pync --version 1.085 # (replace version number)
python build.py --all --pync --version 1.086 # (replace version number)
```

### Making a GitHub release
Expand All @@ -354,7 +354,7 @@ First, build fonts with the mastering flow above. Then:
# navigate to the root directory of the project, then...

# update to latest font build directory
fontDir="fonts_1.085"
fontDir="fonts_1.086"
src/build-scripts/make-release/00-prep-release.sh $fontDir
```

Expand Down
Loading