From 3df1821f77d0fbf5d9fb9cec898e6c3c27e2093b Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 22 Jan 2025 17:05:35 -0800 Subject: [PATCH] Add release notes for 7.40 --- _locales/en/messages.json | 8 ++++++++ ts/components/WhatsNewModal.tsx | 4 +++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index ee2a2b0f163..a5df9b84d92 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -7731,5 +7731,13 @@ "icu:WhatsNew__v7.39--0": { "messageformat": "Now you can adjust the size of the chat list sidebar on touchscreen devices. So when you try to drag it won't be such a drag, and the smudges on your screen are simply evidence of the power emanating from your fingertips.", "description": "Release notes for version 7.39" + }, + "icu:WhatsNew__v7.40--0": { + "messageformat": "We fixed a rare bug that prevented some chats from opening correctly after they were selected, so now Signal Desktop doesn't also draw a blank while you're trying to remember what they said.", + "description": "Release notes for version 7.40" + }, + "icu:WhatsNew__v7.40--1": { + "messageformat": "Now when you link your primary Signal device to a new Desktop or iPad, you can bring your chat history and your last 45 days of media with you. The transfer process is end-to-end encrypted, and completely optional. When it comes to making the choice about whether or not to leave the past behind, you're left to your own devices.", + "description": "Release notes for version 7.40" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 497817700c0..75357e56ed9 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -39,10 +39,12 @@ export function WhatsNewModal({ }: PropsType): JSX.Element { let contentNode: ReactNode; + // Use later: icu:WhatsNew__v7.40--1 + const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), - features: [], + features: [], }; if (releaseNotes.features.length === 1 && !releaseNotes.header) {