From 7f0b17291f442460b4ca8dda1211f31c6fe9e656 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 10 Mar 2026 23:31:29 +0100 Subject: [PATCH] fix(electron): use proper UTF-8 in screen picker MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace escaped unicode sequences (\uD83D\uDD0A, \u00e4) with actual UTF-8 characters so the picker displays 🔊 and ä correctly. Co-Authored-By: Claude Opus 4.6 --- electron/main.js | 4 ++-- electron/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/electron/main.js b/electron/main.js index 07b6f76..ca46006 100644 --- a/electron/main.js +++ b/electron/main.js @@ -166,13 +166,13 @@ h2{font-size:16px;margin-bottom:12px;color:#ccc} .cancel-btn{background:#3a3a4e;color:#e0e0e0;border:none;padding:8px 24px;border-radius:6px;cursor:pointer;font-size:14px} .cancel-btn:hover{background:#4a4a5e} -

Bildschirm oder Fenster w\\u00e4hlen

+

Bildschirm oder Fenster wählen

diff --git a/electron/package.json b/electron/package.json index 2448d66..77df7b0 100644 --- a/electron/package.json +++ b/electron/package.json @@ -1,7 +1,7 @@ { "name": "gaming-hub-desktop", "productName": "Gaming Hub", - "version": "1.8.15", + "version": "1.8.16", "description": "Gaming Hub Desktop App mit Ad-Blocker", "author": "Gaming Hub", "main": "main.js",