Update release notes for 5.19

This commit is contained in:
Fedor Indutnyy 2021-09-29 17:10:38 -07:00
parent 41f73ec8c5
commit 8c16341d44
2 changed files with 15 additions and 17 deletions

View File

@ -6451,5 +6451,17 @@
"WhatsNew__v5.18--4": {
"message": "Did you know that if disappearing messages are enabled, even the 'This message was deleted' notification will go away when it expires? It's no longer a mystery - you'll see the countdown and timestamp right on the message.",
"description": "Release notes for v5.18"
},
"WhatsNew__v5.19--1": {
"message": "Take a breath and relax into the new animations for dialogs and popups. Ease in. Ease out. Ease in. Ease out.",
"description": "Release notes for v5.19"
},
"WhatsNew__v5.19--2": {
"message": "Switching keyboard layouts is always a bit tricky, but keyboard shortcuts now track right along with you, reaching beyond the specific letter pressed to honor your intent.",
"description": "Release notes for v5.19"
},
"WhatsNew__v5.19--3": {
"message": "Silence (and your preferences) is golden, so muted conversations will no longer display 'group call started' notifications!",
"description": "Release notes for v5.19"
}
}

View File

@ -29,23 +29,9 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion(),
features: [
{
key: 'WhatsNew__v5.18--1',
components: {
hiqua: <a href="https://github.com/hiqua">@hiqua</a>,
},
},
{
key: 'WhatsNew__v5.18--2',
components: {
gov: <a href="http://gov.ai">gov.ai</a>,
brain: <a href="https://brain.ai">brain.ai</a>,
signal: <a href="https://signal.org">signal.org</a>,
jojomatik: <a href="https://github.com/jojomatik">@jojomatik</a>,
},
},
{ key: 'WhatsNew__v5.18--3', components: undefined },
{ key: 'WhatsNew__v5.18--4', components: undefined },
{ key: 'WhatsNew__v5.19--1', components: undefined },
{ key: 'WhatsNew__v5.19--2', components: undefined },
{ key: 'WhatsNew__v5.19--3', components: undefined },
],
});
};