Release notes for 5.39.x
This commit is contained in:
parent
4c798bf7b8
commit
43d51a3fb3
2 changed files with 12 additions and 13 deletions
|
@ -7050,18 +7050,6 @@
|
||||||
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
|
"message": "This version contains a number of small tweaks and bug fixes to keep Signal running smoothly.",
|
||||||
"description": "Release notes for releases that only include bug fixes"
|
"description": "Release notes for releases that only include bug fixes"
|
||||||
},
|
},
|
||||||
"WhatsNew__v5.35--1": {
|
|
||||||
"message": "A new update system has been introduced and folks should start seeing smaller updates with the next update.",
|
|
||||||
"description": "Release notes for v5.35"
|
|
||||||
},
|
|
||||||
"WhatsNew__v5.35--2": {
|
|
||||||
"message": "Applications that use media keys rejoice! Signal no longer has a hold on them.",
|
|
||||||
"description": "Release notes for v5.35"
|
|
||||||
},
|
|
||||||
"WhatsNew__v5.35--3": {
|
|
||||||
"message": "Better font support for our Japanese friends.",
|
|
||||||
"description": "Release notes for v5.35"
|
|
||||||
},
|
|
||||||
"WhatsNew__v5.36--1": {
|
"WhatsNew__v5.36--1": {
|
||||||
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
|
"message": "Quickly scanning that group chat? There's more room for more messages on the screen at once. We now group sender's messages together if they're close together in time.",
|
||||||
"description": "Release notes for v5.36"
|
"description": "Release notes for v5.36"
|
||||||
|
@ -7077,5 +7065,13 @@
|
||||||
"WhatsNew__v5.37--2": {
|
"WhatsNew__v5.37--2": {
|
||||||
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
|
"message": "Missing sticker packs begone! Desktop should now be able to handle all sticker packs that your phone can!",
|
||||||
"description": "Release notes for v5.37"
|
"description": "Release notes for v5.37"
|
||||||
|
},
|
||||||
|
"WhatsNew__v5.39--1": {
|
||||||
|
"message": "You can now add people to groups using just their phone number.",
|
||||||
|
"description": "Release notes for v5.39"
|
||||||
|
},
|
||||||
|
"WhatsNew__v5.39--2": {
|
||||||
|
"message": "Your favorite contacts are now just a few keystrokes away. Contact search now supports non-Latin alphabets like Cyrillic.",
|
||||||
|
"description": "Release notes for v5.39"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,10 @@ const renderText: RenderTextCallbackType = ({ key, text }) => (
|
||||||
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: [{ key: 'WhatsNew__bugfixes', components: undefined }],
|
features: [
|
||||||
|
{ key: 'WhatsNew__v5.39--1', components: undefined },
|
||||||
|
{ key: 'WhatsNew__v5.39--2', components: undefined },
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
export const WhatsNewModal = ({
|
export const WhatsNewModal = ({
|
||||||
|
|
Loading…
Add table
Reference in a new issue