Skip to content

Commit de14d7e

Browse files
committed
Update GitHub username from sullenb to rysb-dev
1 parent e849208 commit de14d7e

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

.github/workflows/deploy-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222
jobs:
2323
build:
2424
# Only run on the main repository, not on forks
25-
if: github.repository == 'sullenb/agari'
25+
if: github.repository == 'rysb-dev/agari'
2626
runs-on: ubuntu-latest
2727
steps:
2828
- name: Checkout

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ jobs:
293293
- uses: actions/checkout@v4
294294
with:
295295
persist-credentials: true
296-
repository: "sullenb/homebrew-tap"
296+
repository: "rysb-dev/homebrew-tap"
297297
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
298298
# So we have access to the formula
299299
- name: Fetch homebrew formulae

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ opt-level = "z"
1414
[workspace.package]
1515
version = "0.17.0"
1616
edition = "2024"
17-
repository = "https://github.com/sullenb/agari"
18-
homepage = "https://github.com/sullenb/agari"
17+
repository = "https://github.com/rysb-dev/agari"
18+
homepage = "https://github.com/rysb-dev/agari"
1919
license = "MIT"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@ Agari is a comprehensive Riichi Mahjong scoring engine written in idiomatic, mod
1414
### Homebrew (macOS and Linux)
1515

1616
```bash
17-
brew install sullenb/tap/agari
17+
brew install rysb-dev/tap/agari
1818
```
1919

2020
### Shell Script (macOS and Linux)
2121

2222
```bash
23-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/sullenb/agari/releases/latest/download/agari-installer.sh | sh
23+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/rysb-dev/agari/releases/latest/download/agari-installer.sh | sh
2424
```
2525

2626
### PowerShell (Windows)
2727

2828
```powershell
29-
powershell -ExecutionPolicy ByPass -c "irm https://github.com/sullenb/agari/releases/latest/download/agari-installer.ps1 | iex"
29+
powershell -ExecutionPolicy ByPass -c "irm https://github.com/rysb-dev/agari/releases/latest/download/agari-installer.ps1 | iex"
3030
```
3131

3232
### From Source
3333

3434
```bash
35-
cargo install --git https://github.com/sullenb/agari
35+
cargo install --git https://github.com/rysb-dev/agari
3636
```
3737

3838
---
@@ -341,7 +341,7 @@ Agari can be used as a Rust library for building Mahjong applications, bots, or
341341

342342
```toml
343343
[dependencies]
344-
agari = { git = "https://github.com/sullenb/agari" }
344+
agari = { git = "https://github.com/rysb-dev/agari" }
345345
```
346346

347347
### Basic Scoring Example

crates/agari-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
name = "agari"
33
version = "0.17.0"
44
edition = "2024"
5-
repository = "https://github.com/sullenb/agari"
6-
homepage = "https://github.com/sullenb/agari"
5+
repository = "https://github.com/rysb-dev/agari"
6+
homepage = "https://github.com/rysb-dev/agari"
77
description = "A Riichi Mahjong hand calculator and scoring engine"
88
license = "MIT"
99

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ci = "github"
1010
# The installers to generate for each app
1111
installers = ["shell", "powershell", "homebrew"]
1212
# A GitHub repo to push Homebrew formulas to
13-
tap = "sullenb/homebrew-tap"
13+
tap = "rysb-dev/homebrew-tap"
1414
# Target platforms to build apps for (Rust target-triple syntax)
1515
targets = ["aarch64-apple-darwin", "aarch64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
1616
# Path that installers should place binaries in

web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Agari Web
22

3-
A web-based Riichi Mahjong calculator powered by the [Agari](https://github.com/sullenb/agari) scoring engine via WebAssembly.
3+
A web-based Riichi Mahjong calculator powered by the [Agari](https://github.com/rysb-dev/agari) scoring engine via WebAssembly.
44

55
## Features
66

web/src/App.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,7 @@
947947

948948
<footer class="footer">
949949
<p>
950-
{$t.footerPoweredBy} <a href="https://github.com/sullenb/agari" target="_blank" rel="noopener">Agari</a>
950+
{$t.footerPoweredBy} <a href="https://github.com/rysb-dev/agari" target="_blank" rel="noopener">Agari</a>
951951
{$t.footerDescription}
952952
</p>
953953
</footer>

0 commit comments

Comments
 (0)