Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
edef5cc6dc | |||
2dad0de4f1 |
@ -1,3 +1,11 @@
|
|||||||
|
## 0.18.3
|
||||||
|
|
||||||
|
- Updated Rainycolor's domain・真
|
||||||
|
|
||||||
|
## 0.18.2
|
||||||
|
|
||||||
|
- Updated Rainycolor's domain
|
||||||
|
|
||||||
## 0.18.1
|
## 0.18.1
|
||||||
|
|
||||||
- Keys can now be unbinded with Esc
|
- Keys can now be unbinded with Esc
|
||||||
|
@ -9,7 +9,7 @@ This is a program that seeks to streamline game data configuration, currently su
|
|||||||
|
|
||||||
STARTLINER is four things:
|
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 configuration GUI for segatools,
|
||||||
- a glorified `start.bat` clicker, with automatic monitor setup and rollback,
|
- 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).
|
- [an abstraction allowing data configuration without touching the game directory](https://gitea.tendokyu.moe/akanyan/STARTLINER/wiki/Architecture-details).
|
||||||
|
@ -109,7 +109,7 @@ impl Package {
|
|||||||
loc: None,
|
loc: None,
|
||||||
rmt: Some(Remote {
|
rmt: Some(Remote {
|
||||||
package_url: p.package_url,
|
package_url: p.package_url,
|
||||||
download_url: v.download_url,
|
download_url: v.download_url.replace("https://rainy.patafour.zip/", "https://www.rainycolor.org/"),
|
||||||
icon: v.icon,
|
icon: v.icon,
|
||||||
deprecated: p.is_deprecated,
|
deprecated: p.is_deprecated,
|
||||||
nsfw: p.has_nsfw_content,
|
nsfw: p.has_nsfw_content,
|
||||||
|
@ -132,7 +132,7 @@ impl PackageStore {
|
|||||||
prelude::*,
|
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
|
let reader = response
|
||||||
.bytes_stream()
|
.bytes_stream()
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "STARTLINER",
|
"productName": "STARTLINER",
|
||||||
"version": "0.18.1",
|
"version": "0.18.3",
|
||||||
"identifier": "zip.patafour.startliner",
|
"identifier": "zip.patafour.startliner",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "bun run dev",
|
"beforeDevCommand": "bun run dev",
|
||||||
|
Reference in New Issue
Block a user