Skip to content

Commit f1e50af

Browse files
committed
Update font family name from "Rec Mono" to "Rec Code," re: #27
1 parent 4f5c38d commit f1e50af

10 files changed

Lines changed: 14 additions & 14 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pip install -r requirements.txt # install dependencies
7878

7979
This file uses YAML. Hopefully, it is fairly self-explanatory. If not, file an issue and someone will hopefully help out!
8080

81-
First, specify the family name you want (e.g. `Rec Mono Custom`).
81+
First, specify the family name you want (e.g. `Rec Code Custom`).
8282

8383
Then, specify axis values you want for Regular, Italic, Bold, & Bold Italic fonts.
8484

@@ -121,7 +121,7 @@ source venv/bin/activate # activate the virtual environment if you haven
121121
python3 scripts/instantiate-code-fonts.py
122122
```
123123

124-
It will build & output fonts to a folder like `RecMono-Custom` (this is affected by whatever custom name you give fonts in config.yaml).
124+
It will build & output fonts to a folder like `RecCode-Custom` (this is affected by whatever custom name you give fonts in config.yaml).
125125

126126
#### 3. Install the fonts and activate the ligatures!
127127

config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configure your own custom Rec Mono for Code font
1+
# Configure your own custom Rec Code for Code font
22

33
#
44
# /$$$$$$ /$$
@@ -16,8 +16,8 @@
1616
# -----------------------------------------------------------------------------
1717
# Family Name
1818

19-
# The name you want after "Rec Mono" in your custom fonts.
20-
# Example: "Custom" will yield the family "Rec Mono Custom".
19+
# The name you want after "Rec Code" in your custom fonts.
20+
# Example: "Custom" will yield the family "Rec Code Custom".
2121
# Keep under 13 characters in length to avoid potential OS bugs.
2222

2323
Family Name: Custom

premade-configs/casual.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for Rec Mono Casual
1+
# Configuration for Rec Code Casual
22
# Here as an example, or to tweak & use if you wish to
33
# See README for details.
44

premade-configs/duotone.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for Rec Mono Duotone
1+
# Configuration for Rec Code Duotone
22
# Here as an example, or to tweak & use if you wish to
33
# See README for details.
44

premade-configs/linear.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for Rec Mono Linear
1+
# Configuration for Rec Code Linear
22
# Here as an example, or to tweak & use if you wish to
33
# See README for details.
44

premade-configs/sans-duo.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for Rec Mono Sans Duo
1+
# Configuration for Rec Code Sans Duo
22
# Here as an example, or to tweak & use if you wish to
33
# See README for details.
44

premade-configs/semicasual.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Configuration for Rec Mono SemiCasual
1+
# Configuration for Rec Code SemiCasual
22
# Here as an example, or to tweak & use if you wish to
33
# See README for details.
44

scripts/dlig2calt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
A script to change dlig features to calt features,
3-
to make code ligatures on by default in Rec Mono for Code.
3+
to make code ligatures on by default in Rec Code for Code.
44
"""
55

66
from fontTools import ttLib

scripts/instantiate-code-fonts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ def setFontNameID(font, ID, newName):
7676
oldName = "Recursive"
7777

7878
def splitFont(
79-
outputDirectory=f"RecMono{fontOptions['Family Name']}".replace(" ",""),
80-
newName="Rec Mono",
79+
outputDirectory=f"RecCode{fontOptions['Family Name']}".replace(" ",""),
80+
newName="Rec Code",
8181
):
8282

8383
# access font as TTFont object

scripts/mergePowerlineFont.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
Script to include PowerLine glyphs by merging powerline-only TTFs with Rec Mono TTFs.
2+
Script to include PowerLine glyphs by merging powerline-only TTFs with Rec Code TTFs.
33
More background at https://github.com/arrowtype/recursive/issues/351
44
55
Work in progress.

0 commit comments

Comments
 (0)