release notes

This commit is contained in:
Yash
2026-02-12 11:22:34 -06:00
parent 95f131efbf
commit a44aadbde7
2 changed files with 5 additions and 18 deletions

View File

@@ -10524,5 +10524,9 @@
"icu:WhatsNew__7.89--1": {
"messageformat": "Signal is a 501c3 nonprofit that wouldn't be possible without your support, and now you can donate via PayPal in Signal Desktop.",
"description": "Release notes for 7.89 release"
},
"icu:WhatsNew__7.90--0": {
"messageformat": "Make privacy stick with five new official sticker packs in the Signal Artist Series: \"Chug the Mouse\" by Amanda Cotan, \"Cozy Season\" by Miguel Ángel Camprubí, \"Croco's Feelings\" by Tiffany Beucher, \"My Daily Life 2\" by Plastic Thing, and \"Rocky Talk\" by Lexi Vay.",
"description": "Release notes for 7.90 release"
}
}

View File

@@ -34,14 +34,6 @@ export function ExternalLink(props: {
);
}
function DGrothePhD() {
return (
<ExternalLink href="https://github.com/DGrothe-PhD">
@DGrothe-PhD
</ExternalLink>
);
}
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@@ -51,16 +43,7 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<I18n
i18n={i18n}
id="icu:WhatsNew__7.89--0"
components={{
DGrothePhD,
}}
/>,
<I18n i18n={i18n} id="icu:WhatsNew__7.89--1" />,
],
features: [<I18n i18n={i18n} id="icu:WhatsNew__7.90--0" />],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {