Release notes for 7.34

This commit is contained in:
trevor-signal 2024-11-13 15:03:02 -05:00
parent a56e7d0ade
commit 4d7b325726
2 changed files with 15 additions and 27 deletions

View file

@ -7676,20 +7676,20 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
"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": "(Deleted 2024/10/30) Release notes for version 7.31"
},
"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": "(Deleted 2024/11/07) Release notes for version 7.32"
},
"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": "(Deleted 2024/11/07) Release notes for version 7.32"
},
"icu:WhatsNew__v7.33--0": {
"messageformat": "This update fixes a bug where the correct context menu wasn't appearing after right-clicking on an emoji while selecting text. Thanks, <linkKhuddite>@khuddite</linkKhuddite>!",
"description": "Release notes for version 7.33"
},
"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": "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": "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": "Release notes for version 7.34"
}
}

View file

@ -33,14 +33,6 @@ export function ExternalLink(props: {
);
}
function linkKhuddite(
children: ReadonlyArray<string | JSX.Element>
): JSX.Element {
return (
<ExternalLink href="https://github.com/khuddite">{children}</ExternalLink>
);
}
export function WhatsNewModal({
i18n,
hideWhatsNewModal,
@ -51,13 +43,9 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<I18n
i18n={i18n}
id="icu:WhatsNew__v7.33--0"
components={{
linkKhuddite,
}}
/>,
<I18n i18n={i18n} id="icu:WhatsNew__v7.34--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.34--1" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.34--2" />,
],
};