From d1527d0bc08061d18d8ac6a1cb12f2aa9cee8fb2 Mon Sep 17 00:00:00 2001 From: Josh Perez <60019601+josh-signal@users.noreply.github.com> Date: Thu, 23 Feb 2023 13:04:33 -0500 Subject: [PATCH] Release notes for 6.8.0 --- _locales/en/messages.json | 16 ++++++++++++++++ ts/components/WhatsNewModal.tsx | 20 +++++++++++++++++++- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index d2c132ed1..45f07bab4 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -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" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 90f04e683..5083a240e 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -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: @zyphlar, + }, + }, + { + key: 'icu:WhatsNew__v6.8--2', + components: { + hackerbirds: @hackerbirds, + }, + }, + { + key: 'icu:WhatsNew__v6.8--3', + components: { + lamemakes: @lamemakes, + }, + }, ], };