Release notes for 7.36

This commit is contained in:
ayumi-signal 2024-12-03 15:05:00 -08:00
parent cb53e17ae4
commit df7a1f6b21
2 changed files with 12 additions and 13 deletions

View file

@ -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"
}
}

View file

@ -42,7 +42,10 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [<I18n i18n={i18n} id="icu:WhatsNew__v7.35--0" />],
features: [
<I18n i18n={i18n} id="icu:WhatsNew__v7.36--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.36--1" />,
],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {