diff --git a/package.json b/package.json index 5e2bc83e..9ed67f51 100644 --- a/package.json +++ b/package.json @@ -133,7 +133,7 @@ }, "name": "client", "main": "index.js", - "repository": "https://gitlab.insrt.uk/revolt/revite.git", + "repository": "https://github.com/revoltchat/revite.git", "author": "Paul ", "license": "MIT" } diff --git a/src/components/common/messaging/attachments/TextFile.tsx b/src/components/common/messaging/attachments/TextFile.tsx index 7477fe9d..1b78cd38 100644 --- a/src/components/common/messaging/attachments/TextFile.tsx +++ b/src/components/common/messaging/attachments/TextFile.tsx @@ -30,9 +30,9 @@ export default function TextFile({ attachment }: Props) { if (typeof content !== "undefined") return; if (loading) return; - if (attachment.size > 20_000) { + if (attachment.size > 100_000) { setContent( - "This file is > 20 KB, for your sake I did not load it.\nSee tracking issue here for previews: https://gitlab.insrt.uk/revolt/revite/-/issues/2", + "This file is > 100 KB, for your sake I did not load it.\nSee tracking issue here for previews: https://github.com/revoltchat/revite/issues/35", ); return; } diff --git a/src/pages/settings/Settings.tsx b/src/pages/settings/Settings.tsx index c2754ed5..0b44170e 100644 --- a/src/pages/settings/Settings.tsx +++ b/src/pages/settings/Settings.tsx @@ -1,4 +1,4 @@ -import { Gitlab } from "@styled-icons/boxicons-logos"; +import { Github } from "@styled-icons/boxicons-logos"; import { Sync as SyncIcon, Globe, @@ -92,7 +92,6 @@ export default function Settings() { title: , }, { - id: "appearance", icon: , title: , @@ -184,11 +183,11 @@ export default function Settings() { custom={ <> - + @@ -221,7 +220,7 @@ export default function Settings() { { Two-factor authentication is currently work-in-progress, see{" "} {` `} - tracking issue here + v1 milestone here . diff --git a/src/revision.ts b/src/revision.ts index 11bcb374..e956dfd9 100644 --- a/src/revision.ts +++ b/src/revision.ts @@ -1,7 +1,6 @@ /* eslint-disable */ // Strings needs to be explictly stated here as they can cause type issues elsewhere. -export const REPO_URL: string = - "https://gitlab.insrt.uk/revolt/revite/-/commit"; +export const REPO_URL: string = "https://github.com/revoltchat/revite/commit"; export const GIT_REVISION: string = "__GIT_REVISION__"; export const GIT_BRANCH: string = "__GIT_BRANCH__";