Skip to content

Commit 52356e9

Browse files
Release notes for 7.79
1 parent 1925044 commit 52356e9

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

_locales/en/messages.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9736,5 +9736,13 @@
97369736
"icu:WhatsNew__7.78-2": {
97379737
"messageformat": "We also fixed a bug that could prevent notifications from appearing on Windows.",
97389738
"description": " Release notes for 7.78 release"
9739+
},
9740+
"icu:WhatsNew__7.79-1": {
9741+
"messageformat": "We updated the appearance and stylistic consistency of scrollbars throughout the app. Usually if you scroll too fast you might miss something, but in this case scrolling is the only way to see it.",
9742+
"description": " Release notes for 7.79 release"
9743+
},
9744+
"icu:WhatsNew__7.79-2": {
9745+
"messageformat": "Copy/paste improvements make it easier to select-all and replace existing text without inheriting the old formatting. Thanks, <brianHarder></brianHarder>!",
9746+
"description": " Release notes for 7.79 release"
97399747
}
97409748
}

ts/components/WhatsNewModal.dom.tsx

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

37+
function BrianHarder() {
38+
return (
39+
<ExternalLink href="https://github.com/brianHarder">
40+
@brianHarder
41+
</ExternalLink>
42+
);
43+
}
44+
3745
export function WhatsNewModal({
3846
i18n,
3947
hideWhatsNewModal,
@@ -44,8 +52,14 @@ export function WhatsNewModal({
4452
date: new Date(window.getBuildCreation?.() || Date.now()),
4553
version: window.getVersion?.(),
4654
features: [
47-
<I18n i18n={i18n} id="icu:WhatsNew__7.78-1" />,
48-
<I18n i18n={i18n} id="icu:WhatsNew__7.78-2" />,
55+
<I18n i18n={i18n} id="icu:WhatsNew__7.79-1" />,
56+
<I18n
57+
i18n={i18n}
58+
id="icu:WhatsNew__7.79-2"
59+
components={{
60+
brianHarder: BrianHarder,
61+
}}
62+
/>,
4963
],
5064
};
5165

0 commit comments

Comments
 (0)