Release notes for v6.26
This commit is contained in:
parent
7c050ee01f
commit
a29433dd40
2 changed files with 24 additions and 4 deletions
|
@ -6514,10 +6514,13 @@
|
||||||
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
|
"messageformat": "Small tweaks, bug fixes, and performance enhancements. Thanks for using Signal!",
|
||||||
"description": "Release notes for releases that only include bug fixes"
|
"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": {
|
"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."
|
"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}!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,24 @@ export function WhatsNewModal({
|
||||||
const releaseNotes: ReleaseNotesType = {
|
const releaseNotes: ReleaseNotesType = {
|
||||||
date: new Date(window.getBuildCreation?.() || Date.now()),
|
date: new Date(window.getBuildCreation?.() || Date.now()),
|
||||||
version: window.getVersion?.(),
|
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) {
|
if (releaseNotes.features.length === 1) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue