diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8f1b6a1..30c86fc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,7 +11,7 @@ Clone the repo and install npm dependencies: ```bash -git clone https://github.com/corp-0/PuduLauncher.git +git clone https://github.com/unitystation/PuduLauncher.git cd PuduLauncher npm install ``` diff --git a/LICENSE b/LICENSE index a2d955a..ccf3e0b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2026 corp-0 +Copyright (c) 2026 Unitystation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 930eccc..de4a2ce 100644 --- a/README.md +++ b/README.md @@ -7,8 +7,8 @@
-
-
+
+
@@ -37,7 +37,7 @@ Available for **Windows**, **Linux** (deb, rpm), and **macOS**.
## Getting Started
-Head to the [latest release](https://github.com/corp-0/PuduLauncher/releases/latest) page, download the installer for your platform, and run it. The launcher includes built-in auto-updates on Windows, so you'll always stay on the latest version. Linux users can install from the [AUR](https://aur.archlinux.org/packages/pudu-launcher-git) or download the `.deb`/`.rpm` package from the releases page.
+Head to the [latest release](https://github.com/unitystation/PuduLauncher/releases/latest) page, download the installer for your platform, and run it. The launcher includes built-in auto-updates on Windows, so you'll always stay on the latest version. Linux users can install from the [AUR](https://aur.archlinux.org/packages/pudu-launcher-git) or download the `.deb`/`.rpm` package from the releases page.
## Contributing
diff --git a/package.json.tmp.33112.1771184692849 b/package.json.tmp.33112.1771184692849
deleted file mode 100644
index 37cb1bf..0000000
--- a/package.json.tmp.33112.1771184692849
+++ /dev/null
@@ -1,56 +0,0 @@
-{
- "name": "pudu-launcher",
- "private": true,
- "version": "0.1.0",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "tsc && vite build",
- "preview": "vite preview",
- "tauri": "tauri",
- "generate-ts": "node tools/generate-ts-client.js",
- "build-sidecar": "node tools/build-sidecar.js",
- "build-sidecar:release": "node tools/build-sidecar.js --release",
- "storybook": "storybook dev -p 6006",
- "build-storybook": "storybook build",
- "lint": "eslint src/"
- },
- "dependencies": {
- "@emotion/react": "^11.14.0",
- "@emotion/styled": "^11.14.1",
- "@fontsource/inter": "^5.2.8",
- "@mui/icons-material": "^7.3.7",
- "@mui/joy": "^5.0.0-beta.52",
- "@mui/material": "^7.3.7",
- "@tauri-apps/api": "^2",
- "@tauri-apps/plugin-log": "^2.8.0",
- "@tauri-apps/plugin-opener": "^2",
- "react": "^19.1.0",
- "react-dom": "^19.1.0",
- "react-router": "^7.13.0"
- },
- "devDependencies": {
- "@chromatic-com/storybook": "^5.0.1",
- "@eslint/js": "^9.39.2",
- "@storybook/addon-a11y": "^10.2.8",
- "@storybook/addon-docs": "^10.2.8",
- "@storybook/addon-onboarding": "^10.2.8",
- "@storybook/addon-vitest": "^10.2.8",
- "@storybook/react-vite": "^10.2.8",
- "@tauri-apps/cli": "^2",
- "@types/react": "^19.1.8",
- "@types/react-dom": "^19.1.6",
- "@vitejs/plugin-react": "^4.6.0",
- "@vitest/browser-playwright": "^4.0.18",
- "@vitest/coverage-v8": "^4.0.18",
- "babel-plugin-react-compiler": "^1.0.0",
- "eslint": "^9.39.2",
- "eslint-plugin-react-compiler": "^19.1.0-rc.2",
- "playwright": "^1.58.2",
- "storybook": "^10.2.8",
- "typescript": "~5.8.3",
- "typescript-eslint": "^8.55.0",
- "vite": "^7.0.4",
- "vitest": "^4.0.18"
- }
-}
diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json
index dd58c82..1bde8a4 100644
--- a/src-tauri/tauri.conf.json
+++ b/src-tauri/tauri.conf.json
@@ -25,7 +25,7 @@
"updater": {
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IDREMjI1NkJEOEQ2OEFFMjcKUldRbnJtaU52VllpVGR2YXVWLzZlSW9rUVU3ZWtwWUgwTEV1dVI5M04xdVNvVWNmUXRVS1hOSVMK",
"endpoints": [
- "https://github.com/corp-0/PuduLauncher/releases/latest/download/latest.json"
+ "https://github.com/unitystation/PuduLauncher/releases/latest/download/latest.json"
]
}
},
diff --git a/src/contextProviders/UpdateContextProvider.tsx b/src/contextProviders/UpdateContextProvider.tsx
index 89c8932..6eae7e7 100644
--- a/src/contextProviders/UpdateContextProvider.tsx
+++ b/src/contextProviders/UpdateContextProvider.tsx
@@ -11,7 +11,7 @@ import { useStableRef } from "../hooks/useStableRef";
type UpdateStatus = "checking" | "no-update" | "update-available" | "downloading" | "installing" | "error";
-const RELEASES_URL = "https://github.com/corp-0/PuduLauncher/releases/latest";
+const RELEASES_URL = "https://github.com/unitystation/PuduLauncher/releases/latest";
interface UpdateContextValue {
status: UpdateStatus;