pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

update some urls

Pas 621c2a0c cdf18f08

+19 -19
+1 -1
.github/CODE_OF_CONDUCT.md
··· 60 60 61 61 Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 62 reported to the community leaders responsible for enforcement at 63 - our [Discord](https://docs.pstream.org/links/discord). 63 + our [Discord](https://docs.pstream.mov/links/discord). 64 64 All complaints will be reviewed and investigated promptly and fairly. 65 65 66 66 All community leaders are obligated to respect the privacy and security of the
+1 -1
.github/CONTRIBUTING.md
··· 34 34 35 35 ### Discord Server 36 36 If you do not have a GitHub account or want to discuss a feature or bug with us before making an issue, you can join our Discord server. 37 - [Join bruh](https://docs.pstream.org/links/discord) 37 + [Join bruh](https://docs.pstream.mov/links/discord) 38 38 39 39 ### GitHub Issues 40 40 To make a GitHub issue for sudo-flix, please visit the [new issue page](https://github.com/p-stream/p-stream/issues/new/choose) where you can pick either the "Bug Report" or "Feature Request" template.
+1 -1
.github/SECURITY.md
··· 7 7 ## Reporting a Vulnerability 8 8 9 9 You can contact the sudo-flix maintainers to report a vulnerability: 10 - - Report the vulnerability in the [Discord](https://docs.pstream.org/links/discord). 10 + - Report the vulnerability in the [Discord](https://docs.pstream.mov/links/discord).
+7 -7
README.md
··· 1 1 # P-Stream 2 - [![P-Stream Image](.github/P-Stream.png)](https://docs.pstream.org) 2 + [![P-Stream Image](.github/P-Stream.png)](https://docs.pstream.mov) 3 3 4 4 **I *do not* endorse piracy of any kind I simply enjoy programming and large user counts.** 5 5 ··· 10 10 11 11 [![Deploy to Cloudflare](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/p-stream/p-stream) 12 12 13 - **NOTE: To self-host, more setup is required. Check the [docs](https://docs.pstream.org) to properly set up!!!!** 13 + **NOTE: To self-host, more setup is required. Check the [docs](https://docs.pstream.mov) to properly set up!!!!** 14 14 15 15 16 16 ## Links And Resources 17 17 | Service | Link | Source Code | 18 18 |----------------|------------------------------------------------------------------|----------------------------------------------------------| 19 - | P-Stream Docs | [docs](https://docs.pstream.org) | [source code](https://github.com/p-stream/docs) | 20 - | Extension | [extension](https://docs.pstream.org/extension) | [source code](https://github.com/p-stream/browser-ext) | 21 - | Proxy | [simple-proxy](https://docs.pstream.org/proxy) | [source code](https://github.com/p-stream/sudo-proxy) | 19 + | P-Stream Docs | [docs](https://docs.pstream.mov) | [source code](https://github.com/p-stream/docs) | 20 + | Extension | [extension](https://docs.pstream.mov/extension) | [source code](https://github.com/p-stream/browser-ext) | 21 + | Proxy | [simple-proxy](https://docs.pstream.mov/proxy) | [source code](https://github.com/p-stream/sudo-proxy) | 22 22 | Backend | [backend](https://server.fifthwit.net) | [source code](https://github.com/p-stream/backend) | 23 - | Frontend | [P-Stream](https://docs.pstream.org/instances) | [source code](https://github.com/p-stream/p-stream) | 24 - | Weblate | [weblate](https://weblate.pstream.org) | | 23 + | Frontend | [P-Stream](https://docs.pstream.mov/instances) | [source code](https://github.com/p-stream/p-stream) | 24 + | Weblate | [weblate](https://weblate.pstream.mov) | | 25 25 26 26 ***I provide these if you are not able to host yourself, though I do encourage hosting the frontend.*** 27 27
+1 -1
src/assets/README.md
··· 3 3 Locales are difficult, here is some guidance. 4 4 5 5 ## Process on adding new languages 6 - 1. Use [Weblate](https://docs.pstream.org/links/weblate) to add translations, see contributing guidelines. 6 + 1. Use [Weblate](https://docs.pstream.mov/links/weblate) to add translations, see contributing guidelines. 7 7 2. Add your language to `@/assets/languages.ts`. Must be in ISO format (ISO-639 for language and ISO-3166 for country/region). For joke languages, use any format. 8 8 3. If the language code doesn't have a region specified (Such as in `pt-BR`, `BR` being the region), add a default region in `@/utils/language.ts` at `defaultLanguageCodes` 9 9 4. If the language code doesn't contain a region (Such as in `zh-Hant`), add a default country in `@/utils/language.ts` at `countryPriority`.
+2 -2
src/components/player/atoms/settings/Downloads.tsx
··· 119 119 return downloadUrl; // Return original if no specific pattern is found 120 120 }, [downloadUrl]); 121 121 122 - const hlsDownload = `https://hls-downloader.pstream.org/?url=${encodeURIComponent(processDownloadUrl())}`; 122 + const hlsDownload = `https://hls-downloader.pstream.mov/?url=${encodeURIComponent(processDownloadUrl())}`; 123 123 const [, copyToClipboard] = useCopyToClipboard(); 124 124 125 125 const sourceType = usePlayerStore((s) => s.source?.type); ··· 198 198 <Trans i18nKey="player.menus.downloads.hlsDownloader"> 199 199 <a 200 200 className="text-type-link" 201 - href="https://hls-downloader.pstream.org/" 201 + href="https://hls-downloader.pstream.mov/" 202 202 /> 203 203 </Trans> 204 204 </p>
+1 -1
src/components/player/hooks/useSkipTime.ts
··· 5 5 import { usePreferencesStore } from "@/stores/preferences"; 6 6 7 7 // Thanks Nemo for this API 8 - const BASE_URL = "https://skips.pstream.org"; 8 + const BASE_URL = "https://skips.pstream.mov"; 9 9 const MAX_RETRIES = 3; 10 10 11 11 export function useSkipTime() {
+2 -2
src/pages/parts/settings/ConnectionsPart.tsx
··· 97 97 </p> 98 98 <p className="max-w-[30rem] font-medium"> 99 99 <Trans i18nKey="settings.connections.workers.description"> 100 - <MwLink to="https://docs.pstream.org/proxy/deploy"> 100 + <MwLink to="https://docs.pstream.mov/proxy/deploy"> 101 101 {t("settings.connections.workers.documentation")} 102 102 </MwLink> 103 103 </Trans> ··· 183 183 </p> 184 184 <p className="max-w-[30rem] font-medium"> 185 185 <Trans i18nKey="settings.connections.server.description"> 186 - <MwLink to="https://docs.pstream.org/backend/deploy"> 186 + <MwLink to="https://docs.pstream.mov/backend/deploy"> 187 187 {t("settings.connections.server.documentation")} 188 188 </MwLink> 189 189 </Trans>
+1 -1
src/pages/parts/settings/SetupPart.tsx
··· 42 42 case "south": 43 43 return "https://fed-api-south.pstream.org"; 44 44 case "asia": 45 - return "https://fed-api-asia.pstream.org"; 45 + return "https://fed-api-asia.pstream.mov"; 46 46 case "europe": 47 47 return "https://fed-api-europe.pstream.org"; 48 48 case "unknown":
+2 -2
src/setup/config.ts
··· 121 121 DMCA_EMAIL: getKey("DMCA_EMAIL"), 122 122 ONBOARDING_CHROME_EXTENSION_INSTALL_LINK: getKey( 123 123 "ONBOARDING_CHROME_EXTENSION_INSTALL_LINK", 124 - "https://docs.pstream.org/extension", 124 + "https://docs.pstream.mov/extension", 125 125 ), 126 126 ONBOARDING_FIREFOX_EXTENSION_INSTALL_LINK: getKey( 127 127 "ONBOARDING_FIREFOX_EXTENSION_INSTALL_LINK", 128 - "https://docs.pstream.org/extension", 128 + "https://docs.pstream.mov/extension", 129 129 ), 130 130 ONBOARDING_PROXY_INSTALL_LINK: getKey("ONBOARDING_PROXY_INSTALL_LINK"), 131 131 BACKEND_URL: getKey("BACKEND_URL", BACKEND_URL),