Release notes for 7.31
This commit is contained in:
parent
76e2597d30
commit
5bde25cafc
2 changed files with 21 additions and 4 deletions
|
@ -7630,6 +7630,10 @@
|
||||||
},
|
},
|
||||||
"icu:WhatsNew__v7.30--2": {
|
"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.",
|
"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"
|
"description": "Release notes for version 7.30"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,6 +33,16 @@ 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({
|
export function WhatsNewModal({
|
||||||
i18n,
|
i18n,
|
||||||
hideWhatsNewModal,
|
hideWhatsNewModal,
|
||||||
|
@ -42,11 +52,14 @@ 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?.(),
|
||||||
header: <I18n i18n={i18n} id="icu:WhatsNew__v7.30--header" />,
|
|
||||||
features: [
|
features: [
|
||||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--0" />,
|
<I18n
|
||||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--1" />,
|
i18n={i18n}
|
||||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--2" />,
|
id="icu:WhatsNew__v7.31--0"
|
||||||
|
components={{
|
||||||
|
linkMajorMayer,
|
||||||
|
}}
|
||||||
|
/>,
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue