From 17165ab70cf2fe59d210e57317c3e9dcf3947fce Mon Sep 17 00:00:00 2001 From: Michael Hollister Date: Sun, 17 Nov 2024 14:41:48 -0600 Subject: [PATCH] Fixed Mac installer icon locations --- receivers/electron/forge.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/receivers/electron/forge.config.js b/receivers/electron/forge.config.js index 8a80386..051f400 100644 --- a/receivers/electron/forge.config.js +++ b/receivers/electron/forge.config.js @@ -53,8 +53,8 @@ module.exports = { }, background: './assets/images/background.png', contents: [ - { 'x': 190, 'y': 350, 'type': 'file', 'path': `out/${APPLICATION_NAME}-darwin-${argv.arch}/${APPLICATION_TITLE}.app` }, - { 'x': 460, 'y': 350, 'type': 'link', 'path': '/Applications' }, + { 'x': 90, 'y': 350, 'type': 'file', 'path': `out/${APPLICATION_NAME}-darwin-${argv.arch}/${APPLICATION_TITLE}.app` }, + { 'x': 360, 'y': 350, 'type': 'link', 'path': '/Applications' }, { 'x': 0, 'y': 540, 'type': 'position', 'path': '.background' }, { 'x': 120, 'y': 540, 'type': 'position', 'path': '.VolumeIcon.icns' } ],