Skip to content

Commit 685265d

Browse files
Release notes for 7.77
1 parent b6e969d commit 685265d

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

_locales/en/messages.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9652,5 +9652,13 @@
96529652
"icu:WhatsNew__7.76": {
96539653
"messageformat": "Set up custom notification profiles to control which people and groups you receive notifications from when that profile is enabled. Create a “Work” profile that keeps non-coworkers at bay (with an exception for your bae) and a “Downtime” profile that doesn't include your boss. You can switch between notification profiles whenever you want, or configure a schedule so it happens automatically.",
96549654
"description": " Release notes for 7.76 release"
9655+
},
9656+
"icu:WhatsNew__7.77-1": {
9657+
"messageformat": "Chat folders let you organize your organizations, group your groups, and individualize your individuals into unique folders that are easy to customize and rearrange. Display unread messages from your favorite people, filter by chat type (1-on-1 and groups), or create separate folders like \"Personal\" and \"Work\" so you can quickly see the messages that are relevant to you. Enable chat folders in Settings > Chats to get started.",
9658+
"description": " Release notes for 7.77 release"
9659+
},
9660+
"icu:WhatsNew__7.77-2": {
9661+
"messageformat": "This update also includes a bugfix for an issue that prevented link previews from being generated when the message also included emoji characters. Thanks, <elias6></elias6>",
9662+
"description": " Release notes for 7.77 release"
96559663
}
96569664
}

ts/components/WhatsNewModal.dom.tsx

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ export function ExternalLink(props: {
3434
);
3535
}
3636

37+
function Elias6() {
38+
return <ExternalLink href="https://github.com/elias6">@elias6</ExternalLink>;
39+
}
40+
3741
export function WhatsNewModal({
3842
i18n,
3943
hideWhatsNewModal,
@@ -43,7 +47,16 @@ export function WhatsNewModal({
4347
const releaseNotes: ReleaseNotesType = {
4448
date: new Date(window.getBuildCreation?.() || Date.now()),
4549
version: window.getVersion?.(),
46-
features: [<I18n i18n={i18n} id="icu:WhatsNew__7.76" />],
50+
features: [
51+
<I18n i18n={i18n} id="icu:WhatsNew__7.77-1" />,
52+
<I18n
53+
i18n={i18n}
54+
id="icu:WhatsNew__7.77-2"
55+
components={{
56+
elias6: Elias6,
57+
}}
58+
/>,
59+
],
4760
};
4861

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

0 commit comments

Comments
 (0)