diff --git a/_locales/en/messages.json b/_locales/en/messages.json index d0afa3919e..841f00b5f7 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -7050,18 +7050,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.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" - }, - "WhatsNew__v5.35--2": { - "message": "Applications that use media keys rejoice! Signal no longer has a hold on them.", - "description": "Release notes for v5.35" - }, - "WhatsNew__v5.35--3": { - "message": "Better font support for our Japanese friends.", - "description": "Release notes for v5.35" - }, "WhatsNew__v5.36--1": { "message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.", "description": "Release notes for v5.36" @@ -7077,5 +7065,13 @@ "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" + }, + "WhatsNew__v5.39--1": { + "message": "You can now add people to groups using just their phone number.", + "description": "Release notes for v5.39" + }, + "WhatsNew__v5.39--2": { + "message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.", + "description": "Release notes for v5.39" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index c8a57061a3..711f31a286 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -29,7 +29,10 @@ const renderText: RenderTextCallbackType = ({ key, text }) => ( const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), - features: [{ key: 'WhatsNew__bugfixes', components: undefined }], + features: [ + { key: 'WhatsNew__v5.39--1', components: undefined }, + { key: 'WhatsNew__v5.39--2', components: undefined }, + ], }; export const WhatsNewModal = ({