Skip to content

Commit

Permalink
Merge pull request #473 from arrowtype/issue-472
Browse files Browse the repository at this point in the history
Several tiny fixes for release v1.079
  • Loading branch information
arrowtype authored Aug 10, 2021
2 parents 728ced9 + 8653b54 commit 3c48481
Show file tree
Hide file tree
Showing 466 changed files with 428 additions and 4,336 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
"python.formatting.autopep8Args": ["--ignore W191"],
"python.formatting.blackArgs": ["--line-length=100"],
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": ["column_limit=100"]
"python.formatting.yapfArgs": [
"column_limit=100"
],
"python.pythonPath": "venv/bin/python"
}
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ To build the variable font, run:

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

```bash
# activate venv, install dependencies, cd mastering
version=1.078 # (replace version number)
version=1.079 # (replace version number)
python build.py --statfiles --version $version
python build.py --static --version $version
```
Expand All @@ -310,7 +310,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.078 # (replace version number)
python build.py --all --version 1.079 # (replace version number)
```

**Get notifications (Mac only)**
Expand All @@ -319,7 +319,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.078 # (replace version number)
python build.py --all --pync --version 1.079 # (replace version number)
```

### Making a GitHub release
Expand All @@ -330,7 +330,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.078"
fontDir="fonts_1.079"
src/build-scripts/make-release/00-prep-release.sh $fontDir
```

Expand Down
Loading

0 comments on commit 3c48481

Please sign in to comment.