| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-14 | Reviewed some structs to reduce size and padding | raysan5 | |
| Also updated raylib Wiki about struct sizes in 32bit and 64bit | |||
| 2020-09-13 | Remove function declaration added by error | Ray | |
| 2020-09-13 | ADDED: LoadFontFromMemory() (TTF only) #1327 | Ray | |
| 2020-09-13 | WARNING: REDESIGNED: LoadFontData() | Ray | |
| 2020-09-13 | Minor tweak | Ray | |
| 2020-09-13 | Corrected issue on log | Ray | |
| 2020-09-13 | Update cgltf library to v1.7 | Ray | |
| 2020-09-13 | ADDED: LoadWaveFromMemory() #1327 | Ray | |
| 2020-09-13 | ADDED: LoadImageFromMemory() #1327 | Ray | |
| 2020-09-13 | WARNING: RENAMED: GetExtension() to GetFileExtension() | Ray | |
| 2020-09-07 | REDESIGNED: ColorFromHSV() | raysan5 | |
| Replaced Vector3 by direct values, easier to use and understand | |||
| 2020-09-07 | REVIEW: glfwSetWindowMaximizeCallback() not available on web | raysan5 | |
| 2020-09-01 | Update rlgl.h | raysan5 | |
| 2020-09-01 | MOVED: rlUnproject() [rlgl] -> Vector3Unproject() [raymath] | raysan5 | |
| 2020-09-01 | Review custom blend modes mechanism | raysan5 | |
| rlBlendMode() has been added to rlgl to be used on BLEND_CUSTOM. This functionality is exposed to advance users. In any case, new blending modes could be added if required. | |||
| 2020-09-01 | Multiple blendmodes (#1324) | cedemax | |
| Co-authored-by: max <[email protected]> | |||
| 2020-09-01 | adding new windows functions (#1357) | Juan Medina | |
| 2020-08-30 | Update miniaudio to version 0.10.18 | raysan5 | |
| 2020-08-30 | Remove unused variable | raysan5 | |
| 2020-08-29 | DrawTextEx(): Minor tweak | raysan5 | |
| 2020-08-23 | Reorder some functions | raysan5 | |
| 2020-08-23 | Review last PR formatting to follow raylib standards | raysan5 | |
| 2020-08-23 | work on quat and matrix math - deleted multiple copies of raymath.h causing ↵ | chriscamacho | |
| issues (#1359) Co-authored-by: codifies <[email protected]> | |||
| 2020-08-23 | Corrected compiling issue | raysan5 | |
| When using USE_PTHREADS=1 on libraylib.bc compilation, program requires --shared-memory passed to the linker and despite it compiles, it fails on execution (at least for me). | |||
| 2020-08-20 | Review compilation parameter for objective C code on GLFW | raysan5 | |
| 2020-08-20 | Minor tweak for consistency | raysan5 | |
| 2020-08-20 | Avoid architecture selection on gcc, use correct gcc version instead | raysan5 | |
| Review raylib resource file for DLL compilation | |||
| 2020-08-19 | Support externally provided library name | raysan5 | |
| It can be useful in some cases qhen compiling for multiple architectures | |||
| 2020-08-19 | Review Android arch names to lowercase | raysan5 | |
| 2020-08-19 | Trying to configure android_native_app_glue target compilation | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Trying to automate Android building... | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-19 | Added resource file for DLL compilation info | raysan5 | |
| 2020-08-19 | Add LDFLAGS when required | raysan5 | |
| 2020-08-19 | Update Makefile | raysan5 | |
| 2020-08-17 | Support multiple build architectures (x86, x64) | raysan5 | |
| 2020-08-17 | Improved Makefile clean on Windows | raysan5 | |
| 2020-08-17 | Update Makefile | raysan5 | |
| 2020-08-17 | Update Makefile | raysan5 | |
| 2020-08-16 | RENAMED: FormatText() -> TextFormat() | raysan5 | |
| This function was renamed for consistency in raylib 3.0, just unified all examples to use TextFormat() instead of FormatText() | |||
| 2020-08-15 | Review issue with .fnt -> .png path #1351 | Ray | |
| When .fnt file is in the .exe path, image path was wrongly calculated | |||
| 2020-08-11 | Support mulstiple WAV sampleSize for MusicStream #1340 | raysan5 | |
| 24bit per sample is not supported internally and automatically converted 16bit | |||
| 2020-08-08 | CMake: don't use raylib_static name for MinGW on Windows | Ahmad Fatoum | |
| There are no *.lib files that could overwrite each other when building both static and shared versions of raylib at once. So just use the normal library name without _static suffix. | |||
| 2020-08-06 | Reset close status for next frame #1339 | raysan5 | |
| 2020-08-02 | Update Makefile for web (#1332) | Rfaile313 | |
| When you install emsdk out of the box, the directory is no longer `$(EMSDK_PATH)/python/33.7.4_64bit` but rather `$(EMSDK_PATH)/python/3.7.4-pywin32_64bit` noting the `3.7.4-pywin32_64bit` change on the last file. Thus, without adjusting this in the raylib Makefile it will throw an error: ``` PS C:\raylib\raylib\src> make PLATFORM=PLATFORM_WEB -B emcc -c core.c -Wall -D_DEFAULT_SOURCE -Wno-missing-braces -Werror=pointer-arith -fno-strict-aliasing -std=gnu99 -Os -s USE_GLFW=3 -I. -Iexternal/glfw/include -Iexternal/glfw/deps/mingw -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2 '"python"' is not recognized as an internal or external command, operable program or batch file. ``` However, changing this line in the Makefile compiles raylib for web as expected `"raylib library generated (libraylib.bc)!"` | |||
| 2020-07-31 | LoadSound(): Use memory loading (WAV, OGG, MP3, FLAC) #1312 | raysan5 | |
