Add release notes for 7.21

This commit is contained in:
Scott Nonnenberg 2024-08-15 11:28:45 +10:00
parent c040cb2d6c
commit 3991ad3a98
2 changed files with 5 additions and 4 deletions

View file

@ -7495,5 +7495,9 @@
"icu:WhatsNew__v7.20--1": { "icu:WhatsNew__v7.20--1": {
"messageformat": "This release also improves the performance of link preview generation and fixes a bug that caused the Settings window to briefly flash a lovely shade of ultramarine whenever it was closed (instead of just closing right away).", "messageformat": "This release also improves the performance of link preview generation and fixes a bug that caused the Settings window to briefly flash a lovely shade of ultramarine whenever it was closed (instead of just closing right away).",
"description": "Release notes for version 7.20, part 2" "description": "Release notes for version 7.20, part 2"
},
"icu:WhatsNew__v7.21--0": {
"messageformat": "Everyone loves a good story, and we could tell you the tale of a bug that sometimes caused the progress bar to freeze right in the middle of watching a good story — but that bug's adventure already has a happy ending because we fixed it in this release.",
"description": "Release notes for version 7.21"
} }
} }

View file

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