Mon Jan 30 21:43:07 2012 -0500Switched the SDL 2 autoconf macro to AM_PATH_SDL2 default tip
Sam Lantinga <slouken@libsdl.org> [Mon, 30 Jan 2012 21:43:07 -0500] rev 202
Switched the SDL 2 autoconf macro to AM_PATH_SDL2

Mon Jan 30 20:10:05 2012 -0500Updated Android Makefile for SDL2
Sam Lantinga <slouken@libsdl.org> [Mon, 30 Jan 2012 20:10:05 -0500] rev 201
Updated Android Makefile for SDL2

Sat Jan 28 15:02:45 2012 -0500RenderClear() is more effecient than FillRect(NULL)
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 15:02:45 -0500] rev 200
RenderClear() is more effecient than FillRect(NULL)

Sat Jan 28 13:08:09 2012 -0500Updated framework project for SDL2
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 13:08:09 -0500] rev 199
Updated framework project for SDL2

Sat Jan 28 12:38:26 2012 -0500Fixed creating an OpenGL texture from a surface
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 12:38:26 -0500] rev 198
Fixed creating an OpenGL texture from a surface

Sat Jan 28 12:22:10 2012 -0500Switched from SDL_ttf to SDL2_ttf
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 12:22:10 -0500] rev 197
Switched from SDL_ttf to SDL2_ttf

Sat Jan 28 11:16:38 2012 -0500Removed old unsupported project files
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 11:16:38 -0500] rev 196
Removed old unsupported project files

Sat Jan 28 11:16:02 2012 -0500Updated to version 2.0.12
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 11:16:02 -0500] rev 195
Updated to version 2.0.12

Sat Jan 28 11:15:31 2012 -0500Updated to version 2.0.12 SDL-1.2
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 11:15:31 -0500] rev 194
Updated to version 2.0.12

Sat Jan 28 10:28:54 2012 -0500Fixed bug 1400 - Lack of error reporting for glyph rendering errors
Sam Lantinga <slouken@libsdl.org> [Sat, 28 Jan 2012 10:28:54 -0500] rev 193
Fixed bug 1400 - Lack of error reporting for glyph rendering errors

I was just bitten by bug 374062 (any word if this will be fixed for
etch given that it is fixed upstream?), and found that there is no
error message set by sdl-ttf when it is unable to render a glyph,
which makes bugs like this a bit more difficult to track down. I
would really appreciate it if TTF_GetError() could return a useful
message in such situations. The attached patch does just that by
duplicating the existing error reporting for calls to Find_Glyph()
into the places where it is missing, although it might be nice to know
which glyph it was that could not be found...