From 6eef476f280f4aa967f0300faf3f406a73c6ebd2 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 23 Mar 2022 16:27:14 -0700 Subject: [PATCH] Add release notes for 5.37 --- _locales/en/messages.json | 14 +++++++------- ts/components/WhatsNewModal.tsx | 5 ++--- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index de1b0fe520..1dde50b0a5 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -7000,10 +7000,6 @@ "message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.", "description": "Release notes for releases that only include bug fixes" }, - "WhatsNew__v5.34--1": { - "message": "Ever used Signal while on an unstable connection? You can worry no more - disappearing message timer changes and more will now be sent out once your Wi-Fi feels better again.", - "description": "Release notes for v5.34" - }, "WhatsNew__v5.35--1": { "message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.", "description": "Release notes for v5.35" @@ -7024,8 +7020,12 @@ "message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!", "description": "Release notes for v5.36" }, - "WhatsNew__v5.36--3": { - "message": "Thanks to our volunteer translators, we've added support for Scottish Gaelic!", - "description": "Release notes for v5.36" + "WhatsNew__v5.37--1": { + "message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.", + "description": "Release notes for v5.37" + }, + "WhatsNew__v5.37--2": { + "message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!", + "description": "Release notes for v5.37" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index a03043f4a1..057593c11b 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -30,9 +30,8 @@ const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), features: [ - { key: 'WhatsNew__v5.36--1', components: undefined }, - { key: 'WhatsNew__v5.36--2', components: undefined }, - { key: 'WhatsNew__v5.36--3', components: undefined }, + { key: 'WhatsNew__v5.37--1', components: undefined }, + { key: 'WhatsNew__v5.37--2', components: undefined }, ], };