| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-02-21 | Removed flag -fgnu89-inline | Ray | |
| 2018-02-20 | Update README.md | Ray | |
| 2018-02-20 | Update README.md | Ray | |
| 2018-02-20 | Reviewed timming system for macOS | Ray | |
| Apparently, before macOS Sierra version, clock_gettime was not available, using MATCH timming system instead | |||
| 2018-02-19 | Docs: Replace references to raylib develop branch | Ahmad Fatoum | |
| Found by grepping for '(blob|tree)/develop'. See #443 for more information. | |||
| 2018-02-19 | CI: Build artifacts for master, not develop tags | Ahmad Fatoum | |
| See #443 for more information. | |||
| 2018-02-19 | Merge pull request #474 from raysan5/develop | Ray | |
| Integrate develop branch (LAST INTEGRATION) | |||
| 2018-02-19 | Corrected path backslash | Ray | |
| 2018-02-18 | Added comments to review function ImageTextEx() | raysan5 | |
| 2018-02-18 | Support UTF8 basic characters on ImageTextEx() | raysan5 | |
| Supported UTF8 range equivalent to [128..255] (80h..FFh) Exposed and renamed text function GetGlyphIndex() Renamed spriteFont parameter name to simply font Small security check on transmission mission ending screen | |||
| 2018-02-17 | Reviewed transmission mission game | raysan5 | |
| Support string replacing to generate newspaper headline ISSUE: UTF8 characters not supported when drawing to Image | |||
| 2018-02-16 | Merge pull request #470 from jubalh/develop | Ray | |
| Add Builder project files | |||
| 2018-02-16 | Add note about glfw3 and openAL | Michael Vetter | |
| 2018-02-16 | Builder project: Add note about examples | Michael Vetter | |
| 2018-02-16 | Add core_basic_window project example for Builder | Michael Vetter | |
| 2018-02-16 | Add Builder project template | Michael Vetter | |
| 2018-02-16 | CMake: Remove _RAYLIB suffix from -D{SHARED,STATIC}_RAYLIB | Ahmad Fatoum | |
| They were named so for compatibility with make, but make doesn't use the anymore. I always forget whether it's SHARED_RAYLIB or RAYLIB_SHARED... For now, RAYLIB_SHARED and STATIC_RAYLIB may still be used, but print a deprecation warning. | |||
| 2018-02-14 | Merge pull request #467 from raysan5/develop | Ray | |
| Integrate develop branch | |||
| 2018-02-12 | BREAKING CHANGE: Renamed function for consistency | Ray | |
| Rename: GetHexValue() renamed to ColorToInt() Added: ColorToHSV() | |||
| 2018-02-12 | Update README.md | Ray | |
| 2018-02-12 | Merge pull request #465 from raysan5/develop | Ray | |
| Integrate develop branch into master | |||
| 2018-02-12 | Avoid rendering SPACE character! | Ray | |
| 2018-02-12 | Merge pull request #464 from RDR8/develop-make-install-linux | Ray | |
| Linux make install improvements | |||
| 2018-02-12 | Update Makefile | RDR8 | |
| 2018-02-12 | Update Makefile | RDR8 | |
| 2018-02-12 | Update Makefile | RDR8 | |
| 2018-02-12 | Update Makefile | RDR8 | |
| 2018-02-11 | Update Makefiles for Linux installation. See prior commit. | RDR8 | |
| These changes are intended to provide context and control over the Linux make install process. make install RAYLIB_LIBTYPE=SHARED now works as expected. libraylib.so is properly installed with attendant runtime links. The examples will be running against the newly installed libraylib.so unless otherwise specified with RAYLIB_RUNTIME_PATH. See raylib/src/Makefile and raylib/examples/Makefile for usage of RAYLIB_INSTALL_PATH, RAYLIB_H_INSTALL_PATH, and RAYLIB_RUNTIME_PATH variables. RAYLIB_RUNTIME_PATH in particular is interesting for portability since sudo isn't needed. The default configuration and workflow is essentially unchanged and unaffected. | |||
| 2018-02-11 | Update Makefiles for Linux installation. | RDR8 | |
| 2018-02-11 | pkg-config: Empty Requires.private on shared-only build | Ahmad Fatoum | |
| If user doesn't build the static library, `pkg-config --static --libs raylib` should be equivalent to `pkg-config --libs raylib`. | |||
| 2018-02-11 | mini_al: Support {Net,Open}BSD OSS | Ahmad Fatoum | |
| Fixes this build failure: http://www.cpantesters.org/cpan/report/a069fade-0e1f-11e8-a1cf-bb670eaac09d | |||
| 2018-02-11 | Some reviews for Android compilation | Ray | |
| 2018-02-11 | Corrected masteVolume setting | Ray | |
| 2018-02-11 | Reviewed mini_al implementation | Ray | |
| - Some functions renamed - Comments reviewed - Functions reorganized | |||
| 2018-02-10 | Renamed iconography | Ray | |
| 2018-02-09 | Early-exit InitWindow if InitGraphicsDevice fails | Ahmad Fatoum | |
| Otherwise we may run into LoadDefaultFont and crash in rlLoadTexture Also moves InitTimer() before InitGraphicsDevice(), to allow it to be tested even if InitWindow ultimately fails. | |||
| 2018-02-09 | Updated external libraries | Ray | |
| 2018-02-08 | Merge pull request #462 from a3f/develop | Ray | |
| InitWindow: return false if no monitor found | |||
| 2018-02-08 | InitWindow: return false if no monitor found | Ahmad Fatoum | |
| Otherwise we run into an assertion failure inside GLFW's glfwGetVideoMode. Example: http://www.cpantesters.org/cpan/report/b4ba5894-0bdb-11e8-841e-2c60b04e1d2d This is related to #456. | |||
| 2018-02-05 | Added function LoadShaderCode() | Ray | |
| Allows loading of shader from text code string directly | |||
| 2018-02-04 | Merge pull request #460 from raysan5/develop1.9.4-dev | Ray | |
| Integrate develop branch | |||
| 2018-02-04 | Merge branch 'develop' of https://github.com/raysan5/raylib into develop | raysan5 | |
| 2018-02-04 | Incremeted version to align with CMake | raysan5 | |
| 2018-02-04 | Merge pull request #459 from a3f/develop | Ray | |
| Bump version to 1.9.4 | |||
| 2018-02-04 | Bump version to 1.9.4 | Ahmad Fatoum | |
| 2018-02-04 | Travis CI: Don't use external GLFW | Ahmad Fatoum | |
| While nice to test, this would mean that the tagged release will depend on GLFW as well… Therefore disable it for now. | |||
| 2018-02-04 | Merge pull request #458 from raysan5/develop | Ray | |
| Integrate develop branch into master | |||
| 2018-02-04 | Updated raylib version | raysan5 | |
| Note that this version is under development and could be buggy on some platforms... | |||
| 2018-02-04 | Security check in case window initialization fails | raysan5 | |
| 2018-02-04 | Merge branch 'develop' of https://github.com/raysan5/raylib into develop | raysan5 | |
