mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 17:08:57 +01:00
Release notes for 7.79
This commit is contained in:
@@ -9736,5 +9736,13 @@
|
||||
"icu:WhatsNew__7.78-2": {
|
||||
"messageformat": "We also fixed a bug that could prevent notifications from appearing on Windows.",
|
||||
"description": " Release notes for 7.78 release"
|
||||
},
|
||||
"icu:WhatsNew__7.79-1": {
|
||||
"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.",
|
||||
"description": " Release notes for 7.79 release"
|
||||
},
|
||||
"icu:WhatsNew__7.79-2": {
|
||||
"messageformat": "Copy/paste improvements make it easier to select-all and replace existing text without inheriting the old formatting. Thanks, <brianHarder></brianHarder>!",
|
||||
"description": " Release notes for 7.79 release"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -34,6 +34,14 @@ export function ExternalLink(props: {
|
||||
);
|
||||
}
|
||||
|
||||
function BrianHarder() {
|
||||
return (
|
||||
<ExternalLink href="https://github.com/brianHarder">
|
||||
@brianHarder
|
||||
</ExternalLink>
|
||||
);
|
||||
}
|
||||
|
||||
export function WhatsNewModal({
|
||||
i18n,
|
||||
hideWhatsNewModal,
|
||||
@@ -44,8 +52,14 @@ export function WhatsNewModal({
|
||||
date: new Date(window.getBuildCreation?.() || Date.now()),
|
||||
version: window.getVersion?.(),
|
||||
features: [
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__7.78-1" />,
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__7.78-2" />,
|
||||
<I18n i18n={i18n} id="icu:WhatsNew__7.79-1" />,
|
||||
<I18n
|
||||
i18n={i18n}
|
||||
id="icu:WhatsNew__7.79-2"
|
||||
components={{
|
||||
brianHarder: BrianHarder,
|
||||
}}
|
||||
/>,
|
||||
],
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user