From 1c810f499879a68d61285ffafe9efb90dd40b5e9 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Wed, 2 Jul 2025 16:00:52 -0700 Subject: [PATCH] Release notes for 7.61 --- _locales/en/messages.json | 4 ++++ ts/components/WhatsNewModal.tsx | 28 +++++++++++++++++++++++++++- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index ba418a06d0..b037785853 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -8859,5 +8859,9 @@ "icu:WhatsNew__v7.59--0": { "messageformat": "This update enables GPU acceleration on Linux for improved performance and smoother video playback on supported hardware.", "description": "(Deleted 2025/06/25) Release notes for version 7.59" + }, + "icu:WhatsNew__v7.61--0": { + "messageformat": "This update improves audio quality and reliability during voice and video calls, and introduces better automatic configuration of connected microphones and speakers. Thanks to , , and at Mozilla for their help with this project.", + "description": "Release notes for version 7.60" } } diff --git a/ts/components/WhatsNewModal.tsx b/ts/components/WhatsNewModal.tsx index 6a6dabb094..8290389494 100644 --- a/ts/components/WhatsNewModal.tsx +++ b/ts/components/WhatsNewModal.tsx @@ -33,6 +33,22 @@ export function ExternalLink(props: { ); } +function Padenot() { + return ( + @padenot + ); +} +function Kinetiknz() { + return ( + @kinetiknz + ); +} +function Pehrsons() { + return ( + @Pehrsons + ); +} + export function WhatsNewModal({ i18n, hideWhatsNewModal, @@ -42,7 +58,17 @@ export function WhatsNewModal({ const releaseNotes: ReleaseNotesType = { date: new Date(window.getBuildCreation?.() || Date.now()), version: window.getVersion?.(), - features: [], + features: [ + , + ], }; if (releaseNotes.features.length === 1 && !releaseNotes.header) {