ryanoasis / nerd-fonts

Iconic font aggregator, collection, & patcher. 3,600+ icons, 50+ patched fonts: Hack, Source Code Pro, more. Glyph collections: Font Awesome, Material Design Icons, Octicons, & more
https://NerdFonts.com
Other
54.83k stars 3.65k forks source link

Victor Mono semibold is missing some icons #809

Closed mrjones2014 closed 2 years ago

mrjones2014 commented 2 years ago

🗹 Requirements

🎯 Subject of the issue

Experienced behavior: Only the "SemiBold" variant is missing some icons

Expected behavior: SemiBold should have all the same icons

Example symbols:

⇣

🔧 Your Setup

★ Screenshots (Optional)

Victor Mono SemiBold:

CleanShot-2022-03-18-at-12 58 23

Victor Mono:

CleanShot-2022-03-18-at-12 58 59

Victor Mono Bold:

CleanShot-2022-03-18-at-12 59 15

mrjones2014 commented 2 years ago

Same issue for the "Medium" variant.

Finii commented 2 years ago

I guess you mean this?

image

This is not a glyph that Nerd Fonts patches in. If it's there or not depends on the original font.

mrjones2014 commented 2 years ago

dang. guess it's time to pick a new font for the hundredth time :/

Finii commented 2 years ago

Or just patch it in yourselves? It's not really hard.

Finii commented 2 years ago

Like, just from the top of my head, approximately

import fontforge

source = fontforge.open('BlahblahBOLD.ttf')
target = fontforge.open('BlahblahMEDIUM.ttf')

source.selection.select(0x21e3)
source.copy()
target.selection.select(0x21e3)
target.paste()

target.generate('new name')
mrjones2014 commented 2 years ago

Oh sick. I might just do that.

github-actions[bot] commented 1 year ago

This issue has been automatically locked since there has not been any recent activity (i.e. last half year) after it was closed. It helps our maintainers focus on the active issues. If you have found a problem that seems similar, please open a new issue, complete the issue template with all the details necessary to reproduce, and mention this issue as reference.