From b7d89cb7b93537c5489e64965bb39f3ed9088489 Mon Sep 17 00:00:00 2001 From: Nikolas Date: Thu, 7 Aug 2025 21:27:11 +0200 Subject: [PATCH] Repository move --- README.md | 6 +++--- project_setup.ps1 | 2 +- project_setup.sh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 8e86c0a..a7ee07e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![logo](https://github.com/Not-Nik/raylib-zig/raw/devel/logo/logo.png) +![logo](https://github.com/raylib-zig/raylib-zig/raw/devel/logo/logo.png) # raylib-zig @@ -6,7 +6,7 @@ Manually tweaked, auto-generated [raylib](https://github.com/raysan5/raylib) bin Bindings tested on raylib version 5.6-dev and Zig 0.14.0 -Thanks to all the [contributors](https://github.com/Not-Nik/raylib-zig/graphs/contributors) for their help with this +Thanks to all the [contributors](https://github.com/raylib-zig/raylib-zig/graphs/contributors) for their help with this binding. ## Example @@ -64,7 +64,7 @@ want to run an example, say `basic_window` run `zig build basic_window` Download and add raylib-zig as a dependency by running the following command in your project root: ``` -zig fetch --save git+https://github.com/Not-Nik/raylib-zig#devel +zig fetch --save git+https://github.com/raylib-zig/raylib-zig#devel ``` Then add raylib-zig as a dependency and import its modules and artifact in your `build.zig`: diff --git a/project_setup.ps1 b/project_setup.ps1 index b56c9e2..e75e62e 100644 --- a/project_setup.ps1 +++ b/project_setup.ps1 @@ -65,7 +65,7 @@ pub fn build(b: *std.Build) !void { New-Item -Name "build.zig" -ItemType "file" -Value $BUILD_DOT_ZIG -Force -zig fetch --save git+https://github.com/Not-Nik/raylib-zig#devel +zig fetch --save git+https://github.com/raylib-zig/raylib-zig#devel New-Item -Name "resources" -ItemType "directory" New-Item -Name "resources/placeholder.txt" -ItemType "file" -Value "" -Force diff --git a/project_setup.sh b/project_setup.sh index 4f58ec2..b15e01f 100755 --- a/project_setup.sh +++ b/project_setup.sh @@ -63,7 +63,7 @@ pub fn build(b: *std.Build) !void { b.installArtifact(exe); }' >> build.zig -zig fetch --save git+https://github.com/Not-Nik/raylib-zig#devel +zig fetch --save git+https://github.com/raylib-zig/raylib-zig#devel mkdir resources touch resources/placeholder.txt