diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index fb4f0e654b..f1dfb1ccd3 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7630,6 +7630,10 @@
},
"icu:WhatsNew__v7.30--2": {
"messageformat": "You can manage your call links, control approval settings, and copy links from the calls tab for quick sharing.",
+ "description": "(Deleted 2024/10/23) Release notes for version 7.30"
+ },
+ "icu:WhatsNew__v7.31--0": {
+ "messageformat": "Now you can quickly download every photo in an album when you receive a message with multiple attachments. But if you were a gallery curator with impeccable taste in another life, you can still save them individually too. Thanks, @major-mayer!",
"description": "Release notes for version 7.30"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 46eb36542d..68b6f7294f 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -33,6 +33,16 @@ export function ExternalLink(props: {
);
}
+function linkMajorMayer(
+ children: ReadonlyArray
+): JSX.Element {
+ return (
+
+ {children}
+
+ );
+}
+
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@@ -42,11 +52,14 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
- header: ,
features: [
- ,
- ,
- ,
+ ,
],
};