Skip to content

Commit 0985b02

Browse files
committed
Increase macOS DMG icon size
1 parent ce89240 commit 0985b02

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

packaging/macos/dmgbuild_settings.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ def _define(name, default=None):
1212
window_width = int(_define("window_width", "760"))
1313
window_height = int(_define("window_height", "480"))
1414
app_x = int(_define("app_x", "178"))
15-
app_y = int(_define("app_y", "222"))
15+
app_y = int(_define("app_y", "214"))
1616
apps_x = int(_define("apps_x", "582"))
17-
apps_y = int(_define("apps_y", "222"))
17+
apps_y = int(_define("apps_y", "214"))
1818

1919

2020
format = "UDZO"
@@ -35,10 +35,10 @@ def _define(name, default=None):
3535
window_rect = ((120, 120), (window_width, window_height))
3636

3737
arrange_by = None
38-
grid_spacing = 120
38+
grid_spacing = 130
3939
label_pos = "bottom"
4040
text_size = 14
41-
icon_size = 104
41+
icon_size = 132
4242

4343
icon_locations = {
4444
app_name: (app_x, app_y),

scripts/build-macos-dmg.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ python3 -m dmgbuild \
5555
-D "window_width=760" \
5656
-D "window_height=480" \
5757
-D "app_x=178" \
58-
-D "app_y=222" \
58+
-D "app_y=214" \
5959
-D "apps_x=582" \
60-
-D "apps_y=222" \
60+
-D "apps_y=214" \
6161
"${product_name}" \
6262
"${dmg_path}"
6363

0 commit comments

Comments
 (0)