Add release notes for v6.32
This commit is contained in:
parent
17b0c0548d
commit
108c313659
2 changed files with 10 additions and 4 deletions
|
@ -6807,10 +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.30--0": {
|
||||
"messageformat": "Keep tabs on your calls with the new calls tab. Start a new call or return a call that you missed without having to find the corresponding chat. Now you can say hello with your voice without also saying goodbye to the unread marker for messages in that thread."
|
||||
},
|
||||
"icu:WhatsNew__v6.31--0": {
|
||||
"messageformat": "This update fixes a handful of bugs, including one that caused the main Signal window to go blank if you viewed a debug log in full-screen mode on macOS. Seeing a completely Light or completely Dark window is arguably the purest possible expression of the Light Theme and Dark Theme, but we ultimately decided that the app is easier to use when you can see the interface too."
|
||||
},
|
||||
"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."
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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.31--0" />],
|
||||
features: [
|
||||
<Intl i18n={i18n} id="icu:WhatsNew__v6.32--0" />,
|
||||
<Intl i18n={i18n} id="icu:WhatsNew__v6.32--1" />,
|
||||
],
|
||||
};
|
||||
|
||||
if (releaseNotes.features.length === 1) {
|
||||
|
|
Loading…
Reference in a new issue