aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2026-01-18 16:41:01 +0000
committer苏向夜 <fu050409@163.com>2026-01-19 10:50:40 +0800
commit549b4b443f12c5dd22c020dcec1e0e88c2202d13 (patch)
treeeef0d979e209931002df44494c4cdcf8e5b6ca3f /src-tauri
parentf57b6639424eb0258292870512e78c0670d3b94d (diff)
downloadDropOut-549b4b443f12c5dd22c020dcec1e0e88c2202d13.tar.gz
DropOut-549b4b443f12c5dd22c020dcec1e0e88c2202d13.zip
chore(release): bump versions
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/CHANGELOG.md7
-rw-r--r--src-tauri/Cargo.toml2
-rw-r--r--src-tauri/src/main.rs2
-rw-r--r--src-tauri/tauri.conf.json2
4 files changed, 10 insertions, 3 deletions
diff --git a/src-tauri/CHANGELOG.md b/src-tauri/CHANGELOG.md
new file mode 100644
index 0000000..4b2d22b
--- /dev/null
+++ b/src-tauri/CHANGELOG.md
@@ -0,0 +1,7 @@
+# Changelog
+
+## v0.2.0-alpha.1
+
+### New Features
+
+- [`e7ac28c`](https://github.com/HydroRoll-Team/DropOut/commit/e7ac28c6b8467a8fca0a3b61ba498e4742d3a718): Prepare for alpha mode pre-release. ([#62](https://github.com/HydroRoll-Team/DropOut/pull/62) by @fu050409)
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index acf9564..74b0203 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dropout"
-version = "0.2.0-alpha"
+version = "0.2.0-alpha.1"
edition = "2021"
authors = ["HsiangNianian"]
description = "The DropOut Minecraft Game Launcher"
diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs
index 35e2ef5..e4d0a2e 100644
--- a/src-tauri/src/main.rs
+++ b/src-tauri/src/main.rs
@@ -2141,7 +2141,7 @@ struct GithubRelease {
async fn get_github_releases() -> Result<Vec<GithubRelease>, String> {
let client = reqwest::Client::new();
let res = client
- .get("https://api.github.com/repos/HsiangNianian/DropOut/releases")
+ .get("https://api.github.com/repos/HydroRoll-Team/DropOut/releases")
.header("User-Agent", "DropOut-Launcher")
.send()
.await
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index fec2eb3..2f0ace7 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -1,6 +1,6 @@
{
"productName": "dropout",
- "version": "0.2.0-alpha",
+ "version": "0.2.0-alpha.1",
"identifier": "com.dropout.launcher",
"build": {
"beforeDevCommand": "pnpm --filter @dropout/ui dev",