Skip to content

Commit

Permalink
Add release notes for 6.41
Browse files Browse the repository at this point in the history
  • Loading branch information
scottnonnenberg-signal committed Nov 30, 2023
1 parent 42a0c1d commit 7753b16
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
9 changes: 6 additions & 3 deletions _locales/en/messages.json
Expand Up @@ -6999,13 +6999,16 @@
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
"description": "Release notes for releases that only include bug fixes"
},
"icu:WhatsNew__v6.38--0": {
"messageformat": "This release includes an updated design for Signal voice and video calls. Now the calling user interface will still look fantastic even if your camera isn't on and you can't stare at your own beautiful reflection."
},
"icu:WhatsNew__v6.39--0": {
"messageformat": "Now you can change your selected language in Signal without changing your system settings (Signal Settings > Appearance > Language)."
},
"icu:WhatsNew__v6.39--1": {
"messageformat": "We fixed a brief delay that sometimes occurred while joining a call lobby on macOS devices, which should get rid of at least one excuse for being a half-second late to the meeting."
},
"icu:WhatsNew__v6.41--0": {
"messageformat": "We fixed the transition animation for video tiles when someone joins or leaves a group call. When you see a friend's face slide into view, that's a social movement."
},
"icu:WhatsNew__v6.41--1": {
"messageformat": "Now you can click on a profile photo or group avatar in the chat header to quickly access chat settings or view any unseen stories from that chat. Thanks, {linkToGithub}!"
}
}
18 changes: 16 additions & 2 deletions ts/components/WhatsNewModal.tsx
Expand Up @@ -30,8 +30,22 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.39--1" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.41--0" />,
<Intl
i18n={i18n}
id="icu:WhatsNew__v6.41--1"
components={{
linkToGithub: (
<a
href="https://github.com/bhaskarraksahb"
target="_blank"
rel="noreferrer"
>
@bhaskarraksahb
</a>
),
}}
/>,
],
};

Expand Down

0 comments on commit 7753b16

Please sign in to comment.