From 96889273bf295cf518e511c05dc73a1c081bd6d5 Mon Sep 17 00:00:00 2001 From: josselinonduty Date: Sun, 30 Nov 2025 23:59:25 +0100 Subject: [PATCH] feat: improve responsiveness on small devices Based on patch by josselinonduty Makes it possible to use the application for with a width as low as 550 pixels without problems, and is usable even below. Should not change anything for devices larger than 950 pixels, and nearly nothing above 800 pixels wide. --- build/index.html | 83 ++++++++++++++++++++++++++++++++++++++++++++++++ build/main.js | 4 +-- 2 files changed, 85 insertions(+), 2 deletions(-) diff --git a/build/index.html b/build/index.html index 8016bc8..4efcd23 100644 --- a/build/index.html +++ b/build/index.html @@ -4,6 +4,89 @@ Deezer +
diff --git a/build/main.js b/build/main.js index b141aa2..e5bc640 100644 --- a/build/main.js +++ b/build/main.js @@ -3082,8 +3082,8 @@ }, windowOptions = { title: "Deezer Desktop", - minWidth: 990, - minHeight: 600, + minWidth: 450, + minHeight: 450, icon: external_electron_namespaceObject.nativeImage.createFromPath( getAppIcon(external_electron_namespaceObject.app) ), -- 2.48.1