| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-01-29 | Added comments related to #837 | Ray | |
| 2020-01-27 | Corrected issue with matrix order multiplication #1054 | Ray | |
| 2020-01-27 | Support touch/mouse indistinctly | Ray | |
| REMOVED: IsTouchDetected() | |||
| 2020-01-27 | Review touch input scaling for PLATFORM_WEB #163 | Ray | |
| Now touch inputs scale proportionally to the canvas size | |||
| 2020-01-26 | Review default font scale filter for HighDPI mode | Ray | |
| 2020-01-26 | Minor tweaks | Ray | |
| 2020-01-26 | REVIEWED: GetDirectoryPath() | Ray | |
| 2020-01-24 | ADDED: IsTouchDetected() | Ray | |
| 2020-01-24 | ADDED: GetWorldToScreenEx() | Ray | |
| Addressing issue #1056 | |||
| 2020-01-24 | Addressed issue #1051 | Ray | |
| Allow frustrum culling near/far distance configuration at compile time. | |||
| 2020-01-21 | Remove unneeded traces | Ray | |
| 2020-01-19 | Added SUPPORT_HALFBUSY_WAIT_LOOP | raysan5 | |
| 2020-01-12 | IsFileExtension(): Review issue with no-extension files | Ray | |
| 2020-01-09 | Removed comment | Ray | |
| 2020-01-09 | Review IsFileExtension() to be case-insensitive | Ray | |
| 2020-01-08 | Reorganized some variables for consistency | Ray | |
| 2020-01-05 | Update year to 2020 | raysan5 | |
| 2019-12-16 | Add some comments on desktop multi-touch | Ray | |
| 2019-12-10 | Minor format tweaks for PR #1036 | Ray | |
| 2019-12-10 | SetWindowMonitor made functioning again. (#1036) | Justin | |
| * We get the video mode from the target monitor and use that to set, therefore keeping windowed-fullscreen * Added a GLFW_AUTO_ICONIFY 0 hint so that glfw does not minimize the window when changing focus from a windowed fullscreen window. This is more expected behavior for windowed full screen, when a user alt-tabs or clicks on a window in the other monitor, they expect their windowed-fullscreen window to remaining up. | |||
| 2019-12-04 | Fix `IsMouseButtonReleased()` when press/release events come too fast (#1032) | Oskari Timperi | |
| If press/release events for a mouse button come too fast, then using `IsMouseButtonReleased()` does not work. This has been noticed when using a touchpad on Linux when tapping with two fingers two emulate right mouse button click. The situation looks like this: ``` BeginDrawing <-- current==released, previous==released Pressed <-- current=pressed Released <-- current=released IsMouseButtonReleased <-- returns false because current==previous EndDrawing <-- previous=released ``` The fix is to update the previous mouse button state in addition to current mouse button state when `MouseButtonCallback()` is called by glfw. Now the situation is as follows: ``` BeginDrawing <-- current==released, previous==released Pressed <-- current=pressed, previous=released Released <-- current=released, previous=pressed IsMouseButtonReleased <-- returns true because current!=previous EndDrawing <-- previous=released ``` | |||
| 2019-12-04 | Work on macOS HighDPI issue #826 | raysan5 | |
| 2019-12-04 | Check and testing timming #865 | raysan5 | |
| 2019-12-01 | Review VSync on fullscreen mode | Ray | |
| It seems to work ok on my old Intel HD Graphics card... it should work anywhere else | |||
| 2019-12-01 | fixes for switching full-screen and v-sync (#963) | MasterZean | |
| * fixes for switching full-screen and v-sync * requireVsync flag | |||
| 2019-12-01 | Minor comments tweak | Ray | |
| 2019-11-24 | Review key input queue PR #1012 | raysan5 | |
| Keeping original API | |||
| 2019-11-24 | add api FIFO based character input. (#1012) | Ushio | |
| * add api FIFO based character input. * rename input character functions * replace tab to space x4 #1012 | |||
| 2019-11-08 | [Core] Added ColorFromNormalized which is the reverse of ColorNormalize. (#1011) | ChrisDill | |
| 2019-10-25 | ClearDirectoryFiles(): Corrected issue #994 | Ray | |
| 2019-10-23 | ClearDirectoryFiles() corrected bug | Ray | |
| 2019-10-22 | ClearDirectoryFiles(): Corrected memory leak #991 | Ray | |
| 2019-10-21 | Corrected bug on no-extension | Ray | |
| 2019-10-17 | Remove trailing spaces | Ray | |
| 2019-10-11 | REDESIGNED: IsFileExtension() | Ray | |
| Now it accepts a ';' separated list of extensions, useful to check multiple extensions | |||
| 2019-09-15 | Review DecompressData() types, for consistency | raysan5 | |
| 2019-09-13 | Corect typo | Ray | |
| 2019-09-10 | ADDED: GetWindowPosition() | Ray | |
| 2019-09-09 | ADDED small compression API | Ray | |
| - ADDED: CompressData() - ADDED: DecompressData() | |||
| 2019-09-08 | REVIEW: GetFileName(): Security checks | Ray | |
| 2019-08-27 | Review latest PR | raysan5 | |
| 2019-08-27 | Add screen->world and world->screen functions for 2D; add extended camera2D ↵ | arvyy | |
| example (#947) | |||
| 2019-08-27 | Formatting tweak | raysan5 | |
| 2019-08-27 | Update version in case no config.h is being used | raysan5 | |
| 2019-08-27 | REMOVED: FLAG_SHOW_LOGO | raysan5 | |
| raylib logo animation has been removed. That funtionality was very restrictive, not configurable at all and hardly ever used, also, it added a coupling dependency of `core` module with `shapes` and `text` modules. | |||
| 2019-08-26 | Expose scissor functionality | raysan5 | |
| 2019-08-21 | Review comment | raysan5 | |
| 2019-08-20 | Support mouse cursor on RPI native | raysan5 | |
| Reduced bunnymark limits | |||
| 2019-08-20 | RPI: Corrected issue when creating 3d projection view | raysan5 | |
| 2019-08-16 | PR formatting review | Ray | |
