diff --git a/CHANGELOG.md b/CHANGELOG.md index a35953a..d59e436 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.18.2 + +- Update Rainycolor's domain + ## 0.18.1 - Keys can now be unbinded with Esc diff --git a/README.md b/README.md index dcc0177..af7739c 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is a program that seeks to streamline game data configuration, currently su STARTLINER is four things: -- a mod installer and updater, powered by [Rainycolor Watercolor](https://rainy.patafour.zip), +- a mod installer and updater, powered by [Rainycolor Watercolor](https://rainycolor.org), - a configuration GUI for segatools, - a glorified `start.bat` clicker, with automatic monitor setup and rollback, - [an abstraction allowing data configuration without touching the game directory](https://gitea.tendokyu.moe/akanyan/STARTLINER/wiki/Architecture-details). diff --git a/rust/src/pkg_store.rs b/rust/src/pkg_store.rs index e64ddb5..6a32860 100644 --- a/rust/src/pkg_store.rs +++ b/rust/src/pkg_store.rs @@ -132,7 +132,7 @@ impl PackageStore { prelude::*, }; - let response = reqwest::get(format!("https://rainy.patafour.zip/c/{game}/api/v1/package/")).await?; + let response = reqwest::get(format!("https://www.rainycolor.org/c/{game}/api/v1/package/")).await?; let reader = response .bytes_stream() diff --git a/rust/tauri.conf.json b/rust/tauri.conf.json index e3d7df4..e12cab6 100644 --- a/rust/tauri.conf.json +++ b/rust/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "STARTLINER", - "version": "0.18.1", + "version": "0.18.2", "identifier": "zip.patafour.startliner", "build": { "beforeDevCommand": "bun run dev",