From fb357d0d3c506a328908209201714a44d70248bf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Mar 2026 13:56:11 +0000 Subject: chore(release): bump versions --- .changes/docs-lint.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 .changes/docs-lint.md (limited to '.changes/docs-lint.md') diff --git a/.changes/docs-lint.md b/.changes/docs-lint.md deleted file mode 100644 index ac98c71..0000000 --- a/.changes/docs-lint.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@dropout/docs": "patch:chore" ---- - -Partially apply docs frontend lint fixes -- cgit v1.2.3-70-g09d2 From 9bf4a82772712306adf5107427bcb5a3ee8d25cd Mon Sep 17 00:00:00 2001 From: 苏向夜 <46275354+fu050409@users.noreply.github.com> Date: Sun, 29 Mar 2026 22:15:38 +0800 Subject: Revert "chore(release): bump versions" --- .changes/docs-lint.md | 5 +++++ .changes/effect-check.md | 5 +++++ .changes/game-store.md | 5 +++++ .changes/particle-background.md | 5 +++++ .changes/remove-store.md | 5 +++++ .changes/rewrite-instance-create.md | 5 +++++ .changes/vite-tauri.md | 5 +++++ packages/docs/CHANGELOG.md | 7 ------- packages/docs/package.json | 4 ++-- packages/ui/CHANGELOG.md | 17 ----------------- packages/ui/package.json | 4 ++-- 11 files changed, 39 insertions(+), 28 deletions(-) create mode 100644 .changes/docs-lint.md create mode 100644 .changes/effect-check.md create mode 100644 .changes/game-store.md create mode 100644 .changes/particle-background.md create mode 100644 .changes/remove-store.md create mode 100644 .changes/rewrite-instance-create.md create mode 100644 .changes/vite-tauri.md delete mode 100644 packages/docs/CHANGELOG.md (limited to '.changes/docs-lint.md') diff --git a/.changes/docs-lint.md b/.changes/docs-lint.md new file mode 100644 index 0000000..ac98c71 --- /dev/null +++ b/.changes/docs-lint.md @@ -0,0 +1,5 @@ +--- +"@dropout/docs": "patch:chore" +--- + +Partially apply docs frontend lint fixes diff --git a/.changes/effect-check.md b/.changes/effect-check.md new file mode 100644 index 0000000..3d99d59 --- /dev/null +++ b/.changes/effect-check.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:refactor" +--- + +Rewrite effect instance nullish checking. diff --git a/.changes/game-store.md b/.changes/game-store.md new file mode 100644 index 0000000..0b2f7f6 --- /dev/null +++ b/.changes/game-store.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:refactor" +--- + +Refactor game store and rename `HomePage` component. diff --git a/.changes/particle-background.md b/.changes/particle-background.md new file mode 100644 index 0000000..96b9402 --- /dev/null +++ b/.changes/particle-background.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:refactor" +--- + +Rewrite `ParticleBackground` to modern component design instead of global `window` api call. diff --git a/.changes/remove-store.md b/.changes/remove-store.md new file mode 100644 index 0000000..6c0e44b --- /dev/null +++ b/.changes/remove-store.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:feat" +--- + +Remove all legacy codes in `stores/`. diff --git a/.changes/rewrite-instance-create.md b/.changes/rewrite-instance-create.md new file mode 100644 index 0000000..5443389 --- /dev/null +++ b/.changes/rewrite-instance-create.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:refactor" +--- + +Full rewrite instance create with stepper page instead of modal. diff --git a/.changes/vite-tauri.md b/.changes/vite-tauri.md new file mode 100644 index 0000000..45d5d64 --- /dev/null +++ b/.changes/vite-tauri.md @@ -0,0 +1,5 @@ +--- +"@dropout/ui": "patch:chore" +--- + +Fix vite config to integrate with Tauri. diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md deleted file mode 100644 index 8f904d9..0000000 --- a/packages/docs/CHANGELOG.md +++ /dev/null @@ -1,7 +0,0 @@ -# Changelog - -## v0.1.0-alpha.1 - -### Chores - -- [`906a042`](https://github.com/HydroRoll-Team/DropOut/commit/906a04226be13a7435b775c0f21a685d95fdbf34): Partially apply docs frontend lint fixes ([#123](https://github.com/HydroRoll-Team/DropOut/pull/123) by @fu050409) diff --git a/packages/docs/package.json b/packages/docs/package.json index 59cddc7..08cd10d 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -2,7 +2,7 @@ "name": "@dropout/docs", "private": true, "type": "module", - "version": "0.1.0-alpha.1", + "version": "0.1.0-alpha", "scripts": { "build": "react-router build", "dev": "react-router dev", @@ -38,4 +38,4 @@ "vite": "^7.3.1", "vite-tsconfig-paths": "^6.0.4" } -} \ No newline at end of file +} diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 297aa77..d9e5b4d 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,22 +1,5 @@ # Changelog -## v0.1.0-alpha.4 - -### 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) - -### 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) - -### 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) - ## v0.1.0-alpha.3 ### Refactors diff --git a/packages/ui/package.json b/packages/ui/package.json index 2c04e98..9f329e4 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,7 +1,7 @@ { "name": "@dropout/ui", "private": true, - "version": "0.1.0-alpha.4", + "version": "0.1.0-alpha.3", "type": "module", "scripts": { "dev": "vite", @@ -46,4 +46,4 @@ "typescript": "~5.9.3", "vite": "npm:rolldown-vite@^7" } -} \ No newline at end of file +} -- cgit v1.2.3-70-g09d2 From 9a7997e95d9d19685e6fdfc2cf4aa29358d3c14e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 29 Mar 2026 14:26:42 +0000 Subject: chore(release): bump versions --- .changes/docs-lint.md | 5 ----- .changes/effect-check.md | 6 ------ .changes/game-store.md | 6 ------ .changes/particle-background.md | 6 ------ .changes/remove-store.md | 6 ------ .changes/rewrite-instance-create.md | 6 ------ .changes/vite-tauri.md | 6 ------ packages/docs/CHANGELOG.md | 7 +++++++ packages/docs/package.json | 4 ++-- packages/ui/CHANGELOG.md | 17 +++++++++++++++++ packages/ui/package.json | 4 ++-- src-tauri/CHANGELOG.md | 17 +++++++++++++++++ src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 14 files changed, 47 insertions(+), 47 deletions(-) delete mode 100644 .changes/docs-lint.md delete mode 100644 .changes/effect-check.md delete mode 100644 .changes/game-store.md delete mode 100644 .changes/particle-background.md delete mode 100644 .changes/remove-store.md delete mode 100644 .changes/rewrite-instance-create.md delete mode 100644 .changes/vite-tauri.md create mode 100644 packages/docs/CHANGELOG.md (limited to '.changes/docs-lint.md') diff --git a/.changes/docs-lint.md b/.changes/docs-lint.md deleted file mode 100644 index ac98c71..0000000 --- a/.changes/docs-lint.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@dropout/docs": "patch:chore" ---- - -Partially apply docs frontend lint fixes diff --git a/.changes/effect-check.md b/.changes/effect-check.md deleted file mode 100644 index 5fde2e3..0000000 --- a/.changes/effect-check.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:refactor" -dropout: "patch:refactor" ---- - -Rewrite effect instance nullish checking. diff --git a/.changes/game-store.md b/.changes/game-store.md deleted file mode 100644 index d91848a..0000000 --- a/.changes/game-store.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:refactor" -dropout: "patch:refactor" ---- - -Refactor game store and rename `HomePage` component. diff --git a/.changes/particle-background.md b/.changes/particle-background.md deleted file mode 100644 index 3a173d4..0000000 --- a/.changes/particle-background.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:refactor" -dropout: "patch:refactor" ---- - -Rewrite `ParticleBackground` to modern component design instead of global `window` api call. diff --git a/.changes/remove-store.md b/.changes/remove-store.md deleted file mode 100644 index cf27412..0000000 --- a/.changes/remove-store.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:feat" -dropout: "patch:feat" ---- - -Remove all legacy codes in `stores/`. diff --git a/.changes/rewrite-instance-create.md b/.changes/rewrite-instance-create.md deleted file mode 100644 index e680c6b..0000000 --- a/.changes/rewrite-instance-create.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:refactor" -dropout: "patch:refactor" ---- - -Full rewrite instance create with stepper page instead of modal. diff --git a/.changes/vite-tauri.md b/.changes/vite-tauri.md deleted file mode 100644 index 778cb18..0000000 --- a/.changes/vite-tauri.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:chore" -dropout: "patch:chore" ---- - -Fix vite config to integrate with Tauri. diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md new file mode 100644 index 0000000..8f904d9 --- /dev/null +++ b/packages/docs/CHANGELOG.md @@ -0,0 +1,7 @@ +# Changelog + +## v0.1.0-alpha.1 + +### Chores + +- [`906a042`](https://github.com/HydroRoll-Team/DropOut/commit/906a04226be13a7435b775c0f21a685d95fdbf34): Partially apply docs frontend lint fixes ([#123](https://github.com/HydroRoll-Team/DropOut/pull/123) by @fu050409) diff --git a/packages/docs/package.json b/packages/docs/package.json index 08cd10d..59cddc7 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -2,7 +2,7 @@ "name": "@dropout/docs", "private": true, "type": "module", - "version": "0.1.0-alpha", + "version": "0.1.0-alpha.1", "scripts": { "build": "react-router build", "dev": "react-router dev", @@ -38,4 +38,4 @@ "vite": "^7.3.1", "vite-tsconfig-paths": "^6.0.4" } -} +} \ No newline at end of file diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index d9e5b4d..b1d3254 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## v0.1.0-alpha.4 + +### 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) + +### 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) + ## v0.1.0-alpha.3 ### Refactors diff --git a/packages/ui/package.json b/packages/ui/package.json index 9f329e4..2c04e98 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,7 +1,7 @@ { "name": "@dropout/ui", "private": true, - "version": "0.1.0-alpha.3", + "version": "0.1.0-alpha.4", "type": "module", "scripts": { "dev": "vite", @@ -46,4 +46,4 @@ "typescript": "~5.9.3", "vite": "npm:rolldown-vite@^7" } -} +} \ No newline at end of file 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 a387d6c..c6b6fb8 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$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", -- cgit v1.2.3-70-g09d2