| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-02-10 | Fix warnings in raylib (#3793) | Jeffery Myers | |
| 2024-02-08 | REVIEWED: `DrawPixel()` not drawing | Ray | |
| 2024-02-07 | Update README.md | Ray | |
| 2024-02-05 | Reverted Makefile `GL_ENABLE_GET_PROC_ADDRESS` #3713 | Ray | |
| 2024-02-05 | REVIEWED: PLATFORM_WEB build flags, added GL_ENABLE_GET_PROC_ADDRESS | Ray | |
| Reviewed flags formating | |||
| 2024-02-05 | Fix GetCameraRight (#3784) | Danil | |
| 2024-02-04 | Update rtext.c | Ray | |
| 2024-02-04 | Merge branch 'master' of https://github.com/raysan5/raylib | Ray | |
| 2024-02-04 | REVIEWED: `rlLoadFramebuffer()` | Ray | |
| 2024-02-04 | Update rtext.c (#3777) (#3779) | Ray | |
| 2024-02-04 | Update raylib_api.* by CI | github-actions[bot] | |
| 2024-02-04 | Reorder functions | Ray | |
| 2024-02-04 | Merge branch 'master' of https://github.com/raysan5/raylib | Ray | |
| 2024-02-04 | REVIEWED: `rlLoadFramebuffer()`, parameters not required | Ray | |
| 2024-02-04 | Update raylib_api.* by CI | github-actions[bot] | |
| 2024-02-04 | Added viewport independent raycast (#3709) | Luís Almeida | |
| * added viewport independent raycast * Renamed GetMouseRayEx to GetViewRay | |||
| 2024-02-04 | Review formating and some defines naming consistency | Ray | |
| 2024-02-04 | [rcore] Fix `GetFileNameWithoutExt()` (#3771) | oblerion | |
| * Update rcore.c fix [rcore] GetFileNameWithoutExt * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c * Update rcore.c | |||
| 2024-02-04 | Add gamepad support to PLATFORM_DESKTOP_SDL (#3776) | A | |
| Co-authored-by: Arthur <[email protected]> | |||
| 2024-02-04 | Update rtext.c | Ray | |
| 2024-02-04 | REVIEWED: `LoadFontDataBDF()` name and formating | Ray | |
| 2024-02-03 | [rtext] Add BDF font support (#3735) | Stanley Fuller | |
| * Add BDF font support * Include font ascent in glyph y-offset when loading BDF font | |||
| 2024-02-02 | Update BINDINGS.md (#3774) | Brandon Baker | |
| Bump supported raylib version of Raylib-cs to 5.0 | |||
| 2024-02-01 | Fix segfault in ExportWaveAsCode (#3769) | IoIxD | |
| `char *txtData = (char *)RL_CALLOC(waveDataSize * 6 + 2000, sizeof(char));` assumes every chunk being added to txtData is 6 bytes. This is not always true, sometimes a newline is involved and the data becomes 12 bytes instead, and this can cause a random segfault. This commit changes `6` to `12`, and explains why in the comment. | |||
| 2024-02-01 | Fix MeasureTextEx() height calculation (#3770) | Marrony Neris | |
| 2024-02-01 | REVIEWED: Issue on parsing #3765 | Ray | |
| 2024-02-01 | REVIEWED: macOS issues #3767 | Ray | |
| 2024-01-29 | Review PR #3746 formating | Ray | |
| 2024-01-29 | [CORE,RLGL] Fix scale issues when ending a mode (#3746) | Jeffery Myers | |
| * Only restore GL scale back to screen scale if we are returning to a screen, not a render texture. * blankspace * reset back to default screen scale when ending a render texture since we are back on the default fbo | |||
| 2024-01-28 | cleaned away unused macros in rcamera.h (#3762) | Brian E | |
| 2024-01-28 | Added missing "standalone" functions to raudio.c & fixed return bug (#3760) | Alessandro Nikolaev | |
| * Added GetFileNameWithoutExt, GetFileName & strprbrk to raudio.c * Gave return values to SaveFileData & SaveFileText in raudio.c | |||
| 2024-01-28 | Fix rlSetUniformSampler (#3759) | veins1 | |
| Fix rlSetUniformSampler not setting sampler uniform if the same texture was already passed to a different sampler uniform | |||
| 2024-01-24 | Update core_2d_camera_platformer.c | Ray | |
| 2024-01-23 | Fix bug to retrieve material specular map in DrawMesh function, with ↵ | Victor Gallet | |
| incorrect index (#3758) | |||
| 2024-01-22 | [rtext.c] fixing some comments to align comments style (#3756) | Idir Carlos Aliane | |
| 2024-01-22 | Change some minor comments to align with comments style (#3755) | Idir Carlos Aliane | |
| 2024-01-22 | [raymath.h] Small code refactor (#3753) | Idir Carlos Aliane | |
| * [raymath.h] Small refactor to avoid duplicated code * Fixing some blank spaces to match same syle convention | |||
| 2024-01-22 | fixed small typo, replaced `th` with `the` (#3752) | Brian E | |
| 2024-01-22 | fix CheckCollisionPointPoly (#3750) | Antonio Raúl | |
| 2024-01-22 | Fix typo in HISTORY.md (#3751) | Idir Carlos Aliane | |
| There is a typo where 'undoubtdly' appears instead of 'undoubtedly'. | |||
| 2024-01-20 | Fix Android keycode translation and duplicate key constants (#3733) | Alexandre Almeida | |
| * Fix Android keycode translation * Simplify code a bit * Rename KEYCODE_MAPPED_NUM to KEYCODE_MAP_SIZE * Fix KEY_R and KEY_MENU duplicate * Update raylib_api.* by CI --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |||
| 2024-01-20 | [rcore rglfw] Feature Test Macros before include (#3737) | John | |
| Move/Add Feature Test Macros before any includes. See: [GNU Feature Test Macros](https://www.gnu.org/software/libc/manual/html_node/Feature-Test-Macros.html) > You should define these macros by using ‘#define’ preprocessor directives at the top of your source code files. These directives must come before any #include of a system header file. It is best to make them the very first thing in the file, preceded only by comments. Alternative changes to rcore would be to change _POSIX_C_SOURCE to 200809L, which removes the need to define _XOPEN_SOURCE >= 500. These changes allow for compilation with -std=c* (such as -std=c99) without adding -D macros to the build step. Co-authored-by: JayLCypher <[email protected]> | |||
| 2024-01-20 | Make raylib/raygui work better on touchscreen (#3728) | Hongyu Ouyang | |
| * Fix that touch doesn't work for click/drag/raygui * Add comments * comments update | |||
| 2024-01-18 | Update BINDINGS.md (#3739) | Anand Swaroop | |
| 2024-01-15 | REVIEWED: `ImageKernelConvolution()`, formating and warnings | Ray | |
| 2024-01-14 | Fix bounds check for `ImageDrawRectangleRec` (#3732) | Blockguy24 | |
| 2024-01-13 | Update OCaml bindings version (#3730) | Tobias Mock | |
| 2024-01-13 | Avoid asserts because could crash some decompressions ↵ | Ray | |
| https://github.com/raysan5/raygui/issues/364 | |||
| 2024-01-13 | Simplified GetWindowScaleDPI() so it does not fetch the wrong DPI scale some ↵ | Karl Zylinski | |
| times (Windows looks at center of window while the old raylib code looked on upper left corner of window, now it just uses the glfw function to fetch the window's current scaling). Also introduced a callback to update the CORE.Window.screenScaling when the content scaling updates, previously scaling did not work correctly on systems with multiple monitors that have different DPI scaling. (#3701) | |||
| 2024-01-13 | Add shared library build option for build.zig and update to zig ↵ | Andrew Lee | |
| 0.12.0-dev.2139 (#3727) * update build.zig to 0.12.0-dev.2139 and add shared lib option * add no-sanitize workarounds | |||
