From eff1de7c781fa8c0ad18b3a612b8fdbf8aca1606 Mon Sep 17 00:00:00 2001 From: Paul Makles Date: Tue, 14 Mar 2023 21:48:13 +0000 Subject: [PATCH] chore: add notices throughout app about development --- src/pages/settings/panes/Audio.tsx | 27 ++++++ src/pages/settings/panes/Feedback.tsx | 114 +++++++++++++++----------- 2 files changed, 92 insertions(+), 49 deletions(-) diff --git a/src/pages/settings/panes/Audio.tsx b/src/pages/settings/panes/Audio.tsx index 093d83cd..f65d07c0 100644 --- a/src/pages/settings/panes/Audio.tsx +++ b/src/pages/settings/panes/Audio.tsx @@ -94,6 +94,33 @@ export function Audio() { return ( <>
+ + + We are currently{" "} + + rebuilding the client + {" "} + and{" "} + + the voice server + {" "} + from scratch. +
+
+ The old voice should work in most cases, but it may + inexplicably not connect in some scenarios and / or + exhibit weird behaviour. +
+
+ {!permission && ( diff --git a/src/pages/settings/panes/Feedback.tsx b/src/pages/settings/panes/Feedback.tsx index c22eba74..fe85eae4 100644 --- a/src/pages/settings/panes/Feedback.tsx +++ b/src/pages/settings/panes/Feedback.tsx @@ -5,60 +5,76 @@ import { Link } from "react-router-dom"; import styles from "./Panes.module.scss"; import { Text } from "preact-i18n"; -import { CategoryButton } from "@revoltchat/ui"; +import { CategoryButton, Column, Tip } from "@revoltchat/ui"; export function Feedback() { return ( -
- - } - description={ - - }> - - - - - } - description={ - - }> - - - - - } - description={ - - }> - - - - - + + + + We are currently rebuilding the client from scratch. You can{" "} + + view our progress here + + ; in the meantime, we are only accepting and fixing critical + bugs with the current client. + + + + + } + description={ + + }> + + + + + } + description={ + + }> + + + + + + } + description="You can report issues and discuss improvements with us directly here."> + {"Join the Revolt Lounge"} + + + +
+ ); }