Skip to content

Commit 87286b5

Browse files
Updated Patcher script to FontPatcher-nf-251701-3273ec0e7b44d8515a25f32717d4e53ed63b9a69 .
Update Script to V 13
1 parent c8b007a commit 87286b5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+169
-57
lines changed

IOSEVKA-Custom-NF/nerdfont.bat

+9-6
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,32 @@
55

66
@echo off
77
setlocal
8+
SET FONTVERNUM=13
9+
810
:: prerequisites in comments
9-
:: tested in Windows11 setup
11+
:: ref https://github.com/be5invis/Iosevka/blob/main/doc/custom-build.md#building
12+
:: tested in Windows11 setup
1013

11-
:: install nodejs, fontforge python 3 as mentioned in
12-
:: - https://github.com/be5invis/Iosevka/blob/main/doc/custom-build.md#building
14+
:: install nodejs, fontforge python 3. Used below versions:
15+
:: node version: v22.12.0
16+
:: Fontforge: https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-Windows.exe
1317

1418
SET IOSEVKA_PATH="%temp%\Iosevka"
1519
SET "PATH=C:\Program Files (x86)\FontForgeBuilds\bin;%~dp0\..\bin;%PATH%"
1620
SET FFPYTHON_EXE="C:\Program Files (x86)\FontForgeBuilds\bin\ffpython.exe"
17-
SET FONTVERNUM=12
1821
SET OUTPATH="D:\Font\Miosevka%FONTVERNUM%"
1922
SET NERDFONT_PATCHER_PATH="%~dp0\..\bin\nerdfont\font-patcher"
2023
SET FONTVER=Miosevka%FONTVERNUM%
2124

22-
rmdir /S /Q %OUTPATH%
25+
rmdir /S /Q %OUTPATH% >nul 2>&1
2326
mkdir %OUTPATH%
2427

2528
echo =======================================================
2629

2730
if exist %IOSEVKA_PATH%\ (
2831
echo Sync Iosevka
2932
cd /d %IOSEVKA_PATH%
30-
rmdir /S /Q "%IOSEVKA_PATH%\dist"
33+
rmdir /S /Q "%IOSEVKA_PATH%\dist" >nul 2>&1
3134
git pull --depth=1
3235
) else (
3336
echo Clone Iosevka

bin/nerdfont/font-patcher

+85-37
Large diffs are not rendered by default.

bin/nerdfont/readme.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,18 @@ For more information see:
1717
## Version
1818
This archive is created from
1919

20-
commit 19753b0d046072359bf6e1a78b175ed21cbd63cf
21-
Author: Fini <ulf.fini.jastrow@desy.de>
22-
Date: Sun Dec 22 23:16:21 2024 +0100
20+
commit ae179415ec9d61063c4ec0074763def226f06e24
21+
Author: Fini Jastrow <ulf.fini.jastrow@desy.de>
22+
Date: Wed Jan 15 16:10:00 2025 +0100
2323
24-
Merge pull request #1768 from hasecilu/fix/devicons_end_codepoint
24+
font-patcher: Allow absolute paths on Windows
2525
26-
fix(font-patcher): update `SymEnd` codepoint for devicons font
26+
[why]
27+
On Windows an absolute path can start with the drive letter followed by
28+
a colon. When we sanitize the pathname the colon is replaced by an
29+
underscore.
30+
31+
[how]
32+
Add special handling on Windows.
33+
34+
Signed-off-by: Fini Jastrow <ulf.fini.jastrow@desy.de>
-5.93 KB
Binary file not shown.
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)