From 85027e7ce532e8c0cf063e0625008f7593523966 Mon Sep 17 00:00:00 2001
From: Josh Perez <60019601+josh-signal@users.noreply.github.com>
Date: Fri, 15 Apr 2022 18:18:47 -0400
Subject: [PATCH] Release notes for v5.40.x
---
_locales/en/messages.json | 34 ++++++++++++++++++---------------
ts/components/WhatsNewModal.tsx | 15 +++++++++++++--
2 files changed, 32 insertions(+), 17 deletions(-)
diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index fa84069d24..defdd05d3c 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -7056,13 +7056,7 @@
},
"StoryListItem__hide-modal--confirm": {
"message": "Hide",
- "description": "Action button for the confirmation dialog to hide a story",
- "placeholders": {
- "name": {
- "content": "$1",
- "example": "Abby"
- }
- }
+ "description": "Action button for the confirmation dialog to hide a story"
},
"StoryImage__error": {
"message": "Error displaying image",
@@ -7080,14 +7074,6 @@
"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"
},
- "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.",
- "description": "Release notes for v5.36"
- },
- "WhatsNew__v5.36--2": {
- "message": "When you perform a Delete for Everyone you'll now see a progress spinner letting you know whether it's been successfully sent or not. If it fails for some reason, you'll be able to retry too!",
- "description": "Release notes for v5.36"
- },
"WhatsNew__v5.37--1": {
"message": "We're keeping short messages short, by putting stuff like timestamps on the same line as the text. Now you've got more space on the screen for that quick 'hey' to check in on a friend.",
"description": "Release notes for v5.37"
@@ -7103,5 +7089,23 @@
"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"
+ },
+ "WhatsNew__v5.40--1": {
+ "message": "Bug fixes including a fix to an issue that would sometimes make it difficult to click on menus. ",
+ "description": "Release notes for v5.40"
+ },
+ "WhatsNew__v5.40--2": {
+ "message": "Thanks to our open source contributors $dsanders11$ and $yusufsahinhamza$ for contributing to these improvements.",
+ "description": "Release notes for v5.40",
+ "placeholders": {
+ "dsanders11": {
+ "content": "$1",
+ "example": "dsanders11"
+ },
+ "yusufsahinhamza": {
+ "content": "$2",
+ "example": "yusufsahinhamza"
+ }
+ }
}
}
diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx
index 711f31a286..2c001a4b11 100644
--- a/ts/components/WhatsNewModal.tsx
+++ b/ts/components/WhatsNewModal.tsx
@@ -30,8 +30,19 @@ const releaseNotes: ReleaseNotesType = {
date: new Date(window.getBuildCreation?.() || Date.now()),
version: window.getVersion?.(),
features: [
- { key: 'WhatsNew__v5.39--1', components: undefined },
- { key: 'WhatsNew__v5.39--2', components: undefined },
+ {
+ key: 'WhatsNew__v5.40--1',
+ components: undefined,
+ },
+ {
+ key: 'WhatsNew__v5.40--2',
+ components: {
+ dsanders11: @dsanders11,
+ yusufsahinhamza: (
+ @yusufsahinhamza
+ ),
+ },
+ },
],
};