From 564b200d3c96fdd145c8bfdc9e111d7df1c4761f Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sat, 1 Aug 2026 23:37:58 +0100 Subject: [PATCH] Update macOS DMG window height for improved layout - Increased the DMG window height from 380 to 410 pixels to enhance the visual presentation of the application during installation. - This change aims to provide a better user experience by accommodating additional content within the window. --- scripts/finalize-desktop-artifacts.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/finalize-desktop-artifacts.mjs b/scripts/finalize-desktop-artifacts.mjs index 4fb923a..ec90ead 100644 --- a/scripts/finalize-desktop-artifacts.mjs +++ b/scripts/finalize-desktop-artifacts.mjs @@ -199,7 +199,7 @@ const MAC_DMG_BACKGROUND_RETINA_PATH = path.join( ); const MAC_DMG_APP_NAME = "Farm Control Server.app"; const MAC_DMG_WINDOW_WIDTH = 540; -const MAC_DMG_WINDOW_HEIGHT = 380; +const MAC_DMG_WINDOW_HEIGHT = 410; function ensureMacDmgAssets() { mkdirSync(MAC_DMG_ASSETS_DIR, { recursive: true }); @@ -283,7 +283,7 @@ function buildMacDmgWithCreateDmg( appBundleName, "--app-drop-link", "282", - "270", + "250", "--format", "UDZO", ];