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

@ -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,
}}
/>,
],
};