Release notes for 7.32

This commit is contained in:
Fedor Indutny 2024-10-30 14:25:53 -07:00
parent fb31d9d28e
commit 4f6e361f5c
2 changed files with 10 additions and 37 deletions

View file

@ -7616,28 +7616,16 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
"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": "(Deleted 2024/10/16) 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": "(Deleted 2024/10/23) 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": "(Deleted 2024/10/23) 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": "(Deleted 2024/10/23) 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": "(Deleted 2024/10/23) Release notes for version 7.30"
},
"icu:WhatsNew__v7.31--0": {
"messageformat": "Now you can quickly download every photo in an album when you receive a message with multiple attachments. But if you were a gallery curator with impeccable taste in another life, you can still save them individually too. Thanks, <linkMajorMayer>@major-mayer</linkMajorMayer>!",
"description": "Release notes for version 7.30"
},
"icu:WhatsNew__v7.32--0": {
"messageformat": "Thanks to some small optimizations, this update slightly reduces the size of the app by approximately 4 megabytes. That's enough room for you to send the equivalent of about 4 books worth of text messages (or 2-3 animated GIFs) without taking up any extra space.",
"description": "Release notes for version 7.31"
},
"icu:WhatsNew__v7.32--1": {
"messageformat": "If Wayland is your compositing window manager (and not just the name of a blacksmith you vaguely remember from Beowulf) you'll be happy to hear that we also fixed a bug with the screen sharing button on Linux.",
"description": "Release notes for version 7.31"
}
}

View file

@ -33,16 +33,6 @@ export function ExternalLink(props: {
);
}
function linkMajorMayer(
children: ReadonlyArray<string | JSX.Element>
): JSX.Element {
return (
<ExternalLink href="https://github.com/major-mayer">
{children}
</ExternalLink>
);
}
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@ -53,13 +43,8 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<I18n
i18n={i18n}
id="icu:WhatsNew__v7.31--0"
components={{
linkMajorMayer,
}}
/>,
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--1" />,
],
};