kc3-lang/SDL/Xcode

Branch :


Log

Author Commit Date CI Message
a0e3c884 2022-01-17 15:32:27 Updated to version 2.0.21 for development
92946348 2022-01-07 18:28:25 Updated to version 2.0.20 for release
120c76c8 2022-01-03 09:40:00 Updated copyright for 2022
056c0994 2021-11-30 12:19:26 Updated iOS build instructions
5fc901d4 2021-11-30 09:58:21 Updated to version 2.0.19 for development
3008b005 2021-11-27 07:56:04 Include SDL_hidapi.h in the public headers Fixes https://github.com/libsdl-org/SDL/issues/5015
7242075b 2021-11-26 08:12:45 Updated version to 2.0.18 for release
7b9fe52e 2021-11-09 05:40:57 We're no longer building a separate shared library for hidapi
5b646cd1 2021-11-07 22:58:44 Build hidapi code into SDL as a new public API This prevents conflicts with hidapi linked with applications, as well as allowing applications to make use of HIDAPI on Android and other platforms that might not normally have an implementation available.
d854ba99 2021-09-24 10:59:35 Removed X11 code from Apple Xcode project
fd236af8 2021-04-02 09:37:25 Update Xcode project to add SDL_triangle.{c,h}
3f6ebfff 2021-08-10 15:02:36 Updated to version 2.0.17 for development
cb1fd30e 2021-07-31 13:28:54 Updated to version 2.0.16 for release
3e76646c 2021-07-31 13:09:53 Added libSDLmain.a for iOS and tvOS
1a9253f7 2021-07-31 12:37:28 Removed unused IOS_DYLIB definition
118480e5 2021-07-08 17:56:14 fix permissions
46f19c31 2021-07-08 07:23:29 Implemented mouse relative mode for iOS 14.1 and newer
75a9f8e2 2021-07-07 13:06:15 Added SDL_hidapi_luna.c to the Xcode project
646ddfb7 2021-05-15 00:22:50 minor watcom build fixes.
9231f1f1 2021-05-07 12:29:03 Added support for the PS5 controller on iOS and tvOS
2fdbae22 2021-04-26 18:43:28 cocoa: Remove mouse event tap. It doesn't appear to work anymore, and was disabled by default anyhow, since the needed APIs are forbidden on the Mac App Store. A better solution to lock the mouse to the window on macOS would still be welcome. CGAssociateMouseAndMouseCursorPosition() works fine for relative mouse mode, this was just a question of SDL_SetWindowGrab(). As it stands now, a grabbed mouse can briefly break out of the window, causing varying degrees of chaos.
bb76edf3 2021-02-22 15:44:32 fix permissions of a few files
f5e9c5b7 2021-02-21 11:03:25 Chromebooks support relative mouse motion now
d4d32833 2021-02-14 11:30:22 macOS: Fix Xcode project when deployment target is > 10.7 SDL_mfijoystick.m requires ARC, but the Xcode project's macOS targets weren't compiling the file with ARC enabled.
582e1f4a 2021-01-28 23:03:50 config.guess and config.sub updates from mainstream
d95a9eae 2021-01-27 21:30:13 Added WIN_IsWindows8OrGreater() for internal use
360e04dd 2021-01-23 13:15:02 Added Stadia controller source file to Visual Studio and Xcode projects
29888bd6 2021-01-08 21:56:00 fixed permissions of xcode project file
b2a0c712 2021-01-04 12:24:44 Allow setting the player index to -1, which turns off the player LED for PS5 controllers
393c8c1f 2021-01-03 10:32:55 Fixed bug 5440 - MacCatalyst build failures C.W. Betts I tested building commit http://hg.libsdl.org/SDL/rev/7adf3fdc19f3 on Mac Catalyst and found some issues: * MTLFeatureSet_iOS_* enums aren't available under Mac Catalyst. * OpenGL ES is unavailable under Mac Catalyst. * Some Metal features are available under Catalyst but not iOS, such as displaySyncEnabled. * Set Metal as the default renderer on Mac Catalyst Attaching a patch that will make SDL2 build for Mac Catalyst.
9130f7c3 2021-01-02 10:25:38 Updated copyright for 2021
b5f0483c 2021-01-01 22:30:28 fix permissions
5f0b2a7f 2021-01-01 11:12:22 Fixed resource leak with D3D11 NV12 textures
5aba0827 2020-12-30 11:38:51 Build SDL for Mac hardware when targeting iOS
350f1b0d 2020-12-22 10:36:15 Updated SDL to version 2.0.15 for development
637d425e 2020-12-15 00:11:10 whitespace.
e65e4fd3 2020-12-14 09:48:51 Fixed detecting the guide button on Xbox One S controllers over Bluetooth on Linux
c8ee0691 2020-12-13 00:15:54 Added SDL_misc.h to the Xcode built frameworks
475405e0 2020-12-09 12:03:24 CMakeLists.txt: sync DYLIB_CURRENT_VERSION to Xcode project
a2098a47 2020-12-08 18:56:06 Updated SDL to 2.0.14 in preparation for release candidate
ebf315e0 2020-12-01 14:01:12 Fixed bug 5369 - iOS static library build copies public headers files into xcode archive Dominik Reichardt Trying to integrate the latest SDL2 changes into our iOS project of Exult I've stumbled over the fact that when I added the static iOS library the public header files were copied to the archive of our project when you let Xcode build the archive. This makes the archive invalid for upload to the AppStore Connect. To fix this you need to delete the public headers from the build phase: Open the xcode project, select the target "Static Library-ios", got to build phases, and in "headers" delete all the headers in the "public" group. This is safe to do as this actually just copies the public headers for some odd counterintuitive reason. I think this needs to be done for all the library build targets but likely not for the framework targets.
798b2288 2020-12-01 13:46:34 Fixed bug 5367 - SDL_OpenUrl disabled on iOS due to unified Xcode project file Dominik Reichardt When you unified the Xcode project file you forgot to add the iOS file (/src/misc/ios/SDL_sysurl.m) to the project file, so the dummy in that folder takes over and the call does not work. Relevant commits: http://hg.libsdl.org/SDL/rev/c86bbf75f55e (SDL_OpenUrl enabled for macOS/iOS) http://hg.libsdl.org/SDL/rev/282c3dc1cf65 (and following: unified Xcode project files) Adding an ios group in the misc group of the project file and then adding /src/misc/ios/SDL_sysurl.m to it fixes the problem.
c63bbb06 2020-11-24 06:55:33 Including SDL_config_iphoneos.h enables MFI controller code
fd894467 2020-11-21 14:13:26 Fixed building on Mac OS X on the command line and with an older macOS SDK
1df593fb 2020-11-21 13:15:33 Fixed bug 5355 - Add GameController Framework support to macOS C.W. Betts This patch adds support to the GameController framework on macOS Big Sur and later, adding support for MFi controllers as well as rumble support for PS4 and Xbox One. There is some code to make sure that the IOKit joystick handler doesn't include two controllers at once. While the GameController framework is present in earlier versions of macOS, there was no public, approved way of checking if a specific IOHIDDevice is a controller that GameController could handle. This was changed in Big Sur.
082558db 2020-11-20 12:20:02 SDL_os2messagebox.c (_makeDlg): fix crash if title and/or message is NULL. c.f.: bug #5253.
cd51a51f 2020-11-18 20:34:08 Updated with a better understanding of the Xbox One controller protocol
71e32f5e 2020-11-16 15:00:15 Added SDL_crc32()
94a047f7 2020-11-12 14:11:40 fix xcode project file permissions
abf9dfd5 2020-11-09 10:11:38 Fix MakeThreadRealtime DBus method call on Linux, type mismatch due to copy paste. Nov 02 20:34:15 redcore rtkit-daemon[2825]: Failed to parse MakeThreadRealtime() method call: Argument 1 is specified to be of type "uint32", but is actually of type "int32" Nov 02 20:34:15 redcore rtkit-daemon[2825]: Failed to parse MakeThreadRealtime() method call: Argument 1 is specified to be of type "uint32", but is actually of type "int32" Docs: http://git.0pointer.net/rtkit.git/tree/README CLIENTS: To be able to make use of realtime scheduling clients may request so with a small D-Bus interface that is accessible on the interface org.freedesktop.RealtimeKit1 as object /org/freedesktop/RealtimeKit1 on the service org.freedesktop.RealtimeKit1: void MakeThreadRealtime(u64 thread_id, u32 priority); void MakeThreadHighPriority(u64 thread_id, s32 priority);
5d34e3c6 2020-11-09 09:47:19 Fixed linking iOS shared library
d5e367a4 2020-11-06 14:45:36 Fixed build so CoreBluetooth framework is only needed by hidapi Also added plist keys for Bluetooth permission so testgamecontroller works with HIDAPI enabled
a22beef4 2020-11-05 17:03:28 Moved the PS5 controller driver to a separate file, as the advanced feature protocol is very different from that of the PS4
e37a9385 2020-10-19 04:33:03 Makefile.os2: remove duplicated OPTION QUIET directives from linker file
3755f692 2020-10-16 12:40:10 Added mapping for Xbox One S controller and PS4 controller on Android 11, including guide button
df52c504 2020-10-16 09:45:40 Backed out changeset 2f59f1264083
645a3280 2020-10-15 10:13:40 Fix iOS and tvOS builds - Fix iOS and tvOS scheme names - Add iOS/tvOS Developer signing identities and development team to iOS and tvOS shared library schemes
93e14497 2020-10-14 15:50:04 SDL_waylanddatamanager.c (mime_data_list_add): constify the buffer param Fixes -Wdiscarded-qualifiers warnings from Wayland_data_source_add_data()
eb1aba61 2020-10-13 21:08:22 Make the CoreHaptics framework optional on iOS and tvOS
1b31e9f6 2020-10-13 21:08:13 Added support for game controller rumble on iOS 14
e58cc5fa 2020-10-09 03:28:30 minor whitespace fix
79e625f0 2020-10-08 17:01:28 Fixed trying to build OSX SDL_OpenURL on iOS and tvOS
7bec9df1 2020-10-05 16:10:10 url: Add to Xcode project files, iOS/mac fixes.
9db16a65 2020-06-14 12:21:02 fix permissions of some project files
22ce194b 2020-06-03 14:58:38 Make sure SDL_locale.h is included in the Xcode Framework for macOS
b9d5aebb 2020-06-03 14:56:35 Make sure SDL_locale.h is included in the Xcode Framework for tvOS
550b209e 2020-06-03 14:26:37 Make sure SDL_locale.h is included in the Xcode Framework
3195551b 2020-05-18 21:07:02 xcode: make sure locale sources are used in all targets.
fa23e3d0 2020-05-04 02:27:29 locale: Implemented SDL_GetPreferredLocales(). This was something I proposed a long time ago, Sylvain Becker did additional work on it, then back to me. Fixes Bugzilla #2131.
87917b16 2020-04-14 07:54:38 Removed CoreBluetooth framework dependency as part of fixing bug 4299
b2296506 2020-03-15 15:05:36 virtual joysticks: MSVC support part 1/2, make driver's .c file be uniquely named
9b1ea290 2020-03-15 14:21:05 virtual joysticks: added source files to Xcode projects (Bug 5028)
983bbf9e 2020-03-10 18:35:31 Backed out changeset 51622f74dc85
93ed3c8b 2020-03-10 18:25:47 Updated SDL to version 2.0.13 for development builds
4fb06a2a 2020-03-10 18:25:47 Updated SDL to version 2.0.13 for development builds
11a84e4f 2020-03-01 18:16:15 Make sure hidapi is built for the release DMG
74ed2156 2020-03-01 14:58:16 Updated version to 2.0.12 for release candidate build
1bd12026 2020-02-04 15:42:49 Added SDL_hidapi_rumble.c to the macOS, iOS and tvOS builds
68e702b6 2020-02-03 00:51:35 Fixed the hidapi Info.plist for submission to the Apple App Store
39a498c9 2020-01-31 13:09:20 Build the hidapi framework and weak link it on Mac OS X
91121ee4 2020-01-31 10:45:04 Weak link the hidapi framework on iOS and tvOS
1190343f 2020-01-30 16:02:56 Build hidapi as a framework on iOS, so it can be linked by the application as well.
4e33c013 2020-01-30 14:53:18 More Xcode project improvements
bc685163 2020-01-29 20:09:18 Added a unified Xcode project for macOS, iOS and tvOS
a8780c6a 2020-01-16 20:49:25 Updated copyright date for 2020
9996d1bb 2019-12-20 14:33:37 fix xcode project file permissions
6b767872 2019-12-19 21:45:44 Make sure the Xbox 360 driver doesn't try to talk to the wireless controllers
20daf54f 2019-12-19 15:18:50 Added new HIDAPI driver files to the Xcode projects
b8d325c8 2019-11-21 23:04:20 fix xcode project file permissions
2a7b635b 2019-11-21 11:52:50 Added support for the NVIDIA Controller v01.04 on Android
eb8f14bb 2019-11-20 20:40:50 added SDL_strtokr() as a replacement for POSIX strtok_r (bug #4046.)
ffc7d091 2019-10-01 14:00:02 endpointvolume.h checks not needed since changeset 13078:8ab094a9df6b .
f46ac1e9 2019-09-27 20:15:42 macOS: Fix SDL_metal.h not being copied to the framework's Headers folder when SDL.framework is built using Xcode.
84dc44e2 2019-09-27 15:21:27 Fix the RealtimeKit dbus include guards The SDL_USE_LIBDBUS define is set inside SDL_debug.h, therefore the circular dependency made it impossible for this feature to be enabled. Instead, guard SDL_dbus.h based on the autoconf variable HAVE_DBUS_DBUS_H Additionally, fix one of the rtkit comments. CAP_SYS_NICE isn't required to achieve high priority. But there is some scheduler config that rtkit needs the app to setup.
3fe2d836 2019-09-22 10:37:16 Updated SDL development builds to version 2.0.11
7f5fc74c 2019-08-08 23:35:02 fix permissions
cbdee4d6 2019-08-08 13:26:05 [ SDL ] Fix compile error building for Windows/ARM64 on Visual Studio 2017 Win10 SDK 10.0.18362.0 which requires ar,74intr.h/arm64_neon.h header instead of armintr.h/arm_neon.h for intrinsics. @saml
aebaa316 2019-08-05 12:35:32 Add public APIs for creating a Metal view attached to an SDL window. Add SDL_metal.h.
42e4219c 2019-08-03 12:50:28 fix permissions
63197c43 2019-08-02 17:19:50 Fix bug where the wrong button was the default in the old message box because buttons were added backwards, breaking the indexing used by GetButtonIndex. Add messagebox flags to explicilty request left-to-right button order or right-to-left. If neither is specified it'll be some platform default.