Release notes for 7.89

This commit is contained in:
trevor-signal
2026-02-04 15:51:33 -05:00
parent 4b58e2ca68
commit 406112a965
2 changed files with 24 additions and 7 deletions
+18 -1
View File
@@ -34,6 +34,14 @@ export function ExternalLink(props: {
);
}
function DGrothePhD() {
return (
<ExternalLink href="https://github.com/DGrothe-PhD">
@DGrothe-PhD
</ExternalLink>
);
}
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@@ -43,7 +51,16 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [<I18n i18n={i18n} id="icu:WhatsNew__7.87--0" />],
features: [
<I18n
i18n={i18n}
id="icu:WhatsNew__7.89--0"
components={{
DGrothePhD,
}}
/>,
<I18n i18n={i18n} id="icu:WhatsNew__7.89--1" />,
],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {