diff options
| author | 2026-01-18 20:22:40 +0100 | |
|---|---|---|
| committer | 2026-01-18 20:22:40 +0100 | |
| commit | ee767338d6db510ef15d6b8cc11f6fb9a6215a43 (patch) | |
| tree | 8110fa30aac176f6b5f1633912e36ab20e07451f | |
| parent | 52619e6bab73a37487d00d2d320a01fbf31cdcb4 (diff) | |
| download | DropOut-ee767338d6db510ef15d6b8cc11f6fb9a6215a43.tar.gz DropOut-ee767338d6db510ef15d6b8cc11f6fb9a6215a43.zip | |
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
| -rw-r--r-- | .github/ISSUE_TEMPLATE/config.yml | 4 | ||||
| -rw-r--r-- | src-tauri/Cargo.toml | 2 | ||||
| -rw-r--r-- | src-tauri/src/main.rs | 2 | ||||
| -rw-r--r-- | ui/src/components/HomeView.svelte | 2 |
4 files changed, 5 insertions, 5 deletions
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<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/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 `<a href="https://github.com/HsiangNianian/DropOut/commit/${hash}" target="_blank" class="text-emerald-500 hover:underline font-mono bg-emerald-500/10 px-1 rounded text-[10px] py-0.5 transition-colors border border-emerald-500/20 hover:border-emerald-500/50">${hash.substring(0, 7)}</a>`; + return `<a href="https://github.com/HydroRoll-Team/DropOut/commit/${hash}" target="_blank" class="text-emerald-500 hover:underline font-mono bg-emerald-500/10 px-1 rounded text-[10px] py-0.5 transition-colors border border-emerald-500/20 hover:border-emerald-500/50">${hash.substring(0, 7)}</a>`; }); // Auto-link users (@user) |