Skip to content

Commit 3008903

Browse files
authored
Merge pull request #1726 from ryanoasis/bugfix/other-weather
Increase weather icons 'other' icons scale
2 parents d3bb7e2 + 25ee48c commit 3008903

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

font-patcher

+9-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from __future__ import absolute_import, print_function, unicode_literals
77

88
# Change the script version when you edit this script:
9-
script_version = "4.14.6"
9+
script_version = "4.14.7"
1010

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

0 commit comments

Comments
 (0)