File tree 4 files changed +31
-1
lines changed
4 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ wget -ncv https://gist.github.com/JaCzekanski/d7a6e06295729a3f81bd9bd488e9d37d/r
43
43
mkdir -p $ARTIFACT
44
44
mkdir -p $ARTIFACT /usr/share/avocado
45
45
cp -r data $ARTIFACT /usr/share/avocado/
46
- cp android/app/src/main/ic_launcher-web .png $ARTIFACT /avocado.png
46
+ cp misc/avocado .png $ARTIFACT /avocado.png
47
47
48
48
# Remove .gitignore
49
49
find $ARTIFACT -type f -name .gitignore -exec rm {} \;
Original file line number Diff line number Diff line change @@ -22,6 +22,14 @@ mkdir -p $ARTIFACT
22
22
cp -r build/release_x64/avocado.app $ARTIFACT /avocado.app
23
23
mkdir -p $ARTIFACT /avocado.app/Contents/Resources
24
24
cp -r data $ARTIFACT /avocado.app/Contents/Resources
25
+ cp misc/macos/Info.plist $ARTIFACT /avocado.app/Contents
26
+
27
+ # Create icon
28
+ wget -ncv https://raw.githubusercontent.com/jamf/icns-Creator/master/icns_creator.sh
29
+ chmod +x icns_creator.sh
30
+ ./icns_creator.sh misc/avocado.png avocado
31
+ rm -rf avocado.iconset
32
+ mv avocado.icns $ARTIFACT /avocado.app/Contents/Resources/
25
33
26
34
# Remove .gitignore
27
35
find $ARTIFACT -type f -name .gitignore -exec rm {} \;
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >CFBundleDevelopmentRegion </key >
6
+ <string >en-US </string >
7
+ <key >CFBundleExecutable </key >
8
+ <string >avocado </string >
9
+ <key >CFBundleIconFile </key >
10
+ <string >avocado.icns </string >
11
+ <key >CFBundleIdentifier </key >
12
+ <string >info.czekanski.avocado </string >
13
+ <key >CFBundleInfoDictionaryVersion </key >
14
+ <string >6.0 </string >
15
+ <key >CFBundleName </key >
16
+ <string >Avocado </string >
17
+ <key >CFBundlePackageType </key >
18
+ <string >APPL </string >
19
+ <key >NSHighResolutionCapable </key >
20
+ <true />
21
+ </dict >
22
+ </plist >
You can’t perform that action at this time.
0 commit comments