From fa021c12842d7ff45c87789da1d07889efeba872 Mon Sep 17 00:00:00 2001 From: beerpiss Date: Sun, 28 Jul 2024 01:05:01 +0700 Subject: [PATCH] rename --- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- src/updater/mod.rs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5630b57..68273f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -952,7 +952,7 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" [[package]] name = "saekawa" -version = "0.4.4" +version = "0.4.5" dependencies = [ "aes", "cbc", diff --git a/Cargo.toml b/Cargo.toml index b8762d7..70589a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "saekawa" -version = "0.4.4" +version = "0.4.5" edition = "2021" license = "0BSD" diff --git a/README.md b/README.md index f696566..f991db9 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ CHUNITHM hook to submit your scores to Tachi every credit. ### Installation - [Install Visual C++ Redistributable 2022](https://github.com/abbodi1406/vcredist/releases/latest) if you haven't already. -- Download the [latest release](https://github.com/beerpiss/saekawa/releases/latest) +- Download the [latest release](https://github.com/beer-psi/saekawa/releases/latest) - Extract the zip (if you downloaded the zip) and put `saekawa.dll` in the game folder, where `chusanApp.exe`/`chuniApp.exe` is (usually the `bin` folder) -- Create and edit the [config file](https://github.com/beerpiss/saekawa/blob/trunk/res/saekawa.toml) +- Create and edit the [config file](https://github.com/beer-psi/saekawa/blob/trunk/res/saekawa.toml) (download a config file pre-filled with your Tachi API key [here](https://kamai.tachi.ac/client-file-flow/CXSaekawa)), and place it in the same folder as the DLL. - When you start the game, inject the DLL into the game process. For segatools, that would be diff --git a/src/updater/mod.rs b/src/updater/mod.rs index 80bfd3e..1df40f9 100644 --- a/src/updater/mod.rs +++ b/src/updater/mod.rs @@ -146,7 +146,7 @@ pub fn self_update(module: &LibraryHandle) -> Result { info!("Checking for updates..."); let response = agent - .get("https://beerpiss.github.io/saekawa/update.json") + .get("https://beer-psi.github.io/saekawa/update.json") .call() .context(FailedRequestingUpdateSnafu)? .into_json::() @@ -169,7 +169,7 @@ pub fn self_update(module: &LibraryHandle) -> Result { info!("Downloading update v{}...", response.version); let url = format!( - "https://github.com/beerpiss/saekawa/releases/download/v{}/saekawa.dll", + "https://github.com/beer-psi/saekawa/releases/download/v{}/saekawa.dll", response.version );