Release notes for 7.1

This commit is contained in:
Fedor Indutny 2024-02-28 18:31:15 -08:00
parent 42a0e78e87
commit dc7341fbca
2 changed files with 3 additions and 23 deletions

View file

@ -7335,22 +7335,7 @@
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
"description": "Release notes for releases that only include bug fixes"
},
"icu:WhatsNew__v6.48--0": {
"messageformat": "Video and audio playback will now pause whenever the Signal window is closed and minimized in the system tray. If youre looking for silence, X marks the spot."
},
"icu:WhatsNew__v6.48--1": {
"messageformat": "By popular demand, emoticons like “:-)” now automatically become emoji like “<emojify>🙂</emojify>” — but if this makes you “:-(“ you can disable this feature in the “Chats” section of your Signal Desktop settings."
},
"icu:WhatsNew__v7.0--header": {
"messageformat": "We're introducing new ways to keep your phone number private on Signal."
},
"icu:WhatsNew__v7.0--0": {
"messageformat": "Your phone number will no longer be visible to anyone on the latest version of Signal unless they have it saved in their phones contacts. You can change this in Settings."
},
"icu:WhatsNew__v7.0--1": {
"messageformat": "You can now set and share an optional username to let people chat with you without giving them your phone number."
},
"icu:WhatsNew__v7.0--2": {
"messageformat": "A new privacy setting lets you control who can find you by your phone number on Signal."
"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."
}
}

View file

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