David Ludwig <dludwig@pobox.com> [Sun, 23 Nov 2014 08:59:01 -0500] rev 9229
WinRT: fixed an invalid comment in SDL_GetPrefPath() (for WinRT)
David Ludwig <dludwig@pobox.com> [Sun, 23 Nov 2014 08:52:10 -0500] rev 9228
WinRT: allowed 'roaming' and 'temp' folder paths to be retrieved on WinPhone 8.1
Windows Phone 8.0 either did not define, or provide access to, a 'RoamingFolder'
or 'TemporaryFolder' for apps to use. Windows 8.0 and 8.1 do, as does
Windows Phone 8.1. This change allows SDL-based Windows Phone 8.1 apps to
access these folders, via either the SDL_WinRTGetFSPathUNICODE() or
SDL_WinRTGetFSPathUTF8() functions.
SDL_GetPrefPath(), which on WinRT, is based on SDL_WinRTGetFSPathUTF8(), will
continue to return the app's 'local' folder, despite Windows 8.x
counterpart apps using the 'roaming' folder, in order to preserve compatibility
when 8.0-based Phone apps upgrade to 8.1-based Phone apps.
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Sun, 23 Nov 2014 11:26:46 +0100] rev 9227
Fixed typo in header file documentation comment.
David Ludwig <dludwig@pobox.com> [Sat, 22 Nov 2014 21:13:46 -0500] rev 9226
Fixed bug 2726 - WinRT touches not setting 'which' field in virtual mouse events
This patch makes sure that any SDL_MOUSEBUTTONDOWN, SDL_MOUSEBUTTONUP, and
SDL_MOUSEMOTION events, as triggered by a touch event in a WinRT app, set the
event's 'which' field to SDL_TOUCH_MOUSEID. Previously, this was getting set
to the same value as events from a real mouse, '0'.
Thanks to Diego for providing information on this bug, and to Tamas Hamor for
sending over a patch!
Philipp Wiesemann <philipp.wiesemann@arcor.de> [Sat, 22 Nov 2014 22:20:40 +0100] rev 9225
Corrected header file documentation comment.
David Ludwig <dludwig@pobox.com> [Sat, 15 Nov 2014 15:07:55 -0500] rev 9224
WinRT: updated README-winrt.md to detail Visual Studio 2013 Community support
David Ludwig <dludwig@pobox.com> [Sat, 15 Nov 2014 10:19:39 -0500] rev 9223
WinRT: made SDL_GetPlatform() return "WinRT" and not 'Unknown'
Thanks to Eric Wing for the heads-up on this!
David Ludwig <dludwig@pobox.com> [Sat, 15 Nov 2014 10:12:36 -0500] rev 9222
WinRT: build fix for Visual C++ 2013 Update 4
Visual C++ 2013 Update 4 re-introduced the Sleep() function to WinRT apps (for
code that targets Windows 8.1 and Windows Phone 8.1). This led to a build
error, as SDL was defining it's own Sleep() function (to make up for the lack
of a public Sleep() function). The fix makes sure that SDL's custom Sleep()
function is only used when Windows' Sleep() is not available.
Many thanks go out to Sergiu Marian Gaina for the fix!
Ryan C. Gordon <icculus@icculus.org> [Fri, 14 Nov 2014 11:21:15 -0500] rev 9221
Fixed gcc-fat.sh failing to build Objective-C sources correctly.
This would fail if the compiler was given a .m file _and_ no "-o" option; it
would fail to automatically calculate the correct .o filename in this
situation.
Thanks to Ethan Lee for the help tracking this one down!
David Ludwig <dludwig@pobox.com> [Sun, 09 Nov 2014 14:20:53 -0500] rev 9220
WinRT: fixed multi-touch bug whereby 2nd, 3rd, etc. fingers weren't moving
Only the first-pressed finger wpuld get reported as having moved (via SDL's
touch APIs). Subsequently pressed fingers wouldn't report as being moved, even
though the OS was reporting (to SDL) that they had moved.