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) {