Release notes for 7.13

This commit is contained in:
Fedor Indutny 2024-06-12 01:59:52 +10:00
parent ad3366fa5c
commit 1926b3fde5
2 changed files with 10 additions and 7 deletions

View file

@ -7271,10 +7271,6 @@
"description": "Release notes for releases that only include bug fixes",
"ignoreUnused": true
},
"icu:WhatsNew__v7.11--0": {
"messageformat": "We fixed a rendering bug that caused the contacts icon to smash itself right next to the contact's name while viewing the list of participants in a group call. You're probably really close to your contacts, but sometimes you (and the Signal Desktop user interface) both need a little space.",
"description": "(Deleted 2024/05/30) Release notes for version 7.11"
},
"icu:WhatsNew__v7.12--0": {
"messageformat": "Raise your hand if you've been looking for another way to communicate during group calls. The new Raise Hand feature is a simple way to get someone's attention, ask a question, or unanimously vote for a group proposal when your friend asks \"all those in favor?\"",
"description": "Release notes for version 7.12"
@ -7286,5 +7282,13 @@
"icu:WhatsNew__v7.12--2": {
"messageformat": "We modified the keyboard shortcut for sending a voice note to Ctrl/Cmd+Shift+Y so that it no longer conflicts with the \"Paste and Match Style\" shortcut on Windows and Linux.",
"description": "Release notes for version 7.12"
},
"icu:WhatsNew__v7.13--0": {
"messageformat": "We fixed a bug that displayed images with the wrong aspect ratio if you resized the Signal Desktop window while viewing someone's profile picture. The people you love should only look squeezed if you are giving them a hug.",
"description": "Release notes for version 7.13"
},
"icu:WhatsNew__v7.13--1": {
"messageformat": "This update also improves the display of quoted replies in RTL languages.",
"description": "Release notes for version 7.13"
}
}

View file

@ -43,9 +43,8 @@ export function WhatsNewModal({
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
<I18n i18n={i18n} id="icu:WhatsNew__v7.12--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.12--2" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.12--1" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.13--0" />,
<I18n i18n={i18n} id="icu:WhatsNew__v7.13--1" />,
],
};