From e7ac28c6b8467a8fca0a3b61ba498e4742d3a718 Mon Sep 17 00:00:00 2001 From: 苏向夜 Date: Sun, 18 Jan 2026 18:24:09 +0800 Subject: ci(semifold): prepare for alpha release --- src-tauri/Cargo.toml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src-tauri/Cargo.toml') diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index ecd0beb..78743cd 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dropout" -version = "0.1.26" +version = "0.2.0-alpha" edition = "2021" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" @@ -36,12 +36,6 @@ regex = "1.12.2" [build-dependencies] tauri-build = { version = "2.0", features = [] } -[profile.dev] -opt-level = 0 - -[profile.release] -opt-level = 3 - [package.metadata.deb] depends = "libgtk-3-0" section = "games" -- cgit v1.2.3-70-g09d2 From f57b6639424eb0258292870512e78c0670d3b94d Mon Sep 17 00:00:00 2001 From: 苏向夜 Date: Mon, 19 Jan 2026 00:34:03 +0800 Subject: chore(tauri): mark tauri crate as private --- src-tauri/Cargo.toml | 1 + 1 file changed, 1 insertion(+) (limited to 'src-tauri/Cargo.toml') diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 78743cd..acf9564 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -6,6 +6,7 @@ authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" license = "MIT" repository = "https://github.com/HsiangNianian/DropOut" +publish = false [dependencies] serde = { version = "1.0", features = ["derive"] } -- cgit v1.2.3-70-g09d2 From ee767338d6db510ef15d6b8cc11f6fb9a6215a43 Mon Sep 17 00:00:00 2001 From: "Begonia, HE" <163421589+BegoniaHe@users.noreply.github.com> Date: Sun, 18 Jan 2026 20:22:40 +0100 Subject: chore: migrate repository from HsiangNianian to HydroRoll-Team - Updated repository URL in Cargo.toml - Updated GitHub API endpoint in main.rs - Updated commit links in HomeView.svelte - Updated issue template links in config.yml Reviewed-by: Claude Sonnet 4.5 --- .github/ISSUE_TEMPLATE/config.yml | 4 ++-- src-tauri/Cargo.toml | 2 +- src-tauri/src/main.rs | 2 +- ui/src/components/HomeView.svelte | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src-tauri/Cargo.toml') diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b2dbc20..dfb46d9 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,8 +4,8 @@ contact_links: url: https://dropout.hydroroll.team about: Read the project documentation and guides - name: Discussions - url: https://github.com/HsiangNianian/DropOut/discussions + url: https://github.com/HydroRoll-Team/DropOut/discussions about: Ask questions and discuss ideas with the community - name: Releases - url: https://github.com/HsiangNianian/DropOut/releases + url: https://github.com/HydroRoll-Team/DropOut/releases about: Download the latest version or view changelog diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index e6a8967..e1b2ab3 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" authors = ["HsiangNianian"] description = "The DropOut Minecraft Game Launcher" license = "MIT" -repository = "https://github.com/HsiangNianian/DropOut" +repository = "https://github.com/HydroRoll-Team/DropOut" [dependencies] serde = { version = "1.0", features = ["derive"] } diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 2871b03..8d73cc2 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -1946,7 +1946,7 @@ struct GithubRelease { async fn get_github_releases() -> Result, 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/ui/src/components/HomeView.svelte b/ui/src/components/HomeView.svelte index 2fa8390..573d9da 100644 --- a/ui/src/components/HomeView.svelte +++ b/ui/src/components/HomeView.svelte @@ -108,7 +108,7 @@ // GitHub commit hash linking (simple version for 7-40 hex chars inside backticks) processed = processed.replace(/`([0-9a-f]{7,40})`/g, (match, hash) => { - return `${hash.substring(0, 7)}`; + return `${hash.substring(0, 7)}`; }); // Auto-link users (@user) -- cgit v1.2.3-70-g09d2 From 549b4b443f12c5dd22c020dcec1e0e88c2202d13 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 18 Jan 2026 16:41:01 +0000 Subject: chore(release): bump versions --- .changes/alpha.md | 6 ------ .github/ISSUE_TEMPLATE/config.yml | 4 ++-- src-tauri/CHANGELOG.md | 7 +++++++ src-tauri/Cargo.toml | 2 +- src-tauri/src/main.rs | 2 +- src-tauri/tauri.conf.json | 2 +- ui/CHANGELOG.md | 7 +++++++ ui/package.json | 4 ++-- ui/src/components/HomeView.svelte | 2 +- 9 files changed, 22 insertions(+), 14 deletions(-) delete mode 100644 .changes/alpha.md create mode 100644 src-tauri/CHANGELOG.md create mode 100644 ui/CHANGELOG.md (limited to 'src-tauri/Cargo.toml') diff --git a/.changes/alpha.md b/.changes/alpha.md deleted file mode 100644 index d6f82b9..0000000 --- a/.changes/alpha.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@dropout/ui": "patch:feat" -dropout: "patch:feat" ---- - -Prepare for alpha mode pre-release. diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index b2dbc20..dfb46d9 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -4,8 +4,8 @@ contact_links: url: https://dropout.hydroroll.team about: Read the project documentation and guides - name: Discussions - url: https://github.com/HsiangNianian/DropOut/discussions + url: https://github.com/HydroRoll-Team/DropOut/discussions about: Ask questions and discuss ideas with the community - name: Releases - url: https://github.com/HsiangNianian/DropOut/releases + url: https://github.com/HydroRoll-Team/DropOut/releases about: Download the latest version or view changelog 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, 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", diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md new file mode 100644 index 0000000..4b2d22b --- /dev/null +++ b/ui/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/ui/package.json b/ui/package.json index 934b149..1e30b01 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "@dropout/ui", - "version": "0.2.0-alpha", + "version": "0.2.0-alpha.1", "private": true, "type": "module", "scripts": { @@ -38,4 +38,4 @@ "typescript": "~5.9.3", "vite": "npm:rolldown-vite@7.2.5" } -} +} \ No newline at end of file diff --git a/ui/src/components/HomeView.svelte b/ui/src/components/HomeView.svelte index 2fa8390..573d9da 100644 --- a/ui/src/components/HomeView.svelte +++ b/ui/src/components/HomeView.svelte @@ -108,7 +108,7 @@ // GitHub commit hash linking (simple version for 7-40 hex chars inside backticks) processed = processed.replace(/`([0-9a-f]{7,40})`/g, (match, hash) => { - return `${hash.substring(0, 7)}`; + return `${hash.substring(0, 7)}`; }); // Auto-link users (@user) -- cgit v1.2.3-70-g09d2