|
6 | 6 | from __future__ import absolute_import, print_function, unicode_literals
|
7 | 7 |
|
8 | 8 | # Change the script version when you edit this script:
|
9 |
| -script_version = "4.14.6" |
| 9 | +script_version = "4.14.7" |
10 | 10 |
|
11 | 11 | version = "3.2.1"
|
12 | 12 | projectName = "Nerd Fonts"
|
@@ -1071,14 +1071,21 @@ class font_patcher:
|
1071 | 1071 | range(0xf095, 0xf0b0 + 1), # moon phases
|
1072 | 1072 | range(0xf0b7, 0xf0c3 + 1), # wind strengths
|
1073 | 1073 | [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 |
1074 | 1076 | # Note: Codepoints listed before that are also in the following range
|
1075 | 1077 | # will take the scaling of the previous group (the ScaleGroups are
|
1076 | 1078 | # searched through in definition order).
|
1077 | 1079 | # But be careful, the combined bounding box for the following group
|
1078 | 1080 | # _will_ include all glyphs in its definition: Make sure the exempt
|
1079 | 1081 | # glyphs from above are smaller (do not extend) the combined bounding
|
1080 | 1082 | # 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!) |
1082 | 1089 | ]}
|
1083 | 1090 | MDI_SCALE_LIST = None # Maybe later add some selected ScaleGroups
|
1084 | 1091 |
|
|
0 commit comments