Skip to content

Commit 3bd0f56

Browse files
committed
Release notes for 7.19
1 parent c5ce9cd commit 3bd0f56

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

_locales/en/messages.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7420,12 +7420,16 @@
74207420
"description": "Release notes for releases that only include bug fixes",
74217421
"ignoreUnused": true
74227422
},
7423-
"icu:WhatsNew__v7.17--0": {
7424-
"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.",
7425-
"description": "(Deleted 2024/07/25) Release notes for version 7.17"
7426-
},
74277423
"icu:WhatsNew__v7.18--0": {
74287424
"messageformat": "A quick goodbye is sometimes easier than a slow farewell, so we sped up the process of deleting large message threads.",
74297425
"description": "Release notes for version 7.18"
7426+
},
7427+
"icu:WhatsNew__v7.19--0": {
7428+
"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.",
7429+
"description": "Release notes for version 7.19"
7430+
},
7431+
"icu:WhatsNew__v7.19--1": {
7432+
"messageformat": "This update also fixes a startup crash on Linux for users whose locale is set to `POSIX`.",
7433+
"description": "Release notes for version 7.19, part 2"
74307434
}
74317435
}

ts/components/WhatsNewModal.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,10 @@ export function WhatsNewModal({
4242
const releaseNotes: ReleaseNotesType = {
4343
date: new Date(window.getBuildCreation?.() || Date.now()),
4444
version: window.getVersion?.(),
45-
features: [<I18n i18n={i18n} id="icu:WhatsNew__v7.18--0" />],
45+
features: [
46+
<I18n i18n={i18n} id="icu:WhatsNew__v7.19--0" />,
47+
<I18n i18n={i18n} id="icu:WhatsNew__v7.19--1" />,
48+
],
4649
};
4750

4851
if (releaseNotes.features.length === 1 && !releaseNotes.header) {

0 commit comments

Comments
 (0)