Skip to content

Commit f3c425e

Browse files
committed
Release notes for 7.74
1 parent 9003c1f commit f3c425e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

_locales/en/messages.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9300,5 +9300,9 @@
93009300
"icu:WhatsNew__7.73": {
93019301
"messageformat": "This update introduces new performance optimizations to help improve battery life, so you'll have more charge available for emotionally charged conversations.",
93029302
"description": "Release notes for 7.73 release"
9303+
},
9304+
"icu:WhatsNew__7.74": {
9305+
"messageformat": "Just in time for autumn, the new \"Leafless Tree\" emoji {leaflessTreeEmoji} (along with the other six new emoji in Unicode 16.0) are now supported in Signal Desktop.",
9306+
"description": "Release notes for 7.74 release."
93039307
}
93049308
}

ts/components/WhatsNewModal.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@ export function WhatsNewModal({
4343
const releaseNotes: ReleaseNotesType = {
4444
date: new Date(window.getBuildCreation?.() || Date.now()),
4545
version: window.getVersion?.(),
46-
features: [<I18n i18n={i18n} id="icu:WhatsNew__7.73" />],
46+
features: [
47+
<I18n
48+
i18n={i18n}
49+
id="icu:WhatsNew__7.74"
50+
components={{ leaflessTreeEmoji: '🪾' }}
51+
/>,
52+
],
4753
};
4854

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

0 commit comments

Comments
 (0)