Release Notes for 5.17

This commit is contained in:
Scott Nonnenberg 2021-09-02 17:39:20 -07:00
parent ee5f276e0c
commit 36f86af616
2 changed files with 10 additions and 6 deletions

View file

@ -6324,5 +6324,13 @@
"WhatsNew__v5.16--3": {
"message": "If you hover over the buttons while on a call, they stay visible instead of disappearing. Nothing hides from your eagle eye, not even these buttons!",
"description": "Release notes for v5.16"
},
"WhatsNew__v5.17--1": {
"message": "Try out the new 'send messages' permission to restrict who can send messages in your groups. Great for organizing an event, making an announcement, or just shouting from the rooftops. All members must be on the latest version of Signal for the setting to appear.",
"description": "Release notes for v5.17"
},
"WhatsNew__v5.17--2": {
"message": "You can now send messages wherever and whenever you are: on a plane, in a tunnel, or that sad moment when your internet just cut out. It will eventually get through; messages now automatically retry for up to 24 hours.",
"description": "Release notes for v5.17"
}
}

View file

@ -26,13 +26,9 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => {
const viewReleaseNotes = () => {
setReleaseNotes({
date: new Date('08/26/2021'),
date: new Date('09/02/2021'),
version: window.getVersion(),
features: [
'WhatsNew__v5.16--1',
'WhatsNew__v5.16--2',
'WhatsNew__v5.16--3',
],
features: ['WhatsNew__v5.17--1', 'WhatsNew__v5.17--2'],
});
};