From d01ec0886ad1a87a386211c6ebd0f740b709a44f Mon Sep 17 00:00:00 2001 From: Fini Jastrow Date: Thu, 13 Feb 2020 07:48:08 +0100 Subject: [PATCH] Rename collection of extra added glyphs [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 --- .github/workflows/generate-fonts.yml | 6 +++--- extract-math-glyphs => extract-extra-glyphs | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename extract-math-glyphs => extract-extra-glyphs (65%) diff --git a/.github/workflows/generate-fonts.yml b/.github/workflows/generate-fonts.yml index d9aa13a..7142c84 100644 --- a/.github/workflows/generate-fonts.yml +++ b/.github/workflows/generate-fonts.yml @@ -26,10 +26,10 @@ 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" \ @@ -37,7 +37,7 @@ jobs: --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" \ diff --git a/extract-math-glyphs b/extract-extra-glyphs similarity index 65% rename from extract-math-glyphs rename to extract-extra-glyphs index 8375211..d26ede8 100644 --- a/extract-math-glyphs +++ b/extract-extra-glyphs @@ -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");