You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MaterialDesignIcons seems to have moved their icons from the Private Use Area (U+E000..U+F8FF) to the Supplementary Private Use Area-A (U+F0000..U+FFFFD).
Iconize internally uses a lookup table where type "char" is used to store the unicode character. This unfortunately doesn't work for "Supplementary Private Use Area-A" as it requires either UTF-16 surrogate pairs or UTF-32.
Easiest fix is likely to simply use "string" instead of "char" for storing the unicode character of the icon.
The text was updated successfully, but these errors were encountered:
As you mentioned in #178 you converted the font so that it uses the PUA blocks, so that it can be used in this library without the need for changing char to string. How can I convert the latest font of material design icons (v5.8.55) by myself, like you did for version 5.1.45?
MaterialDesignIcons seems to have moved their icons from the Private Use Area (U+E000..U+F8FF) to the Supplementary Private Use Area-A (U+F0000..U+FFFFD).
Iconize internally uses a lookup table where type "char" is used to store the unicode character. This unfortunately doesn't work for "Supplementary Private Use Area-A" as it requires either UTF-16 surrogate pairs or UTF-32.
Easiest fix is likely to simply use "string" instead of "char" for storing the unicode character of the icon.
The text was updated successfully, but these errors were encountered: