|
5bdc9913
|
2014-11-25T22:37:12
|
|
Corrected header file guard comments.
|
|
8cab5ae3
|
2014-11-25T22:31:14
|
|
Fixed limitation for number of custom main() arguments on Android.
Limitation was size of the reference table because local refs were not deleted.
|
|
94539137
|
2014-11-24T11:46:20
|
|
Mac: Add drag & drop support.
Fixes bug https://bugzilla.libsdl.org/show_bug.cgi?id=2757
Thanks to Alex Szpakowski for the patch!
|
|
084642d3
|
2014-11-23T15:48:52
|
|
Cocoa: add in handling of "lost" touches on OS X. [bug #2635]
This scenario can occur, for example, when the 4-finger touch sequence is used to switch spaces. the SDL window does not receive the touch up events and ends up thinking there are far more fingers on the pad than there are.
So the solution here is everytime a new "touch" appears we can through and check if there are any existing known touches by the OS and if there are none, abut SDL things there are, we simply go through and cancel the SDL touches.
Side affects.
- the "touch up" won't occur until the users sends a new touch (could be well after the actual release really did occur)
|
|
8c9341b9
|
2014-11-23T15:39:28
|
|
add "i" shortcut to testgesture tool to log # of fingers down on the touch devices.
|
|
d7cc6fab
|
2014-11-23T15:21:49
|
|
add controllermap program to SDLTest xcode project
|
|
43e5c9ee
|
2014-11-23T20:46:34
|
|
Fixed doxygen tags in header file documentation comments.
|
|
c0165972
|
2014-11-23T20:40:48
|
|
Fixed typos in header file documentation comments.
|
|
097ad550
|
2014-11-23T20:38:18
|
|
Fixed local reference leaks in messagebox implementation for Android.
|
|
c121ff7f
|
2014-11-23T20:35:51
|
|
Added name for second Java Thread on Android.
|
|
d9a42c76
|
2014-11-23T08:59:01
|
|
WinRT: fixed an invalid comment in SDL_GetPrefPath() (for WinRT)
|
|
13c51169
|
2014-11-23T08:52:10
|
|
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.
|
|
a690944e
|
2014-11-23T11:26:46
|
|
Fixed typo in header file documentation comment.
|
|
5575948b
|
2014-11-22T21:13:46
|
|
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!
|
|
9c398852
|
2014-11-22T22:20:40
|
|
Corrected header file documentation comment.
|