| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-10-10 | ADDED: GetFileNameWithoutExt | Ray | |
| 2018-10-09 | Corrected issues with VS2017 compilation | Ray | |
| 2018-10-08 | ADDED: ImageExtractPalette() | Ray | |
| 2018-10-08 | OSX native window keeps breaking... | Ray | |
| 2018-10-08 | Corrected issue with dirent.h inclusion... | Ray | |
| ...and MacOSX OBJC types definition... | |||
| 2018-10-08 | Avoid multiple gl.h inclusions | Ray | |
| Expose native Cocoa Window again... | |||
| 2018-10-08 | dirent.h implementation for MSVC | Ray | |
| This implementation is a bit limited, does not support wide characters directories but it's a temporal solution... This solution uses "io.h" (like MinGW provided one) while other modern solutions use the "windows.h", that result in duplicate symbols issues... need to review it carefully. | |||
| 2018-10-08 | Trying to include dirent.h for MSVC | Ray | |
| 2018-10-08 | Corrected issue with native window handler on OSX | Ray | |
| Could not be retrieved for now... | |||
| 2018-10-08 | Corrected issue with native handler on OSX | Ray | |
| 2018-10-08 | Corrected issue with GetWindowHandle() | Ray | |
| Not supported for the moment, issues with Linux (symbol `Font` redefined) and OSX (NSGL type redefined) | |||
| 2018-10-08 | Multiple changes, check description | Ray | |
| REVIEW: Reorganized global variables for consistency ADDED: GetWindowHandle() to get native window handle ADDED: GetDirectoryFiles() to get files list for a DIR | |||
| 2018-10-07 | README.md: add link to raylib bindings list | Ahmad Fatoum | |
| 2018-10-07 | CMake: report what kind of libraries will be built | Ahmad Fatoum | |
| 2018-10-07 | CMake: accept standard -DBUILD_SHARED_LIBS as well | Ahmad Fatoum | |
| -DBUILD_SHARED_LIBS=OFF == -DSHARED=OFF -DSTATIC=ON -DBUILD_SHARED_LIBS=ON == -DSHARED=ON -DSTATIC=OFF Fixes #626. | |||
| 2018-10-07 | Merge pull request #655 from a3f/master | Ray | |
| core: workaround window not being rendered till moved on macOS Mojave | |||
| 2018-10-07 | core: workaround window not being rendered till moved on macOS Mojave | Ahmad Fatoum | |
| Apple ought to fix their OpenGL implementation, but with OpenGL now deprecated this might not happen. This has been reported upstream in GLFW in glfw/glfw#1334. The workaround comes from kovidgoyal/kitty@b82e74f99 This also fixes the HiDPI (Retina) scaling issues reported in #497, so the workaround is enabled anywhere __APPLE__ is defined. | |||
| 2018-10-07 | raylib.h: include <stdbool.h> if available | Ahmad Fatoum | |
| Previously, if <raylib.h> was #included prior to another header that defined bool, the compilation would fail. This is e.g. the case for <perl.h> and <objc/objc.h> which both fall back to the <stdbool.h> if C99 is available. The following commit includes <objc/objc.h> in src/core.c, which causes the same problem. Avoid this by checking for C99 bool like we already do for C++'s. | |||
| 2018-10-07 | CMake: suppress OpenGL deprecation warnings on macOS Mojave | Ahmad Fatoum | |
| A single warning at configuration time is enough. | |||
| 2018-10-04 | Merge pull request #653 from pamarcos/physac_fix | Ray | |
| [physac] Fix physac's fixed time step | |||
| 2018-10-04 | Fix physac's fixed time step | Pablo Marcos Oltra | |
| 2018-10-01 | Review void pointer incrementation | Ray | |
| 2018-10-01 | Support KXT image file export | Ray | |
| [textures] Added SaveKTX() [rlgl] Exposed rlGetGlTextureFormats() | |||
| 2018-10-01 | Update version number (internally) | Ray | |
| 2018-09-30 | Merge pull request #650 from ChrisDill/master | Ray | |
| Added monitor functions | |||
| 2018-09-30 | Changed monitor functions to use a index | ChrisDill | |
| - Using same idea as SetWindowMonitor to take in a index with 0 being the primary monitor. | |||
| 2018-09-29 | Forgot #else in platform check | ChrisDill | |
| - Added else so return not compiled twice. | |||
| 2018-09-29 | Added platform check | ChrisDill | |
| - Added PLATFORM_DESKTOP check for Monitor functions to try to fix issue on android. - Not sure what return types should be when not on desktop. Added rough guess for now. | |||
| 2018-09-27 | Changed tabs to spaces | ChrisDill | |
| - Fixed tabs used instead of 4 spaces | |||
| 2018-09-27 | Merge remote-tracking branch 'upstream/master' | ChrisDill | |
| 2018-09-27 | Added monitor functions | ChrisDill | |
| - Get number of monitors - Get size, physical size and name of primary monitor. Could pass monitor id instead not sure. | |||
| 2018-09-26 | Updated icon data | Ray | |
| 2018-09-25 | PNG image size optimization | Ray | |
| 2018-09-25 | New icon generation | Ray | |
| Size reduced 91% | |||
| 2018-09-24 | Review iconography | raysan5 | |
| WIP | |||
| 2018-09-22 | Merge pull request #646 from MurrayIRC/master | Ray | |
| Linux Support for VSCode Project | |||
| 2018-09-21 | Merge pull request #6 from MurrayIRC/MurrayIRC-vscode | Murray Campbell | |
| Linux Support for VSCode Project | |||
| 2018-09-21 | Update tasks.json | Murray Campbell | |
| 2018-09-21 | Update c_cpp_properties.json | Murray Campbell | |
| 2018-09-21 | Update Makefile | Murray Campbell | |
| 2018-09-21 | Update launch.json | Murray Campbell | |
| 2018-09-21 | Merge pull request #5 from raysan5/master | Murray Campbell | |
| merge | |||
| 2018-09-19 | Support MP3 wave loading -NOT TESTED- | Ray | |
| 2018-09-18 | enjoy! | Ray | |
| 2018-09-18 | enjoy! | Ray | |
| 2018-09-17 | Support ExportImage() as raw pixel data | Ray | |
| Added note on KTX 2.2 | |||
| 2018-09-17 | Support image export | Ray | |
| 2018-09-17 | Improved data export capabilities! | Ray | |
| REVIEWED: ExportImage() REVIEWED: ExportMesh() ADDED: ExportWave() REMOVED: Internal funcs: SavePNG(), SaveBMP() NOTE: These changes break the API (parameters order) | |||
| 2018-09-14 | Removed TABS | Ray | |
| 2018-09-14 | Update mini_al to v0.8.8 | Ray | |
| Some minor tweaks around | |||
