Only patch smaller subset on merging (for now)

This commit is contained in:
Ryan L McIntyre 2021-11-26 09:52:56 -08:00
parent dc3d40ee86
commit 3ee57228a5
2 changed files with 48 additions and 1 deletions

View file

@ -12,7 +12,9 @@ main() {
# # stringified json:
# # printf '%s\n' "${json[@]}" | jq -R . | jq -s . | jq tojson
# echo "${json[@]}"
jq '.fonts | .[] | .folderName' lib/fonts.json | jq -sc
# @TODO uncomment and use FULL set once kinks worked out for Release Candidate Workflow
# jq '.fonts | .[] | .folderName' lib/fonts.json | jq -sc
jq '.fonts | .[] | .folderName' lib/fonts-small-subset.json | jq -sc
}
main; exit

View file

@ -0,0 +1,45 @@
{
"fonts": [
{
"unpatchedName": "3270",
"patchedName": "3270",
"folderName": "3270",
"imagePreviewFont": "3270 Nerd Font",
"linkPreviewFont": "font3270",
"description": "derived from the x3270 font, a modern format of a font with high nostalgic value"
},
{
"unpatchedName": "Agave",
"patchedName": "Agave",
"folderName": "Agave",
"imagePreviewFont": "Agave Nerd Font",
"linkPreviewFont": "agave",
"description": "A small, monospace, outline font that is geometrically regular and simple"
},
{
"unpatchedName": "Cascadia Code",
"patchedName": "Caskaydia Cove",
"folderName": "CascadiaCode",
"imagePreviewFont": "Caskaydia Cove Nerd Font",
"linkPreviewFont": "cascadia-code",
"description": "A fun, new monospaced font that includes programming ligatures and is designed to enhance the modern look and feel of the Windows Terminal"
},
{
"unpatchedName": "Hack",
"patchedName": "Hack",
"folderName": "Hack",
"imagePreviewFont": "Hack Nerd Font",
"linkPreviewFont": "hack",
"description": "dotted zero, short descenders, expands upon work done for Bitstream Vera & DejaVu, legible at common sizes"
},
{
"unpatchedName": "ShareTechMono",
"patchedName": "ShureTechMono",
"folderName": "ShareTechMono",
"imagePreviewFont": "ShureTechMono Nerd Font",
"linkPreviewFont": "share-tech",
"description": "dotted zeros, distinguishable 1 and l, curved and straight character lines"
}
]
}