Release notes for v6.34.0-beta.1

This commit is contained in:
Fedor Indutnyy 2023-10-05 09:33:32 -07:00
parent ea58202bff
commit f5636fbdee
2 changed files with 10 additions and 7 deletions

View file

@ -6807,13 +6807,13 @@
"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.32--0": {
"messageformat": "If you say \"media editor\" five times fast, it starts to sound like \"mediator\" — but the new media editor is so much easier to use that you'll no longer feel like you need a mediator to settle a fight between you and the crop tool."
},
"icu:WhatsNew__v6.32--1": {
"messageformat": "Sometimes the right reply can really help you get to the bottom of what people are saying, and now Signal will automatically scroll to what you just said whenever you send a message in a chat."
},
"icu:WhatsNew__v6.33--0": {
"messageformat": "Now you can edit a message with a right click after it has been sent! Fix a tpyo, include the missing ingredient in grandma's chocolate chip cookie recipe, or add the punchline to a joke if you hit the send button too quickly. The choice is yours. Messages will always show when they have been edited, and you can click on the \"Edited\" indicator to see the full edit history for any edited messages. Update the past in the present to prevent future confusion today!"
},
"icu:WhatsNew__v6.34--0": {
"messageformat": "Typing indicators in group chats will now display multiple profile pictures if more than one person is typing. James Cameron convinced us that we didn't need to stop after one avatar."
},
"icu:WhatsNew__v6.34--1": {
"messageformat": "Now you can right-click on any sent message or press the up arrow on your keyboard to edit what you just said! Fix a tpyo, include the missing ingredient in grandma's chocolate chip cookie recipe, or add the punchline to a joke if you hit the send button too quickly. The choice is yours. Messages will always show when they have been edited, and you can click on the \"Edited\" indicator to see the full edit history for any edited messages. Update the past in the present to prevent future confusion today!"
}
}

View file

@ -29,7 +29,10 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [<Intl i18n={i18n} id="icu:WhatsNew__v6.33--0" />],
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.34--0" />,
<Intl i18n={i18n} id="icu:WhatsNew__v6.34--1" />,
],
};
if (releaseNotes.features.length === 1) {