summaryrefslogtreecommitdiff
path: root/Base/res/fonts/LizaBold36.font
AgeCommit message (Collapse)Author
2021-10-02Base: Add glyphs for the U+20AC euro sign to all bitmap fontsnetworkException
2021-09-24Base: Convert BitmapFonts to new headerthankyouverycool
And add new italic font, Serifina.
2021-09-21Base: Add 0x00A0 (non-breaking space) glyph to all our bitmap fontsAndreas Kling
This is frequently used in web content ( ) so this change makes us display it properly as whitespace. :^)
2021-09-19Base: Convert fonts to new header formatthankyouverycool
Type has been replaced with a bit mask size whose value corresponds to the number of u8 ranges of 256 characters per bit. Given 0x110000 possible glyphs in Unicode 13.0, its maximum size is currently 544 and can be expanded if needed. Adds the 0xFFFD replacement character to Csilla/KaticaRegular fonts and fixes dozens of alignment errors in the Latin character sets.
2021-05-24LibGfx+Base: Tweak bitmap fonts to ensure glyph data is 4-byte alignedAndreas Kling
When building userland with UBSAN enabled (#7434), we were getting spammed to death by unaligned access errors. Fix these by adding 2 bytes of padding to the FontFileHeader struct, and adjusting all our font files to match the new format. :^)
2020-10-25LibGfx+FontEditor+Fonts: Add family, size and weight metadata to fontsAndreas Kling
This makes finding fonts from the same family much less difficult. :^)
2020-10-25Fonts: Rename font files consistentlyAndreas Kling
Font files are now all named like this: <Family><Weight><Size>.font This will make it much easier/sane to perform font lookup.