diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 281c6b4fabdf..a6734a1c666f 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7680,20 +7680,16 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
- "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": "(Deleted 2024/11/20) 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": "(Deleted 2024/11/20) 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": "(Deleted 2024/11/20) Release notes for version 7.34"
- },
"icu:WhatsNew__v7.35--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.35"
+ },
+ "icu:WhatsNew__v7.36--0": {
+ "messageformat": "This update fixes a bug on macOS Sonoma that prevented screen sharing from working correctly if permission to share the screen had previously been denied — so you no longer need to share your screen with an error message.",
+ "description": "Release notes for version 7.36"
+ },
+ "icu:WhatsNew__v7.36--1": {
+ "messageformat": "Filter by Unread now highlights the selected chat, and the list of unread chats will automatically update as new messages arrive or when you catch up in one chat and click on another.",
+ "description": "Release notes for version 7.36"
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 3e7c5bb47acb..dd6b0449dc65 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) {