Sam Lantinga
b2793a2ce2
Removed obsolete Raspberry Pi documentation
2025-01-14 12:58:30 -08:00
Sam Lantinga
04e3b67707
Removed outdated Visual Studio instructions
2025-01-14 12:22:15 -08:00
Sam Lantinga
a41f93bd10
Added https://github.com/Ravbug/sdl3-sample as a more complete Android example
2025-01-14 12:22:00 -08:00
Sam Lantinga
cdde6dd7bb
Bumped deployment requirements for Apple platforms
...
We require at least Xcode 12.2 and macOS SDK 11 to build. We support deploying to macOS 10.13, iOS 11.0, and tvOS 11.0.
This cleans up the code significantly
2025-01-14 12:03:07 -08:00
Sam Lantinga
8f8af918ba
Removed CMakeLists.txt example that says you shouldn't use it
2025-01-14 11:15:34 -08:00
Sam Lantinga
8feb21a1d1
Updated README-cmake.md with build instructions for several platforms
2025-01-14 11:15:34 -08:00
Ozkan Sezer
5815372206
minor update to mingw-w64 build instructions.
2025-01-14 05:04:24 +03:00
SDL Wiki Bot
f731741ead
Sync SDL3 wiki -> header
...
[ci skip]
2025-01-14 00:44:57 +00:00
Sam Lantinga
0eaa8c6d81
Added INTRO-emscripten.md
2025-01-13 16:42:50 -08:00
Sam Lantinga
21b433536a
Scale up the text for large displays
2025-01-13 16:42:50 -08:00
Sam Lantinga
6bc7e88ca6
Added INTRO-androidstudio.md
2025-01-13 16:42:50 -08:00
Sam Lantinga
e4e76ac72e
Added INTRO-xcode.md
2025-01-13 16:42:50 -08:00
Sam Lantinga
1b30a01b44
Added INTRO-visualstudio.md
...
Also removed out of date Visual C++ documentation
2025-01-13 16:42:50 -08:00
Sam Lantinga
191b9d5021
Added INTRO-cmake.md
2025-01-13 16:42:50 -08:00
Sam Lantinga
584c1d5791
Tweaking the README
2025-01-13 16:42:50 -08:00
Sam Lantinga
995a6a0333
Minor readability improvement for README-contributing.md
2025-01-13 16:42:50 -08:00
Sam Lantinga
86b46c678c
Removed README-git.md
...
We're fully hosted on GitHub, no need for additional explanation.
2025-01-13 16:42:50 -08:00
Sam Lantinga
96414fa56a
Removed obsolete Raspberry Pi documentation
2025-01-13 16:42:50 -08:00
Ryan C. Gordon
95c1584386
README-migration: note SDL2 brightness/gamma ramp APIs that have been removed.
...
Fixes #11918 .
2025-01-12 04:35:56 -05:00
Sam Lantinga
4231848791
Revert "Separate android initialization from Activity ( #11891 )"
...
This reverts commit d14c93c4b1
.
This is a major breaking change for activities that inherit SDLActivity
2025-01-10 15:27:08 -08:00
Xander
d14c93c4b1
Separate android initialization from Activity ( #11891 )
2025-01-10 15:05:58 -08:00
Anonymous Maarten
bda90c3cb6
cmake: rename SDL_DISABLE_* CMake options to SDL_xxx
2025-01-10 04:23:32 +01:00
Frank Praznik
6b776a9989
keyboard: Add some SDL keycodes for common Xkb keys
...
Add SDL keycodes for keys found commonly found in the default Xkb layout, such as left tab and compose, and keys frequently used for custom modifiers such as Meta, Hyper, and Level5 Shift.
As these keys aren't Unicode code points and don't have associated scancodes (at least on modern keyboards), they are placed in the new extended key code space, with bit 30 set as a flag.
2025-01-09 17:26:41 -05:00
SDL Wiki Bot
dd0dc64d51
Sync SDL3 wiki -> header
...
[ci skip]
2025-01-09 20:15:17 +00:00
ritalat
0bc370dfba
Android doc cleanup
2025-01-07 16:56:29 -05:00
Ryan C. Gordon
1e1442ed4a
README-migration.md: Note the GL/EGL library environment variable removals.
2025-01-06 13:12:31 -05:00
Ryan C. Gordon
d8c7006a42
README-migration.md: Removed obsolete documentation.
...
Fixes #11434 .
2025-01-06 13:07:21 -05:00
Daniel Wymark
522682cd6e
Add detailed documentation on building with MinGW64 ( #11780 )
2025-01-03 21:07:38 -08:00
Sam Lantinga
2c0a8363a5
Added SDL_HINT_JOYSTICK_ENHANCED_REPORTS
...
This hint defaults on, enabling advanced controller features.
This replaces SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE and SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, and is supported by PlayStation and Nintendo Switch controllers.
Fixes https://github.com/libsdl-org/SDL/issues/10086
2025-01-02 17:18:09 -08:00
SDL Wiki Bot
c68ed04a06
Sync SDL3 wiki -> header
...
[ci skip]
2025-01-01 21:27:47 +00:00
Willem Dinkelspiel
2be89f0dd1
Clarify migration for GetWindowData and SetWindowData
2024-12-31 15:00:39 -08:00
Sam Lantinga
e91c37f4dd
Added support for inset handling on Android 15
2024-12-30 12:23:00 -08:00
SDL Wiki Bot
1a466b5548
Sync SDL3 wiki -> header
...
[ci skip]
2024-12-28 16:06:09 +00:00
Anonymous Maarten
38dd6bcd32
docs: gradle needs package identifier + change example Activity class path
2024-12-28 03:22:53 +01:00
Sam Lantinga
ca17d19f90
Updated iOS file path documentation
...
Fixes https://github.com/libsdl-org/SDL/issues/10290
2024-12-26 17:00:01 -08:00
Sam Lantinga
e08f34c3be
Removed SDL_HINT_MOUSE_RELATIVE_MODE_WARP
...
This complicated mouse handling and is a rarely tested path. Real relative mode is much better performance and higher precision.
2024-12-19 10:33:02 -08:00
SDL Wiki Bot
c52a96ca8e
Sync SDL3 wiki -> header
...
[ci skip]
2024-12-17 07:29:13 +00:00
Ryan C. Gordon
2635239bbc
README-migration: some improvements to the audio section.
...
Minor edit about default devices, and an explanation of forcing device buffer
size with SDL_HINT_AUDIO_DEVICE_SAMPLE_FRAMES.
Fixes #9857 .
2024-12-12 01:29:56 -05:00
Ryan C. Gordon
f45ce45603
ngage: Remove Nokia N-Gage support.
...
This can be reverted if a toolchain arrives that can handle C99 features like
variables declared in the middle of a scope, but for now we literally can't
compile SDL3 for this platform.
Fixes #11243 .
2024-12-11 13:29:43 -05:00
Sam Lantinga
09428688b9
Added a reminder to sign the source archives when creating a release
2024-12-07 11:50:42 -08:00
Sam Lantinga
ddb1e66d90
Updated the release checklist documentation
2024-12-06 20:18:30 -08:00
Ryan C. Gordon
022a6a9f97
asyncio: Added Linux io_uring support.
2024-12-03 17:32:20 -05:00
Ryan C. Gordon
d53241a299
docs/README-main-functions.md: reformatted Best Practices section.
2024-11-28 00:19:55 -05:00
SDL Wiki Bot
5cd188bdbc
Sync SDL3 wiki -> header
...
[ci skip]
2024-11-28 05:17:28 +00:00
anakin004
7099de4ae8
Update README-main-functions.md
2024-11-28 00:16:55 -05:00
Ryan C. Gordon
a0591ec4a3
README-documentation-rules.md: Mention not listing types in param/returns docs.
2024-11-20 23:59:24 -05:00
Ryan C. Gordon
6ca8269b96
docs/README-raspberrypi.md: Corrected NEON information (thanks, @cmitu!).
2024-11-14 12:11:29 -05:00
Ryan C. Gordon
6049ca4fb1
docs/README-raspberrypi.md: Initial updates.
...
This document needs a _lot_ of modernization! This was just some initial
improvements, and a warning that the rest is probably obsolete.
Fixes #11444 .
2024-11-13 19:55:25 -05:00
Petar Popovic
96729e745a
SDL_GetClosestFullscreenDisplayMode(): Rename parameter mode
to closest
...
Also: Check, if the parameter is NULL inside the function.
2024-11-03 21:03:44 -08:00
Sam Lantinga
27f69c772c
Updated the release checklist
...
This will help me remember to create the archives _after_ tagging the release.
2024-11-01 19:40:47 -07:00