这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions font-patcher
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from __future__ import absolute_import, print_function, unicode_literals

# Change the script version when you edit this script:
script_version = "4.14.6"
script_version = "4.14.7"

version = "3.2.1"
projectName = "Nerd Fonts"
Expand Down Expand Up @@ -1071,14 +1071,21 @@ class font_patcher:
range(0xf095, 0xf0b0 + 1), # moon phases
range(0xf0b7, 0xf0c3 + 1), # wind strengths
[0xf06e, 0xf070 ], # solar/lunar eclipse
[0xf051, 0xf052, 0xf0c9, 0xf0ca, 0xf072 ], # sun/moon up/down
[0xf049, 0xf056, 0xf071, *range(0xf073, 0xf07c + 1), 0xf08a], # other things
# Note: Codepoints listed before that are also in the following range
# will take the scaling of the previous group (the ScaleGroups are
# searched through in definition order).
# But be careful, the combined bounding box for the following group
# _will_ include all glyphs in its definition: Make sure the exempt
# glyphs from above are smaller (do not extend) the combined bounding
# box of this range:
range(0xf000, 0xf0cb + 1), # lots of clouds and other (Please read note above!)
[ *range(0xf000, 0xf041 + 1),
*range(0xf064, 0xf06d + 1),
*range(0xf07d, 0xf083 + 1),
*range(0xf085, 0xf086 + 1),
*range(0xf0b2, 0xf0b6 + 1)
], # lots of clouds (weather states) (Please read note above!)
]}
MDI_SCALE_LIST = None # Maybe later add some selected ScaleGroups

Expand Down