Update WhatsNew

This commit is contained in:
Jamie Kyle 2023-11-08 15:39:44 -08:00
parent c5e1270208
commit d34a8f3b64
2 changed files with 10 additions and 4 deletions

View file

@ -7003,10 +7003,13 @@
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!", "messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
"description": "Release notes for releases that only include bug fixes" "description": "Release notes for releases that only include bug fixes"
}, },
"icu:WhatsNew__v6.37--0": {
"messageformat": "We've added a new way to keep your Signal contacts nice and tidy. This Halloween season, remove the ghost of an old contact. Just click on the three dots next to their name in the contact list on the New Chat screen and select \"Remove.\""
},
"icu:WhatsNew__v6.38--0": { "icu:WhatsNew__v6.38--0": {
"messageformat": "This release includes an updated design for Signal voice and video calls. Now the calling user interface will still look fantastic even if your camera isn't on and you can't stare at your own beautiful reflection." "messageformat": "This release includes an updated design for Signal voice and video calls. Now the calling user interface will still look fantastic even if your camera isn't on and you can't stare at your own beautiful reflection."
},
"icu:WhatsNew__v6.39--0": {
"messageformat": "Now you can change your selected language in Signal without changing your system settings (Signal Settings > Appearance > Language)."
},
"icu:WhatsNew__v6.39--1": {
"messageformat": "We fixed a brief delay that sometimes occurred while joining a call lobby on macOS devices, which should get rid of at least one excuse for being a half-second late to the meeting."
} }
} }

View file

@ -29,7 +29,10 @@ 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: [<Intl i18n={i18n} id="icu:WhatsNew__v6.38--0" />], features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--1" />,
],
}; };
if (releaseNotes.features.length === 1) { if (releaseNotes.features.length === 1) {