aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri
diff options
context:
space:
mode:
authorNtskwK <natsukawa247@outlook.com>2026-03-30 17:28:40 +0800
committerNtskwK <natsukawa247@outlook.com>2026-03-30 17:28:40 +0800
commit0c689afe68792fafca67746b9ece2a06760c6069 (patch)
tree8d0feac4fec8c8ac06994f28949915d348eb3cc9 /src-tauri
parent382dfc68f1ecb09f277f82b0b2e0b466e1c79d06 (diff)
parentc4dc0676d794bca2613be282867d369328ebf073 (diff)
downloadDropOut-0c689afe68792fafca67746b9ece2a06760c6069.tar.gz
DropOut-0c689afe68792fafca67746b9ece2a06760c6069.zip
Merge branch 'main' of https://github.com/HydroRoll-Team/DropOut into chore/docs
Diffstat (limited to 'src-tauri')
-rw-r--r--src-tauri/CHANGELOG.md17
-rw-r--r--src-tauri/Cargo.toml2
-rw-r--r--src-tauri/tauri.conf.json5
3 files changed, 21 insertions, 3 deletions
diff --git a/src-tauri/CHANGELOG.md b/src-tauri/CHANGELOG.md
index 3778d95..4641357 100644
--- a/src-tauri/CHANGELOG.md
+++ b/src-tauri/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## v0.2.0-alpha.6
+
+### Refactors
+
+- [`5b799a1`](https://github.com/HydroRoll-Team/DropOut/commit/5b799a125a970e5e56f29a08b3c86450855fb6c4): Full rewrite instance create with stepper page instead of modal. ([#129](https://github.com/HydroRoll-Team/DropOut/pull/129) by @fu050409)
+- [`ffbfce8`](https://github.com/HydroRoll-Team/DropOut/commit/ffbfce895c37e8e8306d426a2e59e73647ed6a86): Refactor game store and rename `HomePage` component. ([#129](https://github.com/HydroRoll-Team/DropOut/pull/129) by @fu050409)
+- [`18aceb4`](https://github.com/HydroRoll-Team/DropOut/commit/18aceb4ddf01e964d0b81a4e926e42b72c64e355): Rewrite `ParticleBackground` to modern component design instead of global `window` api call. ([#129](https://github.com/HydroRoll-Team/DropOut/pull/129) by @fu050409)
+- [`97fe504`](https://github.com/HydroRoll-Team/DropOut/commit/97fe5046f68b5e4ee5f750945bcc39a27f5eb37b): Rewrite effect instance nullish checking. ([#129](https://github.com/HydroRoll-Team/DropOut/pull/129) by @fu050409)
+
+### New Features
+
+- [`32a4d85`](https://github.com/HydroRoll-Team/DropOut/commit/32a4d85af937e4fd882fa671aee8b72878cc564f): Remove all legacy codes in `stores/`. ([#129](https://github.com/HydroRoll-Team/DropOut/pull/129) by @fu050409)
+
+### Chores
+
+- [`ef478b2`](https://github.com/HydroRoll-Team/DropOut/commit/ef478b29605afbd1c3ec88184b64960e8ad01e71): Fix vite config to integrate with Tauri. ([#128](https://github.com/HydroRoll-Team/DropOut/pull/128) by @fu050409)
+
## v0.2.0-alpha.5
### New Features
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index ccec463..cd830f3 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dropout"
-version = "0.2.0-alpha.5"
+version = "0.2.0-alpha.6"
edition = "2024"
authors = ["HsiangNianian"]
description = "The DropOut Minecraft Game Launcher"
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index 9ab9e6a..c6b6fb8 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -1,11 +1,12 @@
{
+ "$schema": "https://schema.tauri.app/config/2",
"productName": "Dropout",
- "version": "0.2.0-alpha.5",
+ "version": "0.2.0-alpha.6",
"identifier": "com.dropout.launcher",
"build": {
"beforeDevCommand": "pnpm --filter @dropout/ui dev",
"beforeBuildCommand": "pnpm --filter @dropout/ui build",
- "devUrl": "http://127.0.0.1:5173",
+ "devUrl": "http://localhost:1420",
"frontendDist": "../packages/ui/dist"
},
"app": {