Release notes for 7.19
This commit is contained in:
parent
c5ce9cd880
commit
3bd0f56ac8
2 changed files with 12 additions and 5 deletions
|
@ -7420,12 +7420,16 @@
|
|||
"description": "Release notes for releases that only include bug fixes",
|
||||
"ignoreUnused": true
|
||||
},
|
||||
"icu:WhatsNew__v7.17--0": {
|
||||
"messageformat": "We wanted things to be slicker and quicker for sticker clickers, so we fixed a bug that sometimes prevented Signal from launching the sticker viewer if you tried to open a sticker pack link while the app was closed.",
|
||||
"description": "(Deleted 2024/07/25) Release notes for version 7.17"
|
||||
},
|
||||
"icu:WhatsNew__v7.18--0": {
|
||||
"messageformat": "A quick goodbye is sometimes easier than a slow farewell, so we sped up the process of deleting large message threads.",
|
||||
"description": "Release notes for version 7.18"
|
||||
},
|
||||
"icu:WhatsNew__v7.19--0": {
|
||||
"messageformat": "If another call is calling your name, we added a shortcut to leave the current call and join a new one. You'll be prompted to confirm your departure, but it's up to you whether or not you say goodbye first.",
|
||||
"description": "Release notes for version 7.19"
|
||||
},
|
||||
"icu:WhatsNew__v7.19--1": {
|
||||
"messageformat": "This update also fixes a startup crash on Linux for users whose locale is set to `POSIX`.",
|
||||
"description": "Release notes for version 7.19, part 2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -42,7 +42,10 @@ export function WhatsNewModal({
|
|||
const releaseNotes: ReleaseNotesType = {
|
||||
date: new Date(window.getBuildCreation?.() || Date.now()),
|
||||
version: window.getVersion?.(),
|
||||
features: [<I18n i18n={i18n} id="icu:WhatsNew__v7.18--0" />],
|
||||
features: [
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.19--0" />,
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__v7.19--1" />,
|
||||
],
|
||||
};
|
||||
|
||||
if (releaseNotes.features.length === 1 && !releaseNotes.header) {
|
||||
|
|
Loading…
Reference in a new issue