From 3b084533a8ab3000d454e8fdd53a7eb54c65a0cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=BA=D0=BB=D1=8F=D1=80=D0=BE=D0=B2=20=D0=90=D1=80?= =?UTF-8?q?=D1=82=D0=B5=D0=BC?= Date: Mon, 27 May 2024 11:20:47 +0300 Subject: [PATCH] Set the installer is DPI-aware so the text is never blurry. (#556) Set the installer is DPI-aware so the text is never blurry. For NSIS version v3.0a0+ --- .install/facefusion.nsi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.install/facefusion.nsi b/.install/facefusion.nsi index 34ca4772..59467b15 100644 --- a/.install/facefusion.nsi +++ b/.install/facefusion.nsi @@ -4,6 +4,9 @@ RequestExecutionLevel admin +# Set the installer is DPI-aware so the text is never blurry. For NSIS version v3.0a0+ +ManifestDPIAware true + Name 'FaceFusion 2.6.0' OutFile 'FaceFusion_2.6.0.exe'