Release notes for v6.26

This commit is contained in:
Fedor Indutnyy 2023-07-13 11:12:17 -07:00
parent 7c050ee01f
commit a29433dd40
2 changed files with 24 additions and 4 deletions

View file

@ -6514,10 +6514,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.24--0": {
"messageformat": "Now you can search your @ mentions too. \"Thanks for adding this feature,\" you might say. \"Don't mention it,\" we'll reply."
},
"icu:WhatsNew__v6.25--0": {
"messageformat": "Now that the calling and conversation headers are draggable, repositioning your Signal window won't be such a drag."
},
"icu:WhatsNew__v6.26--0": {
"messageformat": "Diacritics (such as accent marks) are now supported in @ mentions, so you can remind Aristotélēs to answer your philosophy question in the \"Ancient Greek Time Travellers\" group chat."
},
"icu:WhatsNew__v6.26--1": {
"messageformat": "Three cheers for triple-click text selection improvements. Thanks, {linkToGithub}!"
}
}

View file

@ -29,7 +29,24 @@ export function WhatsNewModal({
const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [<Intl i18n={i18n} id="icu:WhatsNew__v6.25--0" />],
features: [
<Intl i18n={i18n} id="icu:WhatsNew__v6.26--0" />,
<Intl
i18n={i18n}
id="icu:WhatsNew__v6.26--1"
components={{
linkToGithub: (
<a
href="https://github.com/nrayburn-tech"
target="_blank"
rel="noreferrer"
>
@nrayburn-tech
</a>
),
}}
/>,
],
};
if (releaseNotes.features.length === 1) {