Release notes for 7.46

This commit is contained in:
trevor-signal
2025-03-06 15:14:32 -05:00
parent f5fe787ed7
commit eaa696bb17
2 changed files with 12 additions and 5 deletions

View File

@@ -8108,12 +8108,16 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
"icu:WhatsNew__v7.44--0": {
"messageformat": "We fixed a minor animation bug during group calls. We apologize in advance if the most exciting part of your day was switching to grid view during a meeting and trying to catch the moment where the video squares from people who joined late sometimes partially obscured the slide deck your boss was presenting.",
"description": "(Deleted 2025/02/26) Release notes for version 7.44"
},
"icu:WhatsNew__v7.45--0": {
"messageformat": "Stickers should feel sticky, not stuck, so now you can click on a sticker on a newly linked Signal Desktop and that sticker download will automatically get prioritized even when other attachments are downloading too.",
"description": "Release notes for version 7.45"
},
"icu:WhatsNew__v7.46--0": {
"messageformat": "The new \"Data usage\" feature in Signal settings makes it easy to choose whether or not to automatically download photos, videos, audio files, or other documents. If Signal stops automatically downloading the latest tracks from your friend's boyfriend's band in the group chat, you can save your taste in music along with some free space on your hard drive.",
"description": "Release notes for version 7.46"
},
"icu:WhatsNew__v7.46--1": {
"messageformat": "Now when you attempt to start a chat with someone's Signal username, it will work even if you accidentally type the “@” symbol first. Some h@bits @re h@rd to bre@k.",
"description": "Release notes for version 7.46"
}
}

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.45--0" />],
features: [
<I18n i18n={i18n} id="icu:WhatsNew__v7.46--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.46--1" />,
],
};
if (releaseNotes.features.length === 1 && !releaseNotes.header) {