This commit is contained in:
beerpiss 2024-07-28 01:05:01 +07:00
parent 197debfd3e
commit fa021c1284
4 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View File

@ -952,7 +952,7 @@ checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
[[package]]
name = "saekawa"
version = "0.4.4"
version = "0.4.5"
dependencies = [
"aes",
"cbc",

View File

@ -1,6 +1,6 @@
[package]
name = "saekawa"
version = "0.4.4"
version = "0.4.5"
edition = "2021"
license = "0BSD"

View File

@ -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

View File

@ -146,7 +146,7 @@ pub fn self_update(module: &LibraryHandle) -> Result<bool, SelfUpdateError> {
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::<UpdateInformation>()
@ -169,7 +169,7 @@ pub fn self_update(module: &LibraryHandle) -> Result<bool, SelfUpdateError> {
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
);