diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 9c023b117..97a2ce712 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -6788,5 +6788,17 @@ "WhatsNew__v5.34--1": { "message": "Ever used Signal while on an unstable connection? You can worry no more - disappearing message timer changes and more will now be sent out once your Wi-Fi feels better again.", "description": "Release notes for v5.34" + }, + "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" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 7fba50491..bea9e4121 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -29,7 +29,11 @@ const renderText: RenderTextCallbackType = ({ key, text }) => ( const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), - features: [{ key: 'WhatsNew__v5.34--1', components: undefined }], + features: [ + { key: 'WhatsNew__v5.35--1', components: undefined }, + { key: 'WhatsNew__v5.35--2', components: undefined }, + { key: 'WhatsNew__v5.35--3', components: undefined }, + ], }; export const WhatsNewModal = ({