From 765ffbe8ff7a8ef75757357b3de2b196cfd2d889 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Thu, 3 Oct 2024 10:19:03 +1000 Subject: [PATCH] Release notes for 7.28 --- _locales/en/messages.json | 8 ++++++++ ts/components/WhatsNewModal.tsx | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 1a83a27c80..a04d9b0b4d 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -7555,5 +7555,13 @@ "icu:WhatsNew__v7.27--0": { "messageformat": "Now you can remove quoted replies from edited messages. It's perfect for those moments when you realize that your response was so good that it doesn't actually need to stand on another message's shoulders, or when you accidentally reply to the wrong message with \"I love you too.\"", "description": "Release notes for version 7.27" + }, + "icu:WhatsNew__v7.28--0": { + "messageformat": "We fixed a bug that prevented stickers from working correctly in the media editor, and now the picker no longer gets stuck when you're trying to stick a sticker on a picture.", + "description": "Release notes for version 7.28" + }, + "icu:WhatsNew__v7.28--1": { + "messageformat": "This update also includes support for the new screen sharing interface in macOS Sequoia.", + "description": "Release notes for version 7.28" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 61b62a6139..8922e7c669 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -42,7 +42,10 @@ export function WhatsNewModal({ const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), - features: [], + features: [ + , + , + ], }; if (releaseNotes.features.length === 1 && !releaseNotes.header) {