Release notes for 6.8.0

This commit is contained in:
Josh Perez 2023-02-23 13:04:33 -05:00 committed by GitHub
parent 1258d31007
commit d1527d0bc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 1 deletions

View file

@ -6490,5 +6490,21 @@
"icu:WhatsNew__v6.6--0": {
"messageformat": "Help us test several reliability and performance improvements for voice and video calls. This beta release also includes a few bug fixes and some small UI updates (look for the new link preview enhancements!). Thank you for being a beta tester, and please reach out to us on the community forum if you spot any bugs.",
"description": "Release notes for v6.6"
},
"icu:WhatsNew__v6.8--0": {
"messageformat": "You wouldn't download a car, but now when you download an MP3 voice note it will be saved with the proper file extension.",
"description": "Release notes for v6.8"
},
"icu:WhatsNew__v6.8--1": {
"messageformat": "Quickly begin typing a message after attaching a file, or just hit Enter/Return to send the file without any extra clicks. Thanks, {zyphlar}!",
"description": "Release notes for v6.8"
},
"icu:WhatsNew__v6.8--2": {
"messageformat": "The send button in the large composition view has been brought into alignment. Thanks, {hackerbirds}!",
"description": "Release notes for v6.8"
},
"icu:WhatsNew__v6.8--3": {
"messageformat": "If you are the only person in a group (so far) and you attempt to begin a group call, now you can join the call and start talking to yourself right away instead of waiting for the call to ring. Thanks, {lamemakes}!",
"description": "Release notes for v6.8"
}
}

View file

@ -31,9 +31,27 @@ const releaseNotes: ReleaseNotesType = {
version: window.getVersion?.(),
features: [
{
key: 'WhatsNew__bugfixes--5',
key: 'icu:WhatsNew__v6.8--0',
components: undefined,
},
{
key: 'icu:WhatsNew__v6.8--1',
components: {
zyphlar: <a href="https://github.com/zyphlar">@zyphlar</a>,
},
},
{
key: 'icu:WhatsNew__v6.8--2',
components: {
hackerbirds: <a href="https://github.com/hackerbirds">@hackerbirds</a>,
},
},
{
key: 'icu:WhatsNew__v6.8--3',
components: {
lamemakes: <a href="https://github.com/lamemakes">@lamemakes</a>,
},
},
],
};