Release notes for 6.23

This commit is contained in:
Josh Perez 2023-06-21 19:10:38 -04:00
parent 4d0aa09093
commit d8b241bbbd
2 changed files with 20 additions and 2 deletions

View file

@ -6501,5 +6501,9 @@
"icu:WhatsNew__v6.22--1": {
"messageformat": "We added support for the latest emoji characters, so now you can express your excitement with \"Shaking Face\" (<emojify>🫨</emojify>) or react with a \"Pea Pod\" (<emojify>🫛</emojify>) when someone asks you how close you are to your friends.",
"description": "Release notes for v6.22"
},
"icu:WhatsNew__v6.23--1": {
"messageformat": "In addition to a small assortment of bug fixes, this release also incorporates developer documentation updates (thanks, {d108}!) and some design improvements to the message forwarding interface (thanks, {hackerbirds}!).",
"description": "Release notes for v6.23"
}
}

View file

@ -30,8 +30,22 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.22--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.22--1" />,
<Intl
i18n={i18n}
id="icu:WhatsNew__v6.23--1"
components={{
d108: (
<a href="https://www.github.com/d108" rel="noreferrer">
@d108
</a>
),
hackerbirds: (
<a href="https://www.github.com/hackerbirds" rel="noreferrer">
@hackerbirds
</a>
),
}}
/>,
],
};