From 062b5366171918d03b5da7ba54834f4cd902e8ef Mon Sep 17 00:00:00 2001 From: Tiagoquix <30274161+Tiagoquix@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:55:04 -0300 Subject: [PATCH 1/2] Update text in bug report (#873) --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index f7a30bb..561aa07 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -11,7 +11,7 @@ body: Make sure a similar issue doesn't already exist by [searching the existing issues](https://github.com/Vencord/Vesktop/issues?q=is%3Aissue) for keywords! - Make sure both Vesktop and Vencord are fully up to date. You can update Vencord by right-clicking the Vesktop tray icon and pressing "Update Vencord" + Make sure both Vesktop and Vencord are fully up to date. You can update Vencord by right-clicking the Vesktop tray icon and pressing "Repair Vencord" **DO NOT REPORT** any of the following issues: - Purely graphical glitches like flickering, scaling issues[^1] From ccff1ac3efde2b4fc826d2f411d79e42d80dcb70 Mon Sep 17 00:00:00 2001 From: adryd Date: Fri, 4 Oct 2024 14:51:55 -0400 Subject: [PATCH 2/2] Enable speech-dispatcher support for TTS on linux (#874) --- src/main/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/index.ts b/src/main/index.ts index 2e0d6f7..4eb863d 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -60,6 +60,9 @@ function init() { // WidgetLayering (Vencord Added): Fix DevTools context menus https://github.com/electron/electron/issues/38790 disabledFeatures.push("WinRetrieveSuggestionsOnlyOnDemand", "HardwareMediaKeyHandling", "MediaSessionService"); + // Support TTS on Linux using speech-dispatcher + app.commandLine.appendSwitch("enable-speech-dispatcher"); + app.commandLine.appendSwitch("enable-features", [...new Set(enabledFeatures)].filter(Boolean).join(",")); app.commandLine.appendSwitch("disable-features", [...new Set(disabledFeatures)].filter(Boolean).join(","));