From 4d7b3257262c253bc9b80415628c0c8e522de8a2 Mon Sep 17 00:00:00 2001 From: trevor-signal Date: Wed, 13 Nov 2024 15:03:02 -0500 Subject: [PATCH] Release notes for 7.34 --- _locales/en/messages.json | 24 ++++++++++++------------ ts/components/WhatsNewModal.tsx | 18 +++--------------- 2 files changed, 15 insertions(+), 27 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 400c88651a..3b1efb1884 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -7676,20 +7676,20 @@ "description": "Release notes for releases that only include bug fixes", "ignoreUnused": true }, - "icu:WhatsNew__v7.31--0": { - "messageformat": "Now you can quickly download every photo in an album when you receive a message with multiple attachments. But if you were a gallery curator with impeccable taste in another life, you can still save them individually too. Thanks, @major-mayer!", - "description": "(Deleted 2024/10/30) Release notes for version 7.31" - }, - "icu:WhatsNew__v7.32--0": { - "messageformat": "Thanks to some small optimizations, this update slightly reduces the size of the app by approximately 4 megabytes. That's enough room for you to send the equivalent of about 4 books’ worth of text messages (or 2-3 animated GIFs) without taking up any extra space.", - "description": "(Deleted 2024/11/07) Release notes for version 7.32" - }, - "icu:WhatsNew__v7.32--1": { - "messageformat": "If Wayland is your compositing window manager (and not just the name of a blacksmith you vaguely remember from Beowulf) you'll be happy to hear that we also fixed a bug with the screen sharing button on Linux.", - "description": "(Deleted 2024/11/07) Release notes for version 7.32" - }, "icu:WhatsNew__v7.33--0": { "messageformat": "This update fixes a bug where the correct context menu wasn't appearing after right-clicking on an emoji while selecting text. Thanks, @khuddite!", "description": "Release notes for version 7.33" + }, + "icu:WhatsNew__v7.34--0": { + "messageformat": "The new filter icon next to the search box makes it easy to quickly find unread chats, but feel free to take your time deciding whether or not to leave them on read after seeing what they had to say.", + "description": "Release notes for version 7.34" + }, + "icu:WhatsNew__v7.34--1": { + "messageformat": "This update introduces support for new processors on Windows like the Snapdragon X Elite, so you don't need to twist your ARM into emulating x86 anymore.", + "description": "Release notes for version 7.34" + }, + "icu:WhatsNew__v7.34--2": { + "messageformat": "We also fixed a bug that broke the dark theme in Signal when your operating system settings were configured to use a light theme. Signal Desktop can now properly handle your thematically split personality.", + "description": "Release notes for version 7.34" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 5e82e453c8..53e6da560c 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -33,14 +33,6 @@ export function ExternalLink(props: { ); } -function linkKhuddite( - children: ReadonlyArray -): JSX.Element { - return ( - {children} - ); -} - export function WhatsNewModal({ i18n, hideWhatsNewModal, @@ -51,13 +43,9 @@ export function WhatsNewModal({ date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), features: [ - , + , + , + , ], };