Release notes for 7.30
This commit is contained in:
parent
2acc5f26f9
commit
dcbff6c915
2 changed files with 22 additions and 9 deletions
|
@ -7588,16 +7588,24 @@
|
||||||
"description": "Release notes for releases that only include bug fixes",
|
"description": "Release notes for releases that only include bug fixes",
|
||||||
"ignoreUnused": true
|
"ignoreUnused": true
|
||||||
},
|
},
|
||||||
"icu:WhatsNew__v7.28--0": {
|
|
||||||
"messageformat": "We fixed a bug that prevented stickers from working correctly in the media editor, and now the picker no longer gets stuck when you're trying to stick a sticker on a picture.",
|
|
||||||
"description": "(Deleted 2024/10/10) Release notes for version 7.28"
|
|
||||||
},
|
|
||||||
"icu:WhatsNew__v7.28--1": {
|
|
||||||
"messageformat": "This update also includes support for the new screen sharing interface in macOS Sequoia.",
|
|
||||||
"description": "(Deleted 2024/10/10) Release notes for version 7.28"
|
|
||||||
},
|
|
||||||
"icu:WhatsNew__v7.29--0": {
|
"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.",
|
"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": "Release notes for version 7.29"
|
"description": "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": "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": "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": "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": "Release notes for version 7.30"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,7 +42,12 @@ 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?.(),
|
||||||
features: [<I18n i18n={i18n} id="icu:WhatsNew__v7.29--0" />],
|
header: <I18n i18n={i18n} id="icu:WhatsNew__v7.30--header" />,
|
||||||
|
features: [
|
||||||
|
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--0" />,
|
||||||
|
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--1" />,
|
||||||
|
<I18n i18n={i18n} id="icu:WhatsNew__v7.30--2" />,
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
if (releaseNotes.features.length === 1 && !releaseNotes.header) {
|
if (releaseNotes.features.length === 1 && !releaseNotes.header) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue