From 21f116b4dc474c8bef15901d198bbe49d00bde34 Mon Sep 17 00:00:00 2001 From: Tony Bark Date: Mon, 20 May 2024 21:55:10 -0400 Subject: [PATCH] Bumped Raylib dependency - Added Github CI option to getting started section --- README.md | 18 ++++++++++++------ build.zig.zon | 4 ++-- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c94acc9..62d63d0 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,27 @@ See [motivation.md](./docs/motivation.md) for motivation and vision. ### System Requirements -| Platform | Version | Architectures | -| -------- | ------- | --------------- | -| Windows | 10+ | x86_64, aarch64 | -| Linux | 3.16+ | x86_64 | -| macOS | 11.0+ | x86_64, aarch64 | +| Platform | Version | Architectures | +| -------- | ------- | ------------- | +| Windows | 10+ | x86_64, ARM | +| Linux | 3.16+ | x86_64 | +| macOS | 11.0+ | x86_64, ARM | ## Getting Started 1. **Clone the Repository**: ```bash - git clone https://github.com/tonytins/mysimulation.git + git clone https://github.com/simtactics/mysimulation.git git submodule update --init --recursive ``` + Or, if you have the [Github CLI](https://cli.github.com/)... + + ```bash + gh repo clone simtactics/mysimulation + ``` + 2. **Navigate to the Repository**: ```bash diff --git a/build.zig.zon b/build.zig.zon index 0c1a351..a18b585 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -16,8 +16,8 @@ // internet connectivity. .dependencies = .{ .@"raylib-zig" = .{ - .url = "https://github.com/tonytins/raylib-zig/archive/refs/tags/v5.1.103-dev.tar.gz", - .hash = "1220f48ef45b22a393da16f3210b61b87ad9b65d215d02c51189861a57a1b4290059", + .url = "https://github.com/tonytins/raylib-zig/archive/refs/tags/v5.1.104-dev.tar.gz", + .hash = "12209530dc7475f8095a729a46082093578911b74d1cfde28802954fe23de1be411c", }, .clap = .{ .url = "https://github.com/Hejsil/zig-clap/archive/refs/tags/0.8.0.tar.gz",