Skip to content

Commit

Permalink
Rename collection of extra added glyphs
Browse files Browse the repository at this point in the history
[why]
Adding some glyphs from Hack or any other font into Delugia
can be quite useful. But if these glyphs are not math glyphs
the names used can be confusing.

[how]
Rename *math* to *extra*

Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
  • Loading branch information
Finii committed Feb 13, 2020
1 parent 39092d2 commit d01ec08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generate-fonts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,18 +26,18 @@ jobs:
- name: Install configparser
run: pip install configparser
- name: Extract additional powerline glyphs
run: fontforge -lang=ff -script extract-math-glyphs
run: fontforge -lang=ff -script extract-extra-glyphs
- name: Build Powerline
run: |
fontforge -script font-patcher --careful --powerline --custom SomeMathSymbols.otf \
fontforge -script font-patcher --careful --powerline --custom SomeExtraSymbols.otf \
--no-progressbars --mono Cascadia.ttf | tee process.log
git describe --always --tags | xargs fontforge rename-font --input Cas*\ Nerd\ Font\ Mono.ttf \
--output "Delugia Nerd Font.ttf" \
--name "Delugia Nerd Font" \
--version
- name: Build Complete
run: |
fontforge -script font-patcher --careful -c --custom SomeMathSymbols.otf \
fontforge -script font-patcher --careful -c --custom SomeExtraSymbols.otf \
--no-progressbars --mono Cascadia.ttf | tee process_full.log
git describe --always --tags | xargs fontforge rename-font --input Cas*\ Nerd\ Font\ Complete\ Mono.ttf \
--output "Delugia Nerd Font Complete.ttf" \
Expand Down
2 changes: 1 addition & 1 deletion extract-math-glyphs → extract-extra-glyphs
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Open("src/glyphs/Hack-Regular.ttf");
SelectAll();
SelectFewer(0u2262,0u2263);
Clear();
Generate("src/glyphs/SomeMathSymbols.otf");
Generate("src/glyphs/SomeExtraSymbols.otf");

0 comments on commit d01ec08

Please sign in to comment.