diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 34719dc85..0bf6f97ad 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7634,14 +7634,18 @@
},
"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.30"
+ "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": "Release notes for version 7.31"
+ "description": "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": "Release notes for version 7.31"
+ "description": "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"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 2e9a195ab..5e82e453c 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -33,6 +33,14 @@ export function ExternalLink(props: {
);
}
+function linkKhuddite(
+ children: ReadonlyArray
+): JSX.Element {
+ return (
+ {children}
+ );
+}
+
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@@ -43,8 +51,13 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
- ,
- ,
+ ,
],
};