| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-09-28 | fixing new typoes (#2727) | Dor Shapira | |
| 2022-09-28 | Update raylib.h (#2726) | Dor Shapira | |
| 2022-09-26 | Clarified working of ImageDrawCircle and ImageDrawCircleV (#2719) | bXi | |
| 2022-09-22 | WARNING: Several changes on UTF-8/Codepoints API | Ray | |
| - ADDED: `GetCodepointPrevious()` - RENAMED: `GetCodepoint()` -> `GetCodepointNext()`, actually, reimplemented - `GetCodepoint()` has been kept for the moment, for compatibility and also because implementation is different - RENAMED: `TextCodepointsToUTF8()` to `LoadUTF8()`, simpler name and more aligned with raylib conventions (functions loading memory start with Load*()), parameters should be descriptive of functionailty. - ADDED: `UnloadUTF8()`, aligned with `LoadUTF8()` to avoid allocators issues. | |||
| 2022-09-19 | Added: `ImageDrawCircleLines`, `ImageDrawCircleLinesV` (#2713) | Rob Loach | |
| This adds `ImageDrawCircleLines()` and `ImageDrawCircleLinesV()` to draw outlines of circles, and updates `ImageDrawCircle()` draw a filled circle to match the effect of `DrawCircle()` and `DrawCircleLines()`. | |||
| 2022-09-17 | ADDED: `GenImagePerlinNoise()` | Ray | |
| 2022-09-07 | REVIEWED: Data type to unsigned | Ray | |
| 2022-09-04 | REVIEWED: `CheckCollisionPointPoly()` | Ray | |
| 2022-09-04 | Check collision point polygon (#2685) | Jacek | |
| * Update raylib.h * CheckCollisionPointPolygon() * typo | |||
| 2022-08-22 | REVIEWED: M3D implementation #2648 | Ray | |
| 2022-08-05 | Added comments | Ray | |
| 2022-08-02 | Update version to raylib 4.2 | Ray | |
| 2022-07-15 | Added note | Ray | |
| 2022-07-09 | Allow DLL creation using TCC (#2569) | Audi Nugraha | |
| * Fix Undefined Symbol `_ftelli64` * Add files via upload * Update raylib.h * Update raylib.h | |||
| 2022-07-05 | Update raylib.h | Ray | |
| 2022-07-05 | WARNING: BREAKING: REMOVED: `*StorageValue()` functions | Ray | |
| Those functions were platform dependent and user has no control over the file created. They have been removed from raylib and just moved to `core_storage_values` example. | |||
| 2022-07-05 | REMOVED: `GenMeshBinormals()`, actually, never implemented | Ray | |
| 2022-06-12 | Add function to read both X and Y mouse scrolling from a trackpad (#2517) | Steven Schveighoffer | |
| (GetMouseWheelMoveV). | |||
| 2022-06-12 | REVIEWED: `FilePathList`, consider maximum capacity | Ray | |
| 2022-06-11 | WARNING: BREAKING: REDESIGNED: Filepath loading API | Ray | |
| REDESIGNED: `LoadDirectoryFiles()` ADDED: `LoadDirectoryFilesEx()` REDESIGNED: `LoadDroppedFiles()` ADDED: `IsPathFile()` This BIG BREAKING change simplifies the functions and gives more control to the user: - A new `struct FilePathList` has been added to avoid exposing complex pointers. - User is responsible of memory loading/unloading - Filepaths loading support recursive directories and file extension filters | |||
| 2022-06-11 | Update raylib.h | Ray | |
| 2022-06-11 | REVIEWED: Issue with MOUSE_PASSTROUGH #2516 | Ray | |
| 2022-06-11 | New feature: support MOUSE_PASSTHROUGH #2516 | Ray | |
| 2022-06-09 | GetMonitorWidth()/GetMonitorHeight(): return current video resolution ↵ | gulrak | |
| instead max available (#2514) * GetMonitorWidth()/GetMonitorHeight(): current video resolution instead max available * adapt header comment to reflect change | |||
| 2022-06-07 | RENAMED: `BLEND_ALPHA_PREMUL` to `BLEND_ALPHA_PREMULTIPLY` | Ray | |
| 2022-06-06 | WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()` | Ray | |
| RENAMED: `ClearDroppedFiles()` to `UnloadDroppedFiles()` | |||
| 2022-06-06 | WARNING: RENAMED: `GetDirectoryFiles()` to `LoadDirectoryFiles()` | Ray | |
| RENAMED: `ClearDirectoryFiles()` to `UnloadDirectoryFiles()` | |||
| 2022-06-06 | Reviewed latest PR, variable name | Ray | |
| 2022-06-06 | Change WaitTime argument from milliseconds to seconds (#2506) | flashback-fx | |
| 2022-06-02 | Minor tweak | Ray | |
| 2022-05-19 | Improved boolean definitions (#2485) | Jonathan Poncelet | |
| 2022-05-12 | ADDED: `EnableEventWaiting()` / `DisableEventWaiting()` | Ray | |
| Events waiting can be enabled/disabled, it toggles event polling. | |||
| 2022-05-06 | ADDED: `ExportDataAsCode()` | Ray | |
| 2022-05-01 | Reviewed some comments | Ray | |
| 2022-04-29 | Update raylib.h | Ray | |
| 2022-04-06 | WARNING: RENAMED: some parameters from length to size | Ray | |
| When referring to byte array SIZE, I find it more clear than length | |||
| 2022-03-30 | ADDED: Audio stream processors support -WIP- #2212 | Ray | |
| This feature is still under consideration/testing and it doesn't work properly, at least the Delay Effect processor. | |||
| 2022-03-30 | WARNING: BREAKING: REMOVED: `GetRayCollisionModel()` #2405 | Ray | |
| 2022-03-25 | Corrected typo | Ray | |
| 2022-03-25 | Rename audio callback | Ray | |
| 2022-03-24 | ADDED: Audio stream input callback #2212 -WIP- | Ray | |
| WARNING: This addition is based on a PR and it's still under review, not sure if it will be maintained in the future. In general, raylib tries to avoid callbacks usage mechanisms. | |||
| 2022-03-12 | Remove space | Ray | |
| 2022-02-20 | REVIEWED: Some functions input parametes that should be `const` | raysan5 | |
| 2022-02-20 | make const (#2348) | Antonis Geralis | |
| * make const * make const | |||
| 2022-02-17 | follow style guide (#2346) | Antonis Geralis | |
| * follow style guide * Update rmodels.c | |||
| 2022-02-13 | add premultiplied alpha blend mode (#2342) | megagrump | |
| 2022-01-28 | Minor tweak | raysan5 | |
| 2022-01-28 | RENAMED: `GetFileSize()` to `GetFileLength()` | Ray | |
| `GetFileSize()` conflicts with the infamous `windows.h` | |||
| 2022-01-27 | ADDED: `GetFileSize()` | raysan5 | |
| 2022-01-26 | Add DrawTextCodepoints (#2308) | Siddharth Roy | |
| * Add DrawTextCodepoints * Fixed top comment | |||
