| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-04-20 | REVIEWED: Remove final punctuation in code comments | Ray | |
| 2024-04-02 | Remove trailing spaces | Ray | |
| 2024-02-27 | Change sanitization check for `ExportDataAsCode` (#3837) | Laurentino Luna | |
| * Change sanitization check for `ExportDataAsCode` I opted to use `isalnum` function since it should handle most cases. It cannot however handle cases of files beginning with numbers. * Update `ExportDataAsCode` condition * Reinsert comment on `ExportDataAsCode` | |||
| 2024-02-26 | Add very little sanitization to indentifier names in ExportDataAsCode() (#3832) | 4rk | |
| 2024-01-02 | Update copyright to 2024 | Ray | |
| 2023-09-22 | REVIEWED: `LoadFileData()` potential issues with dataSize | Ray | |
| 2023-09-02 | REVIEWED: Data size type consistency between functions #3168 | Ray | |
| 2023-06-17 | Remove trailing spaces | Ray | |
| 2023-05-22 | Added security check to file reading (memory allocations) | Ray | |
| 2023-05-08 | Remove trailing spaces | Ray | |
| 2023-05-02 | REVIEWED: `ExportDataAsCode()` | Ray | |
| 2023-05-01 | REVIEWED: Modules description layout | Ray | |
| 2023-04-09 | Fix warnings in raylib for MSVC (#3004) | Jeffery Myers | |
| 2023-03-15 | REVIEWED: `TraceLog()`, avoid possible buffer overflow | Ray | |
| 2023-02-09 | Fixed some grammar mistakes and typos. (#2914) | Julio C. Galindo | |
| * Fixed some grammar mistakes. * Fixed some typos. | |||
| 2023-01-01 | Update year to 2023 | Ray | |
| 2022-11-04 | Fix ExportDataAsCode() data types (#2787) | RGDTAB | |
| 2022-09-07 | REVIEWED: Data type to unsigned | Ray | |
| 2022-08-02 | Remove trailing spaces | Ray | |
| 2022-06-07 | REVIEWED: Compilation warnings | Ray | |
| 2022-05-06 | Flush stdout after trace messages (#2465) | Daniel Nagy | |
| This immediately shows log messages when stdout is not connected to a tty. | |||
| 2022-05-06 | Update utils.c | Ray | |
| 2022-05-06 | ADDED: `ExportDataAsCode()` | Ray | |
| 2021-12-31 | Update year to 2022 | raysan5 | |
| 2021-11-10 | tweak | Ray | |
| 2021-10-13 | Reviewed some TODO | Ray | |
| 2021-07-30 | REVERTED: Removed the need for `rlMatrix` | raysan5 | |
| Now rlgl uses the `Matrix` type, just make sure it has been previously defined somewhere... I don't like this approach but it's probably the easier one for the users... still looking for a better solution... maybe using something like `#define MATRIX_TYPE`, so it can be checked in other modules. | |||
| 2021-07-29 | WARNING: BREAKING CHANGE: rlgl complete decoupling from raylib -WIP- | raysan5 | |
| rlgl has been redesigned to avoid any dependency to `raylib` or `raymath`, all functions using some of those libs have been reviewed. - REMOVED: `Texture2D`, `Shader` structs dependency - REMOVED: `Vector3`, `Matrix` structs dependency - REMOVED: raymath functions dependency, all required math is implemented in rlgl - ADDED: `rlMatrix` custom rlgl type - ADDED: `utils.c`: `rlMatrixFromMatrix()` and `rlMatrixToMatrix()` for a safe conversion between raylib<->rlgl matrix types - ADDED: `rl` prefix to all `rlgl` structs - Other small tweaks here and there | |||
| 2021-07-26 | Remove unused UWP defines (#1894) | Uneven Prankster | |
| * Unused UWP define removal * Further removal of unusued UWP defines | |||
| 2021-06-26 | Minor tweaks to follow code conventions | Ray | |
| 2021-06-10 | Review some comments | Ray | |
| 2021-05-30 | REVIEWED: exit() on LOG_FATAL instead of LOG_ERROR #1796 | Ray | |
| 2021-05-22 | Some code tweaks for consistency | Ray | |
| 2021-04-16 | Minor tweaks | Ray | |
| 2021-04-03 | Make SaveFile* callbacks return a boolean (#1697) | Rob Loach | |
| 2021-04-01 | Remove trailing spaces | raysan5 | |
| 2021-03-08 | ADDED: Required callbacks | Ray | |
| Removed memory allocation callbacks | |||
| 2021-03-04 | ADDED: Config flag: SUPPORT_STANDARD_FILEIO | Ray | |
| This new flag allows omitting stdio.h library in case of a custom implementation is used. | |||
| 2021-03-04 | Some naming tweaks | Ray | |
| 2021-03-04 | FEATURE: Several callbacks added -WIP- #1523 #1329 | Ray | |
| NOTE: This feature is still under consideration and not complete. | |||
| 2021-02-05 | REMOVED: SetTraceLogExit() | raysan5 | |
| I feel nobody has ever used this function... | |||
| 2021-01-02 | Update year to 2021 | raysan5 | |
| 2020-12-23 | Remove trailing spaces | raysan5 | |
| 2020-12-19 | ADDED: MemAlloc() / MemFree() #1440 | Ray | |
| Exposing internal memory allocator/free, useful for advance users when required | |||
| 2020-12-14 | ADDED: UnloadFileData() / UnloadFileText() #1440 | Ray | |
| 2020-11-22 | Exposing some file access results to user layer #1420 | Ray | |
| 2020-11-03 | Remove trailing spaces | Ray | |
| 2020-11-01 | REVIEWED: SaveFileText() error checking | Ray | |
| 2020-05-23 | Review usage of sizeof(), unify conventions | raysan5 | |
| All functions requiring sizeof() now follow the same convention: NUM_ELEMENTS*NUM_SUBELEMENTS*sizeof() | |||
| 2020-05-06 | Avoid all MSVC compile warnings | raysan5 | |
| Most warning were related to types conversion (casting required) and unsigned/signed types comparisons. Added preprocessor directives (_CRT_SECURE_NO_DEPRECATE; _CRT_NONSTDC_NO_DEPRECATE) to avoid warnings about unsafe functions, those functions are safe while used properly and recommended alternatives are MS only. Some external libraries still generate warnings. | |||
