Release notes for 7.3

This commit is contained in:
ayumi-signal 2024-03-13 13:17:12 -07:00
parent 27b55e472d
commit bd9d4dc821
2 changed files with 10 additions and 5 deletions

View file

@ -7411,11 +7411,13 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
"icu:WhatsNew__v7.1--0": {
"messageformat": "This update enables support for all of the new emoji characters in Emoji version 15.1. People keep asking us what our favorite new emoji is, but answering that question is a “lime” we won't cross.",
"description": "(Deleted 2024/03/07)"
},
"icu:WhatsNew__v7.2--0": {
"messageformat": "Thanks to the performance improvements in this release, opening large group chats is faster than ever. If you're in a group with several hundred people that likes to debate the existence of parallel universes, you now live in a timeline where it takes a lot less time to show the timeline of people talking about timelines."
},
"icu:WhatsNew__v7.3--0": {
"messageformat": "Now you can clear missed calls on your phone and the badge on the calls tab in Signal Desktop will be updated too."
},
"icu:WhatsNew__v7.3--1": {
"messageformat": "We also redesigned the badge count indicator on Windows. Now the color in the taskbar matches the color in the system tray. Fashion is all about coordination, and a little pop of red is a perfect look for spring."
}
}

View file

@ -42,7 +42,10 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [<Intl i18n={i18n} id="icu:WhatsNew__v7.2--0" />],
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v7.3--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v7.3--1" />,
],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {