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="You can report issues and discuss improvements with us directly here."> - {"Join the Revolt Lounge"} + action="external" + icon={} + description={ + + }> + - -
+ + } + description={ + + }> + + + + + } + description={ + + }> + + + + + + } + description="You can report issues and discuss improvements with us directly here."> + {"Join the Revolt Lounge"} + + + +
+ ); }