Update release notes
This commit is contained in:
parent
31b6a58fb7
commit
d8e17afcfd
2 changed files with 28 additions and 36 deletions
|
@ -7047,12 +7047,6 @@
|
||||||
"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.42--0": {
|
|
||||||
"messageformat": "We fixed a bug that displayed quoted replies to videos as though they were quoted replies to photos, even though every video is really just a sequence of photos if you think about it."
|
|
||||||
},
|
|
||||||
"icu:WhatsNew__v6.42--1": {
|
|
||||||
"messageformat": "Thanks to {linkToGithub1} and {linkToGithub2} for their help with this release."
|
|
||||||
},
|
|
||||||
"icu:WhatsNew__v6.43--0": {
|
"icu:WhatsNew__v6.43--0": {
|
||||||
"messageformat": "Turn a missed call into something that won't be missed. Now you can right-click on any call event and delete it from a chat."
|
"messageformat": "Turn a missed call into something that won't be missed. Now you can right-click on any call event and delete it from a chat."
|
||||||
},
|
},
|
||||||
|
@ -7064,5 +7058,14 @@
|
||||||
},
|
},
|
||||||
"icu:WhatsNew__v6.43--3": {
|
"icu:WhatsNew__v6.43--3": {
|
||||||
"messageformat": "We would also like to thank {linkToGithub1}, {linkToGithub2}, and {linkToGithub3} for their contributions to this release."
|
"messageformat": "We would also like to thank {linkToGithub1}, {linkToGithub2}, and {linkToGithub3} for their contributions to this release."
|
||||||
|
},
|
||||||
|
"icu:WhatsNew__v6.44--0": {
|
||||||
|
"messageformat": "If resolving a few small bugs counts as a New Year’s resolution, then 2024 is off to a fantastic start."
|
||||||
|
},
|
||||||
|
"icu:WhatsNew__v6.44--1": {
|
||||||
|
"messageformat": "Region-neutral font fallback logic improves how CJK characters are displayed across different locales."
|
||||||
|
},
|
||||||
|
"icu:WhatsNew__v6.44--2": {
|
||||||
|
"messageformat": "Thanks to {linkToGithub1}, {linkToGithub2}, {linkToGithub3}, {linkToGithub4}, and {linkToGithub5} for their contributions to this release!"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,46 +42,35 @@ export function WhatsNewModal({
|
||||||
date: new Date(window.getBuildCreation?.() || Date.now()),
|
date: new Date(window.getBuildCreation?.() || Date.now()),
|
||||||
version: window.getVersion?.(),
|
version: window.getVersion?.(),
|
||||||
features: [
|
features: [
|
||||||
<Intl i18n={i18n} id="icu:WhatsNew__v6.43--0" />,
|
<Intl i18n={i18n} id="icu:WhatsNew__v6.44--0" />,
|
||||||
|
<Intl i18n={i18n} id="icu:WhatsNew__v6.44--1" />,
|
||||||
<Intl
|
<Intl
|
||||||
i18n={i18n}
|
i18n={i18n}
|
||||||
id="icu:WhatsNew__v6.43--1"
|
id="icu:WhatsNew__v6.44--2"
|
||||||
components={{
|
components={{
|
||||||
linkToGithub1: (
|
linkToGithub1: (
|
||||||
<ExternalLink href="https://github.com/MahdiNazemi">
|
<ExternalLink href="https://github.com/0o001">
|
||||||
@MahdiNazemi
|
@0o001
|
||||||
</ExternalLink>
|
|
||||||
),
|
|
||||||
}}
|
|
||||||
/>,
|
|
||||||
<Intl
|
|
||||||
i18n={i18n}
|
|
||||||
id="icu:WhatsNew__v6.43--2"
|
|
||||||
components={{
|
|
||||||
linkToGithub1: (
|
|
||||||
<ExternalLink href="https://github.com/Shrinks99">
|
|
||||||
@Shrinks99
|
|
||||||
</ExternalLink>
|
|
||||||
),
|
|
||||||
}}
|
|
||||||
/>,
|
|
||||||
<Intl
|
|
||||||
i18n={i18n}
|
|
||||||
id="icu:WhatsNew__v6.43--3"
|
|
||||||
components={{
|
|
||||||
linkToGithub1: (
|
|
||||||
<ExternalLink href="https://github.com/NetSysFire">
|
|
||||||
@NetSysFire
|
|
||||||
</ExternalLink>
|
</ExternalLink>
|
||||||
),
|
),
|
||||||
linkToGithub2: (
|
linkToGithub2: (
|
||||||
<ExternalLink href="https://github.com/timjamello">
|
<ExternalLink href="https://github.com/hackerbirds">
|
||||||
@timjamello
|
@hackerbirds
|
||||||
</ExternalLink>
|
</ExternalLink>
|
||||||
),
|
),
|
||||||
linkToGithub3: (
|
linkToGithub3: (
|
||||||
<ExternalLink href="https://github.com/u32i64">
|
<ExternalLink href="https://github.com/rschiang">
|
||||||
@u32i64
|
@rschiang
|
||||||
|
</ExternalLink>
|
||||||
|
),
|
||||||
|
linkToGithub4: (
|
||||||
|
<ExternalLink href="https://github.com/vijithassar">
|
||||||
|
@vijithassar
|
||||||
|
</ExternalLink>
|
||||||
|
),
|
||||||
|
linkToGithub5: (
|
||||||
|
<ExternalLink href="https://github.com/yaslama">
|
||||||
|
@yaslama
|
||||||
</ExternalLink>
|
</ExternalLink>
|
||||||
),
|
),
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue