Release notes for 7.31

This commit is contained in:
Jamie Kyle 2024-10-23 15:29:25 -07:00
parent 76e2597d30
commit 5bde25cafc
2 changed files with 21 additions and 4 deletions

View file

@ -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, <linkMajorMayer>@major-mayer</linkMajorMayer>!",
"description": "Release notes for version 7.30"
}
}

View file

@ -33,6 +33,16 @@ export function ExternalLink(props: {
);
}
function linkMajorMayer(
children: ReadonlyArray<string | JSX.Element>
): JSX.Element {
return (
<ExternalLink href="https://github.com/major-mayer">
{children}
</ExternalLink>
);
}
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: <I18n i18n={i18n} id="icu:WhatsNew__v7.30--header" />,
features: [
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--1" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--2" />,
<I18n
i18n={i18n}
id="icu:WhatsNew__v7.31--0"
components={{
linkMajorMayer,
}}
/>,
],
};