Release notes for 7.37

This commit is contained in:
trevor-signal 2024-12-12 09:35:16 -05:00
parent dbe92c02f2
commit 8a4b257082
2 changed files with 5 additions and 8 deletions

View file

@ -7688,10 +7688,6 @@
"description": "Release notes for releases that only include bug fixes", "description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true "ignoreUnused": true
}, },
"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": "(Deleted 2024/12/04) Release notes for version 7.35"
},
"icu:WhatsNew__v7.36--0": { "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.", "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" "description": "Release notes for version 7.36"
@ -7699,5 +7695,9 @@
"icu:WhatsNew__v7.36--1": { "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.", "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" "description": "Release notes for version 7.36"
},
"icu:WhatsNew__v7.37--0": {
"messageformat": "Now you can easily see the progress of attachment downloads. You can also stop and restart in-progress downloads too. So if a transfer is slowed because you're on the road (in airplane mode?) or the mediocre hotel WiFi is about to implode, you can wait to reload when more available bandwidth is bestowed.",
"description": "Release notes for version 7.37"
} }
} }

View file

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