From ae9cea03f0a7fd7f9348a3f2bb10a23fbd446d99 Mon Sep 17 00:00:00 2001 From: FSasquatch <74960320+ForeignSasquatch@users.noreply.github.com> Date: Sat, 12 Jun 2021 21:53:56 +0530 Subject: [PATCH 1/3] Changed windows-build to build-windows (#1822) --- projects/scripts/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/scripts/README.md b/projects/scripts/README.md index ccc4b4dbe..abb65b77c 100644 --- a/projects/scripts/README.md +++ b/projects/scripts/README.md @@ -6,7 +6,7 @@ exception to this however, and that is Windows, because Windows doesn't have a built-in C compiler. On Windows, you'll need to install [Visual Studio][visual-studio] or the [build tools][vs-tools]. If you didn't install them in the default location, write your changes around -line 101 of [`windows-build.bat`](windows-build.bat). +line 101 of [`build-windows.bat`](build-windows.bat). ## Script customization First of all, the scripts have a few variables at the very top, which From 7d03048f1d3864990b6bd19d24038d011f925f67 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Sat, 12 Jun 2021 22:46:21 +0100 Subject: [PATCH 2/3] updating raylib python cffi version (#1826) * Update BINDINGS.md * Update BINDINGS.md --- BINDINGS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BINDINGS.md b/BINDINGS.md index 5dad05daf..886b8e67c 100644 --- a/BINDINGS.md +++ b/BINDINGS.md @@ -46,7 +46,7 @@ Here it is a list with the ones I'm aware of: | raylib-ruby | 2.6 | [Ruby](https://www.ruby-lang.org/en/) | https://github.com/a0/raylib-ruby | | raylib-mruby | 2.5-dev | [mruby](https://github.com/mruby/mruby) | https://github.com/lihaochen910/raylib-mruby | | raylib-py | 2.0 | [Python](https://www.python.org/) | https://github.com/overdev/raylib-py | -| raylib-python-cffi | 3.5 | [Python](https://www.python.org/) | https://github.com/electronstudio/raylib-python-cffi | +| raylib-python-cffi | 3.7 | [Python](https://www.python.org/) | https://github.com/electronstudio/raylib-python-cffi | | raylib-py-ctbg | 2.6 | [Python](https://www.python.org/) | https://github.com/overdev/raylib-py-ctbg | | jaylib | 3.0 | [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) | https://github.com/electronstudio/jaylib/ | | raylib-java | 2.0 | [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) | https://github.com/XoanaIO/raylib-java | From 929fa5780da0230f4e20bb45549f91d23f8e700d Mon Sep 17 00:00:00 2001 From: Tobias Mock Date: Sun, 13 Jun 2021 11:52:24 +0200 Subject: [PATCH 3/3] Add nullptr check before passing arg (#1825) --- parser/raylib_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/raylib_parser.c b/parser/raylib_parser.c index 751e0cada..f2f3109fc 100644 --- a/parser/raylib_parser.c +++ b/parser/raylib_parser.c @@ -115,7 +115,7 @@ char* CharReplace(char* text, char search, char replace); int main(int argc, char* argv[]) { // Help - if (IsTextEqual(argv[1], "--help", 6)) { + if (argv[1] != NULL && IsTextEqual(argv[1], "--help", 6)) { printf("Usage:\n"); printf(" raylib_parser [--json]\n"); return 0; @@ -123,7 +123,7 @@ int main(int argc, char* argv[]) // Allow changing the output format. int outputFormat = 0; - if (IsTextEqual(argv[1], "--json", 6)) { + if (argv[1] != NULL && IsTextEqual(argv[1], "--json", 6)) { outputFormat = JSON; }