diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2022-03-20 13:03:18 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2022-03-20 13:03:18 -0400 |
commit | 304bab2aced9cae51d2e4c09f3d9e06c66ff175d (patch) | |
tree | 8397f81b893feb1cf624eee49c4fb01297aa08ad /vendor/SDL2_ttf/CHANGES.txt | |
parent | ba350484072c78e5e1a765370c22dbd76474aa39 (diff) | |
download | ether-304bab2aced9cae51d2e4c09f3d9e06c66ff175d.tar.gz ether-304bab2aced9cae51d2e4c09f3d9e06c66ff175d.tar.bz2 ether-304bab2aced9cae51d2e4c09f3d9e06c66ff175d.zip |
we can build a window app!
build type must be set to Release or it's horribly slow, and fullscreen does not work
Diffstat (limited to 'vendor/SDL2_ttf/CHANGES.txt')
-rw-r--r-- | vendor/SDL2_ttf/CHANGES.txt | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/vendor/SDL2_ttf/CHANGES.txt b/vendor/SDL2_ttf/CHANGES.txt new file mode 100644 index 0000000..f422237 --- /dev/null +++ b/vendor/SDL2_ttf/CHANGES.txt | |||
@@ -0,0 +1,79 @@ | |||
1 | 2.0.18: | ||
2 | Ozkan Sezer - Wed Jan 5 14:15:46 PST 2022 | ||
3 | * Added TTF_GetFreeTypeVersion() and TTF_GetHarfBuzzVersion() | ||
4 | Sylvain - Jan 16, 2021 | ||
5 | * Added support for Signed Distance Field rendering with TTF_SetFontSDF() and TTF_GetFontSDF() | ||
6 | David Ludwig - Dec 28, 2019 | ||
7 | * Added optional DPI-scaling of fonts, with the following new functions: | ||
8 | TTF_OpenFontDPI() | ||
9 | TTF_OpenFontIndexDPI() | ||
10 | TTF_OpenFontDPIRW() | ||
11 | TTF_OpenFontIndexDPIRW() | ||
12 | TTF_SetFontSizeDPI() | ||
13 | Weard Anaether - Dec 2, 2019 | ||
14 | * Added 32-bit character support with: | ||
15 | TTF_RenderGlyph32_Solid() | ||
16 | TTF_RenderGlyph32_Shaded() | ||
17 | TTF_RenderGlyph32_Blended() | ||
18 | TTF_GetFontKerningSizeGlyphs32() | ||
19 | Arthur Danskin - Sep 3, 2019 | ||
20 | * Added 32-bit character support with TTF_GlyphIsProvided32() and TTF_GlyphMetrics32() | ||
21 | Sylvain - Apr 5, 2019 | ||
22 | * Added functions to set direction and script when using Harfbuzz: | ||
23 | TTF_SetDirection() | ||
24 | TTF_SetScript() | ||
25 | Sylvain - Mar 25, 2019 | ||
26 | * Added extended API for text measurement: | ||
27 | TTF_MeasureText() | ||
28 | TTF_MeasureUTF8() | ||
29 | TTF_MeasureUNICODE() | ||
30 | Sylvain - Jan 31, 2019 | ||
31 | * Added TTF_SetFontSize() to set font size dynamically | ||
32 | * Added 'Shaded' and 'Solid' text wrapped functions: | ||
33 | TTF_RenderText_Solid_Wrapped() | ||
34 | TTF_RenderUTF8_Solid_Wrapped() | ||
35 | TTF_RenderUNICODE_Solid_Wrapped() | ||
36 | TTF_RenderText_Shaded_Wrapped() | ||
37 | TTF_RenderUTF8_Shaded_Wrapped() | ||
38 | TTF_RenderUNICODE_Shaded_Wrapped() | ||
39 | * Added TTF_HINTING_LIGHT_SUBPIXEL for better results at small text sizes at a performance cost | ||
40 | |||
41 | 2.0.15: | ||
42 | Sam Lantinga - Fri Oct 26 13:26:54 PDT 2018 | ||
43 | * Updated to FreeType version 2.9.1 | ||
44 | Sam Lantinga - Sun Sep 10 00:18:45 PDT 2017 | ||
45 | * Text rendering functions now use the alpha component of the text colors | ||
46 | Sam Lantinga - Sat Sep 9 22:21:55 PDT 2017 | ||
47 | * Added support for characters greater than 0xFFFF (e.g. emoji) in the UTF-8 APIs | ||
48 | |||
49 | 2.0.14: | ||
50 | Ryan Gordon - Fri Jan 29 12:53:29 PST 2016 | ||
51 | * Deprecated TTF_GetFontKerningSize() which takes font glyph indices and added TTF_GetFontKerningSizeGlyphs() which takes characters | ||
52 | |||
53 | 2.0.13: | ||
54 | Sylvain - Sat Jun 28 11:42:42 2014 | ||
55 | * Fixed bug rendering text starting with a glyph with negative starting offset | ||
56 | beuc - Sun Jun 15 18:27:28 2014 | ||
57 | * Fixed regression loading non-scalable fonts | ||
58 | Sam Lantinga - Sun Jun 15 18:21:04 PDT 2014 | ||
59 | * TTF_GetFontKerningSize() gets kerning between two characters, not two glyph indices | ||
60 | David Ludwig - Sun Apr 13 22:28:26 2014 | ||
61 | * Added support for building for Windows RT and Windows Phone | ||
62 | |||
63 | 2.0.12: | ||
64 | Sam Lantinga - Sat Jun 1 19:11:26 PDT 2013 | ||
65 | * Updated for SDL 2.0 release | ||
66 | |||
67 | 2.0.11: | ||
68 | Sam Lantinga - Sat Dec 31 10:49:42 EST 2011 | ||
69 | * SDL_ttf is now under the zlib license | ||
70 | Peter Kosyh - Mon Feb 28 14:57:03 PST 2011 | ||
71 | * Improved font glyph caching for non-latin languages | ||
72 | Erik Snoek - Wed Jan 12 09:10:15 PST 2011 | ||
73 | * Added API to get kerning info: TTF_GetFontKerningSize() | ||
74 | Sam Lantinga - Mon Jan 10 10:58:34 2011 -0800 | ||
75 | * Added Android.mk to build on the Android platform | ||
76 | |||
77 | 2.0.10: | ||
78 | Adam Strzelecki - Wed Oct 21 21:02:37 PDT 2009 | ||
79 | * Find the Unicode or symbol character map if it's available in the font | ||