| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-12-20 | Review code formatting | Ray San | |
| 2017-12-20 | Some code tweaks | Ray | |
| Audio module requires a complete formatting review.... | |||
| 2017-12-19 | Expose GetTime() function to users | Ray San | |
| Monotonic time since InitWindow() could be retrieved with this function. | |||
| 2017-12-18 | Added some comments on GetTime() | Ray | |
| Reviewing GetTime() functionality | |||
| 2017-12-15 | Support audio module skip on compiling | Ray San | |
| Some programs like tools could not require audio support | |||
| 2017-12-15 | Updated mini_al to latest version | Ray San | |
| 2017-12-15 | Manually review previous PR | Ray San | |
| 2017-12-14 | make raylib not clash with windows-header | user | |
| 2017-12-14 | fix for eventmarker missed in first cl | user | |
| 2017-12-14 | make GetTime available to user of library | user | |
| 2017-12-14 | fix for GetMatrixModelview (former cl) | user | |
| 2017-12-14 | optimized matrixrotate function by removing identity matrix | user | |
| 2017-12-14 | make raymath compiling with msvc in c++ mode | user | |
| 2017-12-14 | make matrix stack work closer to old opengl implementation | user | |
| 2017-12-14 | compilefix for function declaration (win only) | user | |
| 2017-12-14 | added debug-event-markers for opengl so that you're able to set markers for ↵ | user | |
| renderdoc or other gpu debuggers what your program is currently doing | |||
| 2017-12-14 | added possibility to get modelview matrix from rlgl to be able to send it to ↵ | user | |
| shaders | |||
| 2017-12-14 | fixed function declaration differ from implementation | user | |
| 2017-12-14 | proper if-clauses for disabling functionality in text.c | user | |
| 2017-12-14 | added proper define checks for png-save if it's disabled | user | |
| 2017-12-13 | Corrected crash on shader loading | Ray | |
| If shader file could not be found on loading it crashed, instead added fallback to default shader! | |||
| 2017-12-11 | Remove rres support | Ray | |
| Let the user choose if using rres external library | |||
| 2017-12-11 | Remove Meson build system | Ahmad Fatoum | |
| Less maintenance overhead that way, given that make/CMake now also do library versioning. | |||
| 2017-12-11 | Add library versioning to Make/CMake build systems | Ahmad Fatoum | |
| See #401 for the discussion. Also bumps version number to 1.9.2 without the -dev, because neither ELF nor MachO like such a suffix. The -dev suffix will have to be restricted to the git tags. | |||
| 2017-12-10 | Fix CI builds after mini_al changes | Ahmad Fatoum | |
| 2017-12-10 | Fix typo in preprocessor macro | Ahmad Fatoum | |
| 2017-12-09 | Added Wayland support | raysan5 | |
| Updated to latest GLFW library and working on Wayland support, still looking how to implement it on raylib because it just exposes PLATFORM_DESKTOP and defaults to X11 windowing system on Linux... | |||
| 2017-12-05 | Removed OpenAL Soft dependency on building | Ray San | |
| OpenAL Soft backend is still available in audio module, I'm thinking if exposing it for building in some way or just left it there for advance users to switch to it manually in case of necessity... | |||
| 2017-12-05 | Updated external libraries dependencies | Ray San | |
| Added dr_wav for a future use | |||
| 2017-12-05 | Updated library features and dependencies | Ray San | |
| 2017-12-05 | Merge pull request #413 from mackron/dr/mini_al | Ray | |
| mini_al integration | |||
| 2017-12-05 | Update mini_al. | David Reid | |
| 2017-12-05 | Change version number for develop | Ray | |
| Updated raylib version to 1.9-dev for development pourposes. Next raylib version is planned to implement a big amount of changes, so the version bump. | |||
| 2017-12-04 | Moved QuaternionNlerp() function | Ray San | |
| 2017-12-03 | Potential fixes for Raspberry Pi. | David Reid | |
| 2017-11-30 | Merge branch 'develop' of https://github.com/raysan5/raylib into develop | Ray San | |
| 2017-11-30 | Removed GLFW3 linking and added rglfw | Ray San | |
| 2017-11-29 | Fixed broken include for AppVeyor | Martinfx | |
| 2017-11-29 | Fixed use ${LIBS_PRIVATE} for FreeBSD | Martinfx | |
| 2017-11-29 | Added compile with cmake for FreeBSD | Martinfx | |
| 2017-11-29 | Added glfw support for FreeBSD | Martinfx | |
| 2017-11-27 | Support GetCurrentTime() on macOS | Ray San | |
| 2017-11-25 | Build examples and games on Travis CI | Ahmad Fatoum | |
| They were disabled because they failed to build, but this patch set fixes the build on Linux and macOS. This doesn't apply to the AppVeyor build on Windows yet; it currently fails at linking with OpenAL. | |||
| 2017-11-25 | Added authorization token | raysan5 | |
| 2017-11-24 | Setup CMake package target and CI auto-deploy tags | Ahmad Fatoum | |
| cmake --build . --target package # or make package if make is used can now be used to create binary packages for raylib. AppVeyor and Travis CI are configured to push the artifacts that result from building git tags to the related Github releases page. | |||
| 2017-11-24 | Generate and install pkg-config pc file | Ahmad Fatoum | |
| After installation, compiling new programs is possible with $ cc game.c `pkg-config --static --libs --cflags raylib` or $ cc game.c `pkg-config --libs --cflags raylib` depending on configuration Also adds following configuration options: - WITH_PIC "Compile static library as position-independent code" - STATIC_RAYLIB "Build raylib as a static library" - MACOS_FATLIB "Build fat library for both i386 and x86_64 on macOS" | |||
| 2017-11-24 | Potential fixes for audio on RPI and Emscripten builds. | David Reid | |
| 2017-11-24 | Audio: Fix a bug with AudioStreams. | David Reid | |
| This bug is a result of the buffer of an AudioStream being smaller than that of a period of the backend playback device. In this situation, AudioStream's would have pauses between buffer updates because the backend is not able to re-fill the AudioStream buffer's quick enough due to it's periods being longer than the AudioStream buffer. | |||
| 2017-11-23 | Disable CRT "secure" warnings | Ahmad Fatoum | |
| Suppresses 88 of the 213 warnings reported when compiling with MSVC 2015 on AppVeyor. | |||
| 2017-11-23 | Add AppVeyor CI for automatic Windows Builds | Ahmad Fatoum | |
| We already have automatic Linux and macOS build via Travis CI. This adds the same for Windows x86 and x86_64 with both Microsoft Visual Studio 2015 as well as MinGW-w64. | |||
