Add release notes for 7.33
This commit is contained in:
parent
d5d7436df8
commit
7e63adce20
2 changed files with 22 additions and 5 deletions
|
@ -7630,14 +7630,18 @@
|
|||
},
|
||||
"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.30"
|
||||
"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": "Release notes for version 7.31"
|
||||
"description": "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": "Release notes for version 7.31"
|
||||
"description": "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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,14 @@ 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,
|
||||
|
@ -43,8 +51,13 @@ export function WhatsNewModal({
|
|||
date: new Date(window.getBuildCreation?.() || Date.now()),
|
||||
version: window.getVersion?.(),
|
||||
features: [
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--0" />,
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.32--1" />,
|
||||
<I18n
|
||||
i18n={i18n}
|
||||
id="icu:WhatsNew__v7.33--0"
|
||||
components={{
|
||||
linkKhuddite,
|
||||
}}
|
||||
/>,
|
||||
],
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue