v5.21 release notes

This commit is contained in:
Josh Perez 2021-10-14 20:51:10 -04:00 committed by GitHub
parent 92f7259272
commit c1ac618e6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 61 deletions

View file

@ -6454,66 +6454,6 @@
"message": "What's New",
"description": "Title for the whats new modal"
},
"WhatsNew__v5.16--1": {
"message": "An improved media lightbox means no surprises as you progress through a gallery of images or videos, and you can pretend youre really in a dark room by zooming to hide those pesky buttons.",
"description": "Release notes for v5.16"
},
"WhatsNew__v5.16--2": {
"message": "Fixed a bug where reacting to a message was tricky, because we put the picker off screen. That's now fixed, and you can 😮 to your ❤️'s content.",
"description": "Release notes for v5.16"
},
"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"
},
"WhatsNew__v5.18--1": {
"message": "Feeling ❤️‍🔥 or 😶‍🌫️? You can express yourself with a new batch of emoji, whether you're :whispering or :YELLING as you search. Thanks $hiqua$!",
"description": "Release notes for v5.18",
"placeholders": {
"hiqua": {
"content": "$1",
"example": "<a href='https://github.com/hiqua'>@hiqua</a>"
}
}
},
"WhatsNew__v5.18--2": {
"message": "If you're in Anguilla, maybe you've felt left out. We now turn all top-level domains in place since 2010 into links - so both $gov$ and $brain$ will be clickable just like $signal$. Thanks $jojomatik$!",
"description": "Release notes for v5.18",
"placeholders": {
"gov": {
"content": "$1",
"example": "<a href='https://gov.ai'>gov.ai</a>"
},
"brain": {
"content": "$2",
"example": "<a href='https://brain.ai'>brain.ai</a>"
},
"signal": {
"content": "$3",
"example": "<a href='https://signal.org'>signal.org</a>"
},
"jojomatik": {
"content": "$4",
"example": "<a href='https://github.com/jojomatik'>@jojomatik</a>"
}
}
},
"WhatsNew__v5.18--3": {
"message": "We heard you like to zoom in on images. We added oomph to your zoom, so even small images can go all the way full screen.",
"description": "Release notes for v5.18"
},
"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"
@ -6533,5 +6473,17 @@
"WhatsNew__v5.20": {
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
"description": "Release notes for v5.20"
},
"WhatsNew__v5.21--1": {
"message": "Get more information at a glance 👀. The left pane has got a fresh new look and style 😎.",
"description": "Release notes for v5.21"
},
"WhatsNew__v5.21--2": {
"message": "Know the when to the what. The timestamp, if available, associated with delivered, read, sent, and other status messages are now displayed in the message's details screen.",
"description": "Release notes for v5.21"
},
"WhatsNew__v5.21--3": {
"message": "Screen reader users should now find it easier to navigate through the conversation list on the left pane.",
"description": "Release notes for v5.21"
}
}

View file

@ -32,7 +32,20 @@ export const WhatsNew = ({ i18n }: PropsType): JSX.Element => {
setReleaseNotes({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion(),
features: [{ key: 'WhatsNew__v5.20', components: undefined }],
features: [
{
key: 'WhatsNew__v5.21--1',
components: undefined,
},
{
key: 'WhatsNew__v5.21--2',
components: undefined,
},
{
key: 'WhatsNew__v5.21--3',
components: undefined,
},
],
});
};