| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-10-19 | REVIEWED: `rlLoadTexture()` #3440 | Ray | |
| 2023-10-18 | REVIEWED: `raylib 5.0-dev` version for a future release | Ray | |
| 2023-10-18 | REVIEWED: Move `InitWindow()`/`CloseWindow()` to `rcore.c` #3313 | Ray | |
| 2023-10-17 | fix build.zig (#3433) | Michael Scherbakow | |
| for zig master (2023-10-17) | |||
| 2023-10-17 | [raudio] Implement GetMasterVolume() (#3434) | Alexey Kutepov | |
| It feels a little unfinished when you can SetMasterVolume but can't really Get it. So to finish the symmetry here is the GetMasterVolume implementation. | |||
| 2023-10-17 | Fix SDL keyboard issue (#3435) | Le Juez Victor | |
| * Fix SDL keyboard issue We have added a mapping table between raylib keys and SDL scancodes. * Change `ScancodeToKey` array type | |||
| 2023-10-17 | [core] Add some missing implementations to `SDL` (#3432) | ubkp | |
| * Add missing implementations * Add missing implementations 2 * Add missing implementations 3 * Add missing implementations 4 * Add missing implementations 5 | |||
| 2023-10-17 | Added some notes for alternative implementations #3362 | Ray | |
| 2023-10-17 | Update models_mesh_generation.c | Ray | |
| 2023-10-17 | Implement GetCurrentMonitor in rcore_desktop_sdl (#3431) | Dor Shapira | |
| * Implemented GetCurrentMonitor * remove traceloog in GetCurrentMonitor | |||
| 2023-10-16 | Remove rcore.h include from android (#3429) | ubkp | |
| 2023-10-16 | Make sure rcore.o gets compiled in more situations (#3423) | Peter0x44 | |
| Currently doing the following: ``` make touch rcore_desktop.c make ``` Will not result in rcore.o getting compiled again, despite that rcore_desktop.c has changed This commit resolves that | |||
| 2023-10-16 | Fix GenMeshPlane when resX != resZ (#3425) | neyrox | |
| Co-authored-by: Stanislav Yablonskiy <[email protected]> | |||
| 2023-10-16 | [core] Fix some mouse issues on `SDL` (#3428) | ubkp | |
| * Fix mouse wheel getting stucked scrolling up or down * Fix mouse movement on 3D * Fix mouse button presses | |||
| 2023-10-16 | ADDED: NEW PLATFORM: SDL (DESKTOP) `rcore_desktop_sdl` #3313 | Ray | |
| 2023-10-16 | Inclusion of Matte to BINDINGS.md (#3427) | Johnathan Corkery | |
| 2023-10-14 | [core] Change axisCount to be an array (#3421) | MichaelFiber | |
| * Update `PLATFORM_DRM` implementation of `GetGamepadAxisCount` * Update * Update `PLATFORM_DRM` implementation of `GetGamepadName` * Add example to test gamepad info functions Fix typo * Update new gamepad info example * Move axis count update out of GamepadThread - race condition * Remove pointless if statement * Start integrating stuff from the mikesinput lib * Add more logging * Add semicolon * Add forgotten static * More fixes * Update axisCount to be array * More debugging * Add forgotten index to ready check * Add path logging * Missing parenthesis * Add missing slash * Fix axis count being reset to 0 * Fix missing paren * Test polling joystick button events * Major updates * Fix missing array index * Fix another missing array index * Update example * dumb logging * Wrong constant for ev.code handling * More dumb logging * Remove some logging * Add FPS to gamepad info example and try for max FPS * tweak * Revert example * Add fps back * Clean up after merge * Switch axisCount to be an array | |||
| 2023-10-14 | Remove the rcore.h include from drm, web, template (#3420) | ubkp | |
| 2023-10-14 | Fix some omissions (#3418) | Le Juez Victor | |
| Changes the return type of `InitGraphicsDevice()` from `bool` to `int`. Adds a return at the end of `InitPlatform()`. | |||
| 2023-10-14 | REVIEWED: `SetMouseCursor()` #3416 | Ray | |
| 2023-10-14 | Fix SetMouseCursor implementation for PLATFORM_WEB (#3416) | BeardedBread | |
| * Fix SetMouseCursor implementation for PLATFORM_WEB - Restrict function to only set the cursor inside the canvas * Set the CORE input mouse | |||
| 2023-10-14 | Fix raygui.c leftover from zig build (#3417) | Blue | |
| 2023-10-14 | Fix screen size check in `InitPlatform()` (#3415) | Le Juez Victor | |
| 2023-10-14 | Implement SetMouseCursor for PLATFORM_WEB (#3414) | BeardedBread | |
| 2023-10-14 | Make sure CORE.Window.ready is set | Ray | |
| 2023-10-14 | WARNING: REDESIGN: `InitPlatform()` to initialize all platform data #3313 | Ray | |
| `InitGraphicsDevice()` could be confusing because the function actually initialized many things: window, graphics, inputs, callbacks, timming, storage... restructured it. | |||
| 2023-10-14 | tweaks | Ray | |
| 2023-10-14 | Minor tweaks | Ray | |
| 2023-10-13 | Add Raylib.lean to BINDINGS.md (#3409) | Daniil Kisel | |
| 2023-10-13 | fix zig syntax errors in examples, and make it install executables correctly ↵ | Purple4pur | |
| (#3395) | |||
| 2023-10-13 | Fix `UpdateSound` parameter name (#3405) | Daniil Kisel | |
| 2023-10-13 | Normalize `gestureEvent.position` coordinates (#3406) | Le Juez Victor | |
| Fixed the fact that coordinates were not normalized on Android, preventing detection of `GESTURE_DOUBLE_TAP` | |||
| 2023-10-13 | Fix `android`, `drm` compilation issue on `InitWindow` (#3407) | ubkp | |
| * Fix drm compilation issue on InitWindow * Fix android compilation issue on InitWindow | |||
| 2023-10-13 | Ported to stb_image_resize2.h (#3403) | Babak | |
| 2023-10-13 | Fix `GetMouseDelta()` issue for Android (#3404) | Le Juez Victor | |
| 2023-10-13 | Moved some platforms functions to generic `rcore` #3313 | Ray | |
| Reviewed `InitWindow()` to clearly note platform specific code | |||
| 2023-10-11 | REVIEWED: `TextFormat()`, added "..." for truncation #3366 | Ray | |
| It seems more standard than [TRUN] | |||
| 2023-10-11 | Fix windowMin/Max to screenMin/Max for android, drm, template (#3400) | ubkp | |
| 2023-10-11 | REVIEWED: #3399, Fix #3366 | Ray | |
| 2023-10-11 | [rtext] TextFormat() warn user if buffer overflow occured. (#3399) | Murlocohol | |
| * [rtext] TextFormat now alerts user to truncation. * Update rtext.c * Update rcore.c * Update rtext.c | |||
| 2023-10-11 | Reorganized some functions, `WaitTime()` is common to all platforms | Ray | |
| 2023-10-11 | Reordered one function | Ray | |
| 2023-10-11 | REVIEWED: Mouse and Touch functions generic to all platforms #3313 | Ray | |
| 2023-10-11 | Added gamepad functions as generic for all platforms | Ray | |
| 2023-10-11 | RENAMED: `rcore_custom` to `rcore_template` | Ray | |
| 2023-10-11 | Split drm update input (#3397) | MichaelFiber | |
| * Update `PLATFORM_DRM` implementation of `GetGamepadAxisCount` * Update * Update `PLATFORM_DRM` implementation of `GetGamepadName` * Add example to test gamepad info functions Fix typo * Update new gamepad info example * Move axis count update out of GamepadThread - race condition * Remove pointless if statement | |||
| 2023-10-10 | Added comments and review some functions #3313 | Ray | |
| 2023-10-10 | Added some comments and tweaks #3313 | Ray | |
| 2023-10-10 | Update rtextures.c | Ray | |
| 2023-10-10 | REVIEWED: Fix #3387 | Ray | |
