From c01ba2b1769b9230e19ceb65a339a2c02927d22e Mon Sep 17 00:00:00 2001 From: lmp Date: Wed, 21 Aug 2024 11:11:10 +0200 Subject: [PATCH] all: fix case in GitHub URLs --- .github/workflows/ci_visual_tests.yml | 2 +- README.md | 6 +++--- wraps/wren/README.md | 2 +- wraps/wren/v.mod | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci_visual_tests.yml b/.github/workflows/ci_visual_tests.yml index a093b2a..8a724ed 100644 --- a/.github/workflows/ci_visual_tests.yml +++ b/.github/workflows/ci_visual_tests.yml @@ -53,7 +53,7 @@ jobs: chmod +x ./imgur.sh # Get reference images to test against - git clone https://github.com/Larpon/shy-visual-tests + git clone https://github.com/larpon/shy-visual-tests - name: Build SDL run: | diff --git a/README.md b/README.md index a6d402e..2e3fc04 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The `shy` project works both as a V module and a standalone CLI tool. # Games made with Shy -[Puzzle Vibes](https://blackgrain.itch.io/puzzle-vibes) ([Source](https://github.com/Larpon/puzzle_vibes)) +[Puzzle Vibes](https://blackgrain.itch.io/puzzle-vibes) ([Source](https://github.com/larpon/puzzle_vibes)) # Targets @@ -31,7 +31,7 @@ Windows, macOS, Linux, Raspberry PI, Android, Web (WASM/emscripten) and likely m * 2D shape collision detection. * 3D capable (via `sokol_gfx.h`) * Multiple, runtime switchable, render modes (immediate, UI, step). -* [Visually tested](https://github.com/Larpon/shy/blob/master/.github/workflows/ci_visual_tests.yml) for graphic regressions. +* [Visually tested](https://github.com/larpon/shy/blob/master/.github/workflows/ci_visual_tests.yml) for graphic regressions. * Fairly sub-system agnostic. Bring your own ECS, physics engine etc. * [WIP] Assets system for easy loading (and freeing) of all kinds of assets: binary blobs, images, music, sounds etc. @@ -116,7 +116,7 @@ sudo ln -s ~/.vmodules/shy/shy /usr/local/bin/shy ## Shell tab completion (optional) You can install tab completions for your shell by [following the instructions -here](https://github.com/Larpon/shy/blob/fb26741/cmd/complete.v#L11-L38). +here](https://github.com/larpon/shy/blob/fb26741/cmd/complete.v#L11-L38). # Gamepad / Controller support diff --git a/wraps/wren/README.md b/wraps/wren/README.md index eca9607..fab88ed 100644 --- a/wraps/wren/README.md +++ b/wraps/wren/README.md @@ -8,4 +8,4 @@ See the examples folder for usage. # Install -`git clone https://github.com/Larpon/wren.git ~/.vmodules/wren` +`git clone https://github.com/larpon/wren.git ~/.vmodules/wren` diff --git a/wraps/wren/v.mod b/wraps/wren/v.mod index 605df9a..824692a 100644 --- a/wraps/wren/v.mod +++ b/wraps/wren/v.mod @@ -3,6 +3,6 @@ Module { description: 'A wrapper around the Wren scripting language' version: '0.4.0' license: 'MIT' - repo_url: 'https://github.com/Larpon/wren' + repo_url: 'https://github.com/larpon/wren' dependencies: [] }