chore: add notices throughout app about development

This commit is contained in:
Paul Makles 2023-03-14 21:48:13 +00:00
parent b733e13ec2
commit eff1de7c78
No known key found for this signature in database
GPG key ID: 5059F398521BB0F6
2 changed files with 92 additions and 49 deletions

View file

@ -94,6 +94,33 @@ export function Audio() {
return ( return (
<> <>
<div className={styles.audio}> <div className={styles.audio}>
<Tip palette="warning">
<span>
We are currently{" "}
<a
style={{ color: "inherit", fontWeight: "600" }}
href="https://github.com/revoltchat/frontend/issues/14"
target="_blank"
rel="noreferrer">
rebuilding the client
</a>{" "}
and{" "}
<a
style={{ color: "inherit", fontWeight: "600" }}
href="https://trello.com/c/Ay6KdiOV/1-voice-overhaul-and-video-calling"
target="_blank"
rel="noreferrer">
the voice server
</a>{" "}
from scratch.
<br />
<br />
The old voice should work in most cases, but it may
inexplicably not connect in some scenarios and / or
exhibit weird behaviour.
</span>
</Tip>
{!permission && ( {!permission && (
<Tip palette="error"> <Tip palette="error">
<Text id="app.settings.pages.audio.tip_grant_permission" /> <Text id="app.settings.pages.audio.tip_grant_permission" />

View file

@ -5,10 +5,25 @@ import { Link } from "react-router-dom";
import styles from "./Panes.module.scss"; import styles from "./Panes.module.scss";
import { Text } from "preact-i18n"; import { Text } from "preact-i18n";
import { CategoryButton } from "@revoltchat/ui"; import { CategoryButton, Column, Tip } from "@revoltchat/ui";
export function Feedback() { export function Feedback() {
return ( return (
<Column>
<Tip palette="warning">
<span>
We are currently rebuilding the client from scratch. You can{" "}
<a
style={{ color: "inherit", fontWeight: "600" }}
href="https://github.com/revoltchat/frontend/issues/14"
target="_blank"
rel="noreferrer">
view our progress here
</a>
; in the meantime, we are only accepting and fixing critical
bugs with the current client.
</span>
</Tip>
<div className={styles.feedback}> <div className={styles.feedback}>
<a <a
href="https://github.com/revoltchat/revolt/discussions" href="https://github.com/revoltchat/revolt/discussions"
@ -60,5 +75,6 @@ export function Feedback() {
</a> </a>
</Link> </Link>
</div> </div>
</Column>
); );
} }