From 77f9127628074666f9f3f3e20e7491dddd866866 Mon Sep 17 00:00:00 2001 From: Pas <74743263+Pasithea0@users.noreply.github.com> Date: Thu, 5 Mar 2026 11:23:36 -0700 Subject: [PATCH] update docs reference --- .github/CONTRIBUTING.md | 2 +- README.md | 18 ++++++++---------- public/notifications.xml | 4 ++-- src/assets/README.md | 2 +- src/backend/metadata/traktApi.ts | 2 +- src/components/LinksDropdown.tsx | 4 ---- src/components/player/hooks/useSkipTime.ts | 2 +- src/pages/parts/settings/ConnectionsPart.tsx | 4 ++-- src/setup/config.ts | 4 ++-- 9 files changed, 18 insertions(+), 24 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 859fb769..91626fad 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -99,7 +99,7 @@ Here are some tips to make sure that your pull requests are :pinched_fingers: fi Language contributions help P-Stream massively, allowing people worldwide to use our app! -We use Weblate for crowdsourcing our translations. [Click here to go to our translation tool.](https://docs.pstream.mov/links/weblate) +We use Weblate for crowdsourcing our translations. 1. First make sure you make an account. (click the link above) 2. Click the language you want to help translate, if it's not listed you can click the plus top left to add a new language. diff --git a/README.md b/README.md index ba3de028..1d6abb16 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # P-Stream -[![P-Stream Image](.github/P-Stream.png)](https://docs.pstream.mov) +[![P-Stream Image](.github/P-Stream.png)](https://p-stream.github.io/docs/) ## Quick Deploy @@ -8,20 +8,18 @@ [![Deploy to Cloudflare](https://deploy.workers.cloudflare.com/button)](https://deploy.workers.cloudflare.com/?url=https://github.com/p-stream/p-stream) -**NOTE: To self-host, more setup is required. Check the [docs](https://docs.pstream.mov) to properly set up!!!!** +**NOTE: To self-host, more setup is required. Check the [docs](https://p-stream.github.io/docs/) to properly set up!!!!** ## Links And Resources | Service | Link | Source Code | | ------------- | ----------------------------------------------- | ------------------------------------------------------- | -| P-Stream Docs | [docs](https://docs.pstream.mov) | [source code](https://github.com/p-stream/docs) | -| Extension | [extension](https://docs.pstream.mov/extension) | [source code](https://github.com/p-stream/browser-ext) | -| Proxy | [simple-proxy](https://docs.pstream.mov/proxy) | [source code](https://github.com/p-stream/simple-proxy) | -| Backend | [backend](https://server.fifthwit.net) | [source code](https://github.com/p-stream/backend) | -| Frontend | [P-Stream](https://docs.pstream.mov/instances) | [source code](https://github.com/p-stream/p-stream) | -| Weblate | [weblate](https://weblate.pstream.mov) | | - -**_I provide these if you are not able to host yourself, though I do encourage hosting the frontend._** +| P-Stream Docs | [docs](https://p-stream.github.io/docs/) | [source code](https://github.com/p-stream/docs) | +| Extension | [extension](https://p-stream.github.io/docs/extension) | [source code](https://github.com/p-stream/browser-ext) | +| Proxy | [simple-proxy](https://p-stream.github.io/docs/proxy) | [source code](https://github.com/p-stream/simple-proxy) | +| Backend | [backend](https://github.com/p-stream/backend) | [source code](https://github.com/p-stream/backend) | +| Frontend | [P-Stream](https://p-stream.github.io/docs/instances) | [source code](https://github.com/p-stream/p-stream) | +| Weblate | [weblate](https://p-stream.github.io/docs/weblate) | | ## Referrers diff --git a/public/notifications.xml b/public/notifications.xml index 369ef9ee..fb3a9846 100644 --- a/public/notifications.xml +++ b/public/notifications.xml @@ -2,11 +2,11 @@ P-Stream Notifications - https://pstream.mov + https://raw.githubusercontent.com/p-stream/p-stream/production/public/notifications.xml Site updates and important notifications for P-Stream users en Mon, 29 Sep 2025 18:00:00 MST - + notification-061 diff --git a/src/assets/README.md b/src/assets/README.md index fd437667..08991752 100644 --- a/src/assets/README.md +++ b/src/assets/README.md @@ -4,7 +4,7 @@ Locales are difficult, here is some guidance. ## Process on adding new languages -1. Use [Weblate](https://docs.pstream.mov/links/weblate) to add translations, see contributing guidelines. +1. Use [Weblate](https://github.com/p-stream/p-stream) to add translations, see contributing guidelines. 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. 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` 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`. diff --git a/src/backend/metadata/traktApi.ts b/src/backend/metadata/traktApi.ts index 52132a8f..cc475392 100644 --- a/src/backend/metadata/traktApi.ts +++ b/src/backend/metadata/traktApi.ts @@ -11,7 +11,7 @@ import type { TraktReleaseResponse, } from "./types/trakt"; -export const TRAKT_BASE_URL = "https://fed-airdate.pstream.mov"; +export const TRAKT_BASE_URL = ""; // Token cookie configuration const TOKEN_COOKIE_NAME = "turnstile_token"; diff --git a/src/components/LinksDropdown.tsx b/src/components/LinksDropdown.tsx index 4bda57ab..1dd3041a 100644 --- a/src/components/LinksDropdown.tsx +++ b/src/components/LinksDropdown.tsx @@ -349,10 +349,6 @@ export function LinksDropdown(props: { children: React.ReactNode }) { )} - diff --git a/src/components/player/hooks/useSkipTime.ts b/src/components/player/hooks/useSkipTime.ts index b28b6c39..8e616204 100644 --- a/src/components/player/hooks/useSkipTime.ts +++ b/src/components/player/hooks/useSkipTime.ts @@ -11,7 +11,7 @@ import { getTurnstileToken } from "@/utils/turnstile"; // Thanks Nemo for this API const THE_INTRO_DB_BASE_URL = "https://api.theintrodb.org/v2"; -const FED_SKIPS_BASE_URL = "https://fed-skips.pstream.mov"; +const FED_SKIPS_BASE_URL = ""; const INTRODB_BASE_URL = "https://api.introdb.app/intro"; const MAX_RETRIES = 3; diff --git a/src/pages/parts/settings/ConnectionsPart.tsx b/src/pages/parts/settings/ConnectionsPart.tsx index e786f820..f573bb6f 100644 --- a/src/pages/parts/settings/ConnectionsPart.tsx +++ b/src/pages/parts/settings/ConnectionsPart.tsx @@ -116,7 +116,7 @@ function ProxyEdit({

- + {t("settings.connections.workers.documentation")} @@ -237,7 +237,7 @@ function BackendEdit({ backendUrl, setBackendUrl }: BackendEditProps) {

- + {t("settings.connections.server.documentation")} diff --git a/src/setup/config.ts b/src/setup/config.ts index e22f1841..60d79068 100644 --- a/src/setup/config.ts +++ b/src/setup/config.ts @@ -140,11 +140,11 @@ export function conf(): RuntimeConfig { DMCA_EMAIL: getKey("DMCA_EMAIL"), ONBOARDING_CHROME_EXTENSION_INSTALL_LINK: getKey( "ONBOARDING_CHROME_EXTENSION_INSTALL_LINK", - "https://docs.pstream.mov/extension", + "https://p-stream.github.io/docs/extension", ), ONBOARDING_FIREFOX_EXTENSION_INSTALL_LINK: getKey( "ONBOARDING_FIREFOX_EXTENSION_INSTALL_LINK", - "https://docs.pstream.mov/extension", + "https://p-stream.github.io/docs/extension", ), ONBOARDING_PROXY_INSTALL_LINK: getKey("ONBOARDING_PROXY_INSTALL_LINK"), BACKEND_URLS: getKey("BACKEND_URL", BACKEND_URL)