summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2022-08-13P A I NRay
2022-08-13WARNING: REVIEWED: `rlCheckRenderBatchLimit()`Ray
2022-08-13minor tweaksRay
2022-08-13Fix string lacking null termination in IsFileExtension (#2637)HarriP
When file extension is longer or equal length compared to buffer holding lowercased string, strncpy does not null terminate the string. Increased buffer size by 1 to ensure it will always be null-terminated, so that following strcmp does not read out of buffer bounds.
2022-08-13Fix Codepoint position truncation (#2636)Dan Bechard
This truncation causes text that spans the zero coord boundary to round differently left or zero vs. right of zero, in turn causing letters to appear squished together. If you actually need the position to be an integer, you should instead `floorf()` the float, rather than doing an integer truncation, but I don't see any reason to convert it to an integer in the first place. Everything else in the equation is a float.
2022-08-12Update BINDINGS.md (#2631)Gunko Vadim
Update to ray4laz
2022-08-12updating jaylib binding to 4.2 (#2630)Richard Smith
2022-08-12update raylib-python-cffi bindings to 4.2 (#2629)Richard Smith
2022-08-11Update android.ymlRay
2022-08-11Update android.ymlRay
2022-08-11Update android.ymlRay
2022-08-11Update android.ymlRay
2022-08-11Update android.ymlRay
2022-08-11Update windows.ymlRay
2022-08-11Update HISTORY.mdRay
2022-08-11Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-08-11Update CHANGELOGRay
2022-08-11Fix typos and reworded a question in the FAQ (#2628)SomeUnusualGames
2022-08-11Improve the readability of the FAQ page (#2627)Eliza Milburn
2022-08-11Update CHANGELOGRay
2022-08-11Reword FAQ page, and fix some typos (#2626)Peter0x44
2022-08-11Revert "Update core_3d_camera_mode.c"Ray
This reverts commit 4f6fbaed4137be6ba41609ce9a96c11fd240953d.
2022-08-11Update core_3d_camera_mode.cRay
2022-08-11Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-08-11Create FAQ.mdRay
2022-08-09Fix #2621: Set CMP0054 policy to NEW and appropriately quote ${PLATFORM} (#2622)archie2x
2022-08-08Update c_raylib.xmlRay
2022-08-08Updated Npp scriptsRay
2022-08-08Updated to work with zig master branch (#2620)Jacob Dennis
Specifically, std.fs.OpenDirOptions struct no longer has the iterable flag, now it's a standalone function call std.fs.openIterableDir
2022-08-08Update CHANGELOGRay
2022-08-07Reviewed issue with negative key #2619Ray
2022-08-06REMOVED: VS2019 projectRay
2022-08-06Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-08-06Review projects details for raylib 4.2Ray
2022-08-06Can't alt-tab out of fullscreen window (#2618)veins1
2022-08-06Update BINDINGS.mdRay
2022-08-06Update BINDINGS.mdRay
2022-08-06Added new Free Pascal bindings (#2617)Anthony Walter
2022-08-06Fix 4coder project template (#2616)Angga Permana
2022-08-05Updated Notepad++ intellisense dataRay
2022-08-05Added commentsRay
2022-08-05Update parser outputs for raylib 4.2Ray
2022-08-05Update raylib_parser.cRay
2022-08-05Update HISTORY.mdRay
2022-08-05Update CHANGELOGRay
2022-08-05Small simplifications (#2615)veins1
2022-08-05GetMusicTimePlayed bug fix (#2614)veins1
GetMusicTimePlayed() was calculated using buffered frames, not played frames. For example: calling LoadMusicStream->UpdateMusicStream->GetMusicTimePlayed would return non-zero value, even though no music was playing.
2022-08-04Fix typo in README: s/instrallation/installation/ (#2613)hartmannathan
2022-08-04Update bindings with raylibr (#2611)Ramiro Magno
Add R package raylibr as a new binding for the R language
2022-08-03Fix rendering issue in audio_raw_stream.c example (#2608)TheManTheMythTheGameDev