diff --git a/electron-builder.json b/electron-builder.json index 2ac5bed9..68886377 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -48,7 +48,8 @@ "mac": { "category": "public.app-category.productivity", "target": [ - "zip" + "zip", + "dmg" ], "extraResources": [ { @@ -59,6 +60,11 @@ } ] }, + "dmg": { + "background": "resources/osx/DMG_BG.png", + "iconSize": 140, + "iconTextSize": 18 + }, "squirrelWindows": { "iconUrl": "file://resources/icon.ico", "artifactName": "${name}-setup-${version}-${arch}.${ext}" diff --git a/resources/osx/DMG_BG.png b/resources/osx/DMG_BG.png new file mode 100644 index 00000000..f2b62d1d Binary files /dev/null and b/resources/osx/DMG_BG.png differ