feat: add changelog entry for in-app reporting

This commit is contained in:
Paul Makles
2023-02-22 18:34:35 +01:00
parent a00d554f80
commit 58f35a2813
3 changed files with 26 additions and 2 deletions

View File

@@ -3,6 +3,7 @@ type Element =
| {
type: "image";
src: string;
shadow?: boolean;
};
export interface ChangelogPost {
@@ -29,6 +30,19 @@ export const changelogEntries: Record<number, ChangelogPost> = {
"Other authentication methods coming later, stay tuned!",
],
},
2: {
date: new Date("2023-02-22T17:30:00.000Z"),
title: "In-App Reporting Is Here",
content: [
"You can now report any user, server, or message directly from the app.",
{
type: "image",
src: "https://autumn.revolt.chat/attachments/ZuDVIjGiCl61Pk9XGk5qfc8-idN9EnFAk55DUQp713/the.png",
shadow: true,
},
"If you want to learn more about how we're making Revolt safer for you, check out our new blog post :point_right: [https://revolt.chat/posts/improving-user-safety](https://revolt.chat/posts/improving-user-safety)",
],
},
};
export const changelogEntryArray = Object.keys(changelogEntries).map(