-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michael Tai
committed
Dec 28, 2019
1 parent
c37b4eb
commit bf65d03
Showing
7 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"title": "Fantheon", | ||
"icon": "MyIcon.icns", | ||
"contents": [ | ||
{ "x": 448, "y": 100, "type": "link", "path": "/Applications" }, | ||
{ "x": 192, "y": 100, "type": "file", "path": "app/Fantheon.app" } | ||
], | ||
"window": { | ||
"size" : { | ||
"width" : 656, | ||
"height": 200 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
cp ../imageAssets/icons/App-Store.png Icon1024.png && \ | ||
mkdir MyIcon.iconset && \ | ||
sips -z 16 16 Icon1024.png --out MyIcon.iconset/icon_16x16.png && \ | ||
sips -z 32 32 Icon1024.png --out MyIcon.iconset/icon_16x16@2x.png && \ | ||
sips -z 32 32 Icon1024.png --out MyIcon.iconset/icon_32x32.png && \ | ||
sips -z 64 64 Icon1024.png --out MyIcon.iconset/icon_32x32@2x.png && \ | ||
sips -z 128 128 Icon1024.png --out MyIcon.iconset/icon_128x128.png && \ | ||
sips -z 256 256 Icon1024.png --out MyIcon.iconset/icon_128x128@2x.png && \ | ||
sips -z 256 256 Icon1024.png --out MyIcon.iconset/icon_256x256.png && \ | ||
sips -z 512 512 Icon1024.png --out MyIcon.iconset/icon_256x256@2x.png && \ | ||
sips -z 512 512 Icon1024.png --out MyIcon.iconset/icon_512x512.png && \ | ||
cp Icon1024.png MyIcon.iconset/icon_512x512@2x.png && \ | ||
iconutil -c icns MyIcon.iconset && \ | ||
rm -R MyIcon.iconset | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/bash | ||
rm -rf Fantheon.dmg | ||
|
||
./copyAndCreateIcon.sh && \ | ||
appdmg appdmg.json Fantheon.dmg |