summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2022-06-12Reviewed latest PRRay
2022-06-12Add function to read both X and Y mouse scrolling from a trackpad (#2517)Steven Schveighoffer
(GetMouseWheelMoveV).
2022-06-12REVIEWED: `FilePathList`, consider maximum capacityRay
2022-06-12Update models_skybox.cRay
2022-06-12Update text_font_filters.cRay
2022-06-12Update core_drop_files.cRay
2022-06-12Update core_drop_files.cRay
2022-06-11WARNING: BREAKING: REDESIGNED: Filepath loading APIRay
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-11Remove physics projectsRay
2022-06-11Update config.hRay
2022-06-11Update raylib.hRay
2022-06-11REVIEWED: Issue with MOUSE_PASSTROUGH #2516Ray
2022-06-11New feature: support MOUSE_PASSTHROUGH #2516Ray
2022-06-09Minor formattng tweakRay
2022-06-09GetMonitorWidth()/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-08Update README.mdRay
2022-06-08Update CHANGELOGRay
2022-06-08Update CHANGELOGRay
2022-06-08Update BINDINGS.md (#2513)rc-05
2022-06-07Unify busy waiting behavior across conditional compilation branches (#2508)flashback-fx
* Unify busy waiting behavior across conditional compilation branches * Inline busy waiting code instead of using static function
2022-06-07Update CHANGELOGRay
2022-06-07Update CHANGELOGRay
2022-06-07Update CHANGELOGRay
2022-06-07Update CHANGELOGRay
2022-06-07Update CHANGELOGRay
2022-06-07RENAMED: `BLEND_ALPHA_PREMUL` to `BLEND_ALPHA_PREMULTIPLY`Ray
2022-06-07Added raylib 4.2 release CHANGELOGRay
2022-06-07Added rea changeRay
2022-06-07REVIEWED: Compilation warningsRay
2022-06-07Update `cl-raylib` binding (#2509)Daw-Ran Liou
Commit d57c8136426b7cc8a39e77f05097c8585d4bb1eb from longlene/cl-raylib now puts the binding on track with raylib version 4.0.
2022-06-06Update android.ymlRay
2022-06-06WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()`Ray
RENAMED: `ClearDroppedFiles()` to `UnloadDroppedFiles()`
2022-06-06WARNING: RENAMED: `GetDirectoryFiles()` to `LoadDirectoryFiles()`Ray
RENAMED: `ClearDirectoryFiles()` to `UnloadDirectoryFiles()`
2022-06-06Reviewed latest PR, variable nameRay
2022-06-06Change WaitTime argument from milliseconds to seconds (#2506)flashback-fx
2022-06-06WARNING: REMOVED `raygui` from `raylib/src/extras`Ray
2022-06-06WARNING: Removed `physac` from raylib sources/examplesRay
`physac` is available on its own repo
2022-06-05REVIEWED: Mouse device support on `PLATFORM_DRM` #2381Ray
2022-06-05Fix regression that was causing video stuttering (#2503)flashback-fx
2022-06-02Minor tweakRay
2022-06-02Update text_draw_3d.cRay
2022-05-31Merge branch 'master' of https://github.com/raysan5/raylibRay
2022-05-31REVIEWED: Batch limits check #2489Ray
2022-05-31chore: Set permissions for GitHub actions (#2496)Naveen
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <[email protected]>
2022-05-30REVIEWED: `DrawBillboardPro()` #2494Ray
2022-05-29Correct typoRay
2022-05-29Review log messagesRay
2022-05-20ADDED: `-latomic` linkage, required by `miniaudio` on ARM 32bit #2452Ray
2022-05-20use GetWindowScaleDPI to calculate size for rlReadScreenPixels in ↵gulrak
screenshot/recording (#2446)
2022-05-20Fixed Android CMake build error (#2486)Patrick
`android_native_app_glue.c` wasn't appended to the `raylib_sources` as other libraries were. Co-authored-by: Patrick Martin <[email protected]>