diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 743aff2918..2f97da524a 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7588,16 +7588,24 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
- "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": "(Deleted 2024/10/10) 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": "(Deleted 2024/10/10) Release notes for version 7.28"
- },
"icu:WhatsNew__v7.29--0": {
"messageformat": "This update improves startup speed by around 5%, so feel free to slow down a little bit in other areas of your life.",
"description": "Release notes for version 7.29"
+ },
+ "icu:WhatsNew__v7.30--header": {
+ "messageformat": "Introducing Call Links: The missing link for calendar invites and impromptu gatherings.",
+ "description": "Release notes for version 7.30"
+ },
+ "icu:WhatsNew__v7.30--0": {
+ "messageformat": "Now you can quickly create an easy link that anyone on Signal can use to join a group call without having to join a Signal group chat first.",
+ "description": "Release notes for version 7.30"
+ },
+ "icu:WhatsNew__v7.30--1": {
+ "messageformat": "Call links are reusable and ideal for recurring phone dates with your best friends or weekly check-ins with your coworkers.",
+ "description": "Release notes for version 7.30"
+ },
+ "icu:WhatsNew__v7.30--2": {
+ "messageformat": "You can manage your call links, control approval settings, and copy links from the calls tab for quick sharing.",
+ "description": "Release notes for version 7.30"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 54009917b1..46eb36542d 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -42,7 +42,12 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
- features: [],
+ header: ,
+ features: [
+ ,
+ ,
+ ,
+ ],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {