Merge PR #274: Enable building macOS AppStore compliant packages
@ -53,9 +53,10 @@ QMAKE_EXTRA_TARGETS += wininstaller
|
||||
# Install XCode and Qt clang64, add qmake directory to PATH
|
||||
# run "make osxbundle"
|
||||
osxbundle.depends = nymea-app
|
||||
osxbundle.commands += cd nymea-app && rm -f nymea-app.dmg nymea-app_writable.dmg nymea-app-osx-bundle*.dmg || true &&
|
||||
osxbundle.commands += cd nymea-app && rm -f ../*.dmg ../*pkg *.dmg || true &&
|
||||
osxbundle.commands += hdiutil eject /Volumes/nymea-app || true &&
|
||||
osxbundle.commands += macdeployqt nymea-app.app -qmldir=$$top_srcdir/nymea-app/ui -dmg &&
|
||||
osxbundle.commands += macdeployqt nymea-app.app -appstore-compliant -qmldir=$$top_srcdir/nymea-app/ui -dmg &&
|
||||
osxbundle.commands += codesign -s \"3rd Party Mac Developer Application\" --entitlements $$top_srcdir/packaging/osx/nymea-app.entitlements --deep nymea-app.app &&
|
||||
osxbundle.commands += hdiutil convert nymea-app.dmg -format UDRW -o nymea-app_writable.dmg &&
|
||||
osxbundle.commands += hdiutil attach -readwrite -noverify nymea-app_writable.dmg && sleep 2 &&
|
||||
osxbundle.commands += mv /Volumes/nymea-app/nymea-app.app /Volumes/nymea-app/nymea\:app.app &&
|
||||
@ -65,6 +66,15 @@ osxbundle.commands += hdiutil convert nymea-app_writable.dmg -format UDRO -o ../
|
||||
osxbundle.commands += rm nymea-app.dmg nymea-app_writable.dmg
|
||||
QMAKE_EXTRA_TARGETS += osxbundle
|
||||
|
||||
# Create a .pkg osx installer. We're dropping the QtWebEngineCore framework as that's not app store compliant
|
||||
# and we're using the WebView instead anyways. (IMHO a bug that macdeployqt -appstore-compliant even adds it)
|
||||
osxinstaller.depends = osxbundle
|
||||
osxinstaller.commands += cd nymea-app &&
|
||||
osxinstaller.commands += rm -r nymea-app.app/Contents/Frameworks/QtWebEngineCore.framework &&
|
||||
osxinstaller.commands += productbuild --component nymea-app.app /Applications ../nymea-app-$${APP_VERSION}.pkg && cd .. &&
|
||||
osxinstaller.commands += productsign -s \"3rd Party Mac Developer Installer\" nymea-app-$${APP_VERSION}.pkg nymea-app-signed-$${APP_VERSION}.pkg
|
||||
QMAKE_EXTRA_TARGETS += osxinstaller
|
||||
|
||||
# Generic linux desktop
|
||||
linux:!android: {
|
||||
desktopfile.files = packaging/linux-common/nymea-app.desktop
|
||||
|
||||
@ -60,6 +60,10 @@ QObject *platformHelperProvider(QQmlEngine *engine, QJSEngine *scriptEngine)
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
||||
#ifdef Q_OS_OSX
|
||||
qputenv("QT_WEBVIEW_PLUGIN", "native");
|
||||
#endif
|
||||
|
||||
QLoggingCategory::setFilterRules("RemoteProxyClientJsonRpcTraffic.debug=false\n"
|
||||
"RemoteProxyClientJsonRpc.debug=false\n"
|
||||
"RemoteProxyClientWebSocket.debug=false\n"
|
||||
|
||||
@ -86,12 +86,22 @@ android {
|
||||
macx: {
|
||||
QT += webview
|
||||
PRODUCT_NAME=$$TARGET
|
||||
|
||||
QMAKE_TARGET_BUNDLE_PREFIX = io.nymea
|
||||
QMAKE_BUNDLE = nymeaApp.mac
|
||||
|
||||
plist.input = ../packaging/osx/Info.plist.in
|
||||
plist.output = $$OUT_PWD/Info.plist
|
||||
QMAKE_SUBSTITUTES += plist
|
||||
QMAKE_INFO_PLIST = $$OUT_PWD/Info.plist
|
||||
OTHER_FILES += ../packaging/osx/Info.plist.in
|
||||
ICON = ../packaging/osx/icon.icns
|
||||
OTHER_FILES += ../packaging/osx/Info.plist.in \
|
||||
../packaging/osx/nymea-app.entitlements
|
||||
|
||||
ICON = ../packaging/osx/AppIcon.icns
|
||||
|
||||
OSX_ENTITLEMENTS.name = CODE_SIGN_ENTITLEMENTS
|
||||
OSX_ENTITLEMENTS.value = $$files($$PWD/../packaging/ios/nymea-app.entitlements)
|
||||
QMAKE_MAC_XCODE_SETTINGS += OSX_ENTITLEMENTS
|
||||
}
|
||||
|
||||
ios: {
|
||||
|
||||
BIN
packaging/osx/AppIcon.icns
Normal file
BIN
packaging/osx/AppIcon.iconset/icon_128x128.png
Normal file
|
After Width: | Height: | Size: 6.1 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_128x128@2x.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_16x16.png
Normal file
|
After Width: | Height: | Size: 531 B |
BIN
packaging/osx/AppIcon.iconset/icon_16x16@2x.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_256x256.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_256x256@2x.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_32x32.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_32x32@2x.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_512x512.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
packaging/osx/AppIcon.iconset/icon_512x512@2x.png
Normal file
|
After Width: | Height: | Size: 71 KiB |
603
packaging/osx/AppIcon.svg
Normal file
@ -0,0 +1,603 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="256"
|
||||
height="256"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="appicon.svg"
|
||||
inkscape:export-filename="/home/micha/Develop/mea/mea/guh-logo-256x256.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="SVGID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="369.02579"
|
||||
y1="171.88429"
|
||||
x2="441.68719"
|
||||
y2="262.58051">
|
||||
<stop
|
||||
offset="0.1296"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop46" />
|
||||
<stop
|
||||
offset="0.3785"
|
||||
style="stop-color:#6FB594"
|
||||
id="stop48" />
|
||||
<stop
|
||||
offset="0.835"
|
||||
style="stop-color:#4E9688"
|
||||
id="stop50" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop52" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="936.13898"
|
||||
y1="154.45329"
|
||||
x2="918.56207"
|
||||
y2="154.45329"
|
||||
gradientTransform="matrix(0.9669,0.2553,-0.2553,0.9669,-399.6603,-163.1002)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop61" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop63" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_3_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="451.01599"
|
||||
y1="201.9489"
|
||||
x2="442.73761"
|
||||
y2="243.37801">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop72" />
|
||||
<stop
|
||||
offset="0.2568"
|
||||
style="stop-color:#78BC98"
|
||||
id="stop74" />
|
||||
<stop
|
||||
offset="0.5165"
|
||||
style="stop-color:#6CB193"
|
||||
id="stop76" />
|
||||
<stop
|
||||
offset="0.7767"
|
||||
style="stop-color:#589F8C"
|
||||
id="stop78" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop80" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_4_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="457.62369"
|
||||
y1="234.5722"
|
||||
x2="457.47629"
|
||||
y2="234.5722">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop87" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop89" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_5_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="467.88159"
|
||||
y1="223.4929"
|
||||
x2="457.62369"
|
||||
y2="223.4929">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop96" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop98" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_6_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="457.47629"
|
||||
y1="235.823"
|
||||
x2="452.43719"
|
||||
y2="235.823">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop105" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop107" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_7_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="452.19159"
|
||||
y1="227.27921"
|
||||
x2="460.47461"
|
||||
y2="227.27921">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#6AA583"
|
||||
id="stop112" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#4C9E96"
|
||||
id="stop114" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_8_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="473.17111"
|
||||
y1="268.90411"
|
||||
x2="455.23529"
|
||||
y2="283.95389"
|
||||
gradientTransform="matrix(0.9997,0.0227,-0.0227,0.9997,-36.4014,-7.9207)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop119" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#57BAAE"
|
||||
id="stop121" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_9_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="447.13129"
|
||||
y1="274.66199"
|
||||
x2="470.95151"
|
||||
y2="274.66199"
|
||||
gradientTransform="matrix(0.9997,0.0227,-0.0227,0.9997,-36.4014,-7.9207)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop126" />
|
||||
<stop
|
||||
offset="0.2327"
|
||||
style="stop-color:#76BA97"
|
||||
id="stop128" />
|
||||
<stop
|
||||
offset="0.5485"
|
||||
style="stop-color:#65AB90"
|
||||
id="stop130" />
|
||||
<stop
|
||||
offset="0.9106"
|
||||
style="stop-color:#489186"
|
||||
id="stop132" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop134" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_10_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="415.2153"
|
||||
y1="260.93829"
|
||||
x2="422.0509"
|
||||
y2="252.7919">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#4C9E96"
|
||||
id="stop141" />
|
||||
<stop
|
||||
offset="0.4859"
|
||||
style="stop-color:#489790"
|
||||
id="stop143" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop145" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="SVGID_11_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="425.60641"
|
||||
y1="203.1666"
|
||||
x2="393.7475"
|
||||
y2="239.4308">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop152" />
|
||||
<stop
|
||||
offset="0.3183"
|
||||
style="stop-color:#77BF9C"
|
||||
id="stop154" />
|
||||
<stop
|
||||
offset="0.6757"
|
||||
style="stop-color:#6ABDA3"
|
||||
id="stop156" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#57BAAE"
|
||||
id="stop158" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="3.959798"
|
||||
inkscape:cx="15.179463"
|
||||
inkscape:cy="141.02918"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="true"
|
||||
inkscape:window-width="2792"
|
||||
inkscape:window-height="1698"
|
||||
inkscape:window-x="88"
|
||||
inkscape:window-y="44"
|
||||
inkscape:window-maximized="1"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid1085" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-143.41788,-709.27353)">
|
||||
<g
|
||||
transform="matrix(1.4440786,0,0,1.4440786,-333.76137,493.00519)"
|
||||
id="g41">
|
||||
<g
|
||||
id="g43">
|
||||
<linearGradient
|
||||
id="linearGradient3548"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="369.02579"
|
||||
y1="171.88429"
|
||||
x2="441.68719"
|
||||
y2="262.58051">
|
||||
<stop
|
||||
offset="0.1296"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop3550" />
|
||||
<stop
|
||||
offset="0.3785"
|
||||
style="stop-color:#6FB594"
|
||||
id="stop3552" />
|
||||
<stop
|
||||
offset="0.835"
|
||||
style="stop-color:#4E9688"
|
||||
id="stop3554" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop3556" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_1_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 433.7,212.6 c -5.9,-10.1 -19,-17.9 -27.5,-21 -8.5,-3.2 -18,-10.1 -18,-10.1 -7.5,-5 -9.7,-9 -13.7,-14 -1.2,2.6 -2.2,5.8 -3,9.6 1.8,3.1 8.7,13.4 28.1,21.5 1.7,0.7 6.9,2.8 7,2.9 l 6.5,2.6 -6.7,-1.9 c -0.2,-0.1 -5.5,-1.6 -7.3,-2.2 -17.3,-6.3 -25,-15.1 -28,-19.9 -0.8,4.9 -1.1,10.6 -0.7,16.5 5.2,4.7 14,11 26.9,15.4 0.9,0.3 3.6,1.3 3.6,1.3 l 3.4,1.2 -3.5,-0.5 c -0.1,0 -3,-0.4 -4,-0.6 -12.1,-2.9 -20.5,-8.4 -26.1,-13.3 0.5,4.3 1.4,8.6 2.8,13 0.3,1 0.7,2.1 1.1,3 4.4,2 9.6,3.9 15.4,5.2 1.1,0.2 4.3,1.1 4.3,1.1 l 3.8,1 -4,-0.2 c -0.1,0 -3.4,-0.2 -4.5,-0.4 -5.1,-0.7 -9.8,-2 -13.9,-3.6 6.6,13.7 18.8,21.4 35.2,27.5 18.7,7 19.4,25 19.4,25 0,0 5.1,-3.8 9.6,-18.4 5.1,-16.2 -0.3,-30.6 -6.2,-40.7 z"
|
||||
id="path54" />
|
||||
</g>
|
||||
<g
|
||||
id="g56">
|
||||
<g
|
||||
id="g58">
|
||||
<linearGradient
|
||||
id="linearGradient3561"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="936.13898"
|
||||
y1="154.45329"
|
||||
x2="918.56207"
|
||||
y2="154.45329"
|
||||
gradientTransform="matrix(0.9669,0.2553,-0.2553,0.9669,-399.6603,-163.1002)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop3563" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop3565" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_2_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 458.6,233.8 c 4.9,-3.6 6.9,-7.8 8.5,-12.5 0.7,-2.1 1.3,-5 0.3,-8.1 -0.8,-2.5 -6.5,-6.2 -11.2,-4.7 -5.1,1.7 -6.1,8.1 -6.5,10.9 -0.6,4.3 0.4,10.9 2.8,17.6 -0.1,0 2.1,-0.2 6.1,-3.2 z"
|
||||
id="path65" />
|
||||
</g>
|
||||
<g
|
||||
id="g67">
|
||||
<g
|
||||
id="g69">
|
||||
<linearGradient
|
||||
id="linearGradient3570"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="451.01599"
|
||||
y1="201.9489"
|
||||
x2="442.73761"
|
||||
y2="243.37801">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop3572" />
|
||||
<stop
|
||||
offset="0.2568"
|
||||
style="stop-color:#78BC98"
|
||||
id="stop3574" />
|
||||
<stop
|
||||
offset="0.5165"
|
||||
style="stop-color:#6CB193"
|
||||
id="stop3576" />
|
||||
<stop
|
||||
offset="0.7767"
|
||||
style="stop-color:#589F8C"
|
||||
id="stop3578" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop3580" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_3_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 449.7,219.4 c 0.4,-2.8 1.4,-9.2 6.5,-10.9 4.2,-1.4 9.3,1.5 10.8,3.9 -1.5,-3.9 -5.6,-6.6 -9,-8.3 -4.8,-2.5 -10.8,-2.9 -15.7,-1.7 -4.6,1.1 -7,3.6 -10.9,6.9 0.8,1.1 1.6,2.2 2.2,3.3 4.6,8 9,18.6 8.2,30.6 3,-5 9.7,-6.1 10.6,-6.2 -2.4,-6.6 -3.4,-13.3 -2.7,-17.6 z"
|
||||
id="path82" />
|
||||
</g>
|
||||
<g
|
||||
id="g84">
|
||||
<linearGradient
|
||||
id="linearGradient3584"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="457.62369"
|
||||
y1="234.5722"
|
||||
x2="457.47629"
|
||||
y2="234.5722">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop3586" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop3588" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_4_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 457.6,234.5 c -0.1,0 -0.1,0.1 -0.1,0.1 0,0 0.1,0 0.1,-0.1 z"
|
||||
id="path91" />
|
||||
</g>
|
||||
<g
|
||||
id="g93">
|
||||
<linearGradient
|
||||
id="linearGradient3592"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="467.88159"
|
||||
y1="223.4929"
|
||||
x2="457.62369"
|
||||
y2="223.4929">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop3594" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop3596" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_5_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 467.4,213.2 c -0.1,-0.2 -0.2,-0.5 -0.4,-0.8 0.7,1.7 0.8,3.7 0.1,5.9 -1.5,4.9 -1.8,7.1 -6.1,12.9 -1,1.3 -2.2,2.4 -3.4,3.2 0.3,-0.2 0.6,-0.4 1,-0.7 4.9,-3.6 6.9,-7.8 8.5,-12.5 0.7,-2 1.2,-4.9 0.3,-8 z"
|
||||
id="path100" />
|
||||
</g>
|
||||
<g
|
||||
id="g102">
|
||||
<linearGradient
|
||||
id="linearGradient3600"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="457.47629"
|
||||
y1="235.823"
|
||||
x2="452.43719"
|
||||
y2="235.823">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#DBE6E0"
|
||||
id="stop3602" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#BCDED3"
|
||||
id="stop3604" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_6_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 452.4,237 c 0,0 0,0 0,0 0,0 1.8,-0.2 5,-2.4 -2.5,1.7 -4.9,2.4 -4.9,2.4 0,0 0,0 -0.1,0 z"
|
||||
id="path109" />
|
||||
</g>
|
||||
</g>
|
||||
<linearGradient
|
||||
id="linearGradient3607"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="452.19159"
|
||||
y1="227.27921"
|
||||
x2="460.47461"
|
||||
y2="227.27921">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#6AA583"
|
||||
id="stop3609" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#4C9E96"
|
||||
id="stop3611" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_7_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 458.2,217.6 c -1,-0.3 -2,0 -2.8,0.6 -0.2,0.3 -0.3,0.6 -0.4,0.9 -0.4,1.6 0.5,3.3 2.2,3.7 0.7,0.2 1.3,0.1 1.9,-0.1 -0.9,6.9 -5.9,12.4 -6.9,13.5 0.1,0.4 0.2,0.5 0.2,0.7 0.3,0 0.4,-0.1 0.9,-0.2 1.7,-1.9 6.7,-7.9 7,-15.5 0.5,-1.5 -0.5,-3.1 -2.1,-3.6 z"
|
||||
id="path116" />
|
||||
</g>
|
||||
<linearGradient
|
||||
id="linearGradient3614"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="473.17111"
|
||||
y1="268.90411"
|
||||
x2="455.23529"
|
||||
y2="283.95389"
|
||||
gradientTransform="matrix(0.9997,0.0227,-0.0227,0.9997,-36.4014,-7.9207)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop3616" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#57BAAE"
|
||||
id="stop3618" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_8_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 405.5,261.4 c 1.5,12.7 7.5,31.7 27.8,47.9 0,0 10.1,-15.4 0.4,-32.5 -9.7,-17.1 -23.8,-22.7 -28.8,-24.5 -0.2,3.6 0.4,6.8 0.6,9.1 z"
|
||||
id="path123" />
|
||||
<linearGradient
|
||||
id="linearGradient3621"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="447.13129"
|
||||
y1="274.66199"
|
||||
x2="470.95151"
|
||||
y2="274.66199"
|
||||
gradientTransform="matrix(0.9997,0.0227,-0.0227,0.9997,-36.4014,-7.9207)">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop3623" />
|
||||
<stop
|
||||
offset="0.2327"
|
||||
style="stop-color:#76BA97"
|
||||
id="stop3625" />
|
||||
<stop
|
||||
offset="0.5485"
|
||||
style="stop-color:#65AB90"
|
||||
id="stop3627" />
|
||||
<stop
|
||||
offset="0.9106"
|
||||
style="stop-color:#489186"
|
||||
id="stop3629" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop3631" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_9_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 423.7,272.8 c -5.7,-10 -12.8,-16.8 -18.8,-20.5 -0.1,3.2 0.4,7 0.6,9.1 1.2,10.8 5.8,26.1 19.6,40.4 2.4,-5.5 5.5,-16.8 -1.4,-29 z"
|
||||
id="path136" />
|
||||
<g
|
||||
id="g138">
|
||||
<linearGradient
|
||||
id="linearGradient3635"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="415.2153"
|
||||
y1="260.93829"
|
||||
x2="422.0509"
|
||||
y2="252.7919">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#4C9E96"
|
||||
id="stop3637" />
|
||||
<stop
|
||||
offset="0.4859"
|
||||
style="stop-color:#489790"
|
||||
id="stop3639" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#408A83"
|
||||
id="stop3641" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_10_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 411.9,246.7 c -2,-0.8 -4.9,-1.6 -6.8,-2.4 -0.3,2.5 -0.2,5.1 -0.2,8.1 4.4,1.6 16.1,6.2 25.5,19.3 0,-0.1 0,-0.2 0,-0.3 -0.2,-2.3 -1.1,-18.3 -18.5,-24.7 z"
|
||||
id="path147" />
|
||||
</g>
|
||||
<g
|
||||
id="g149">
|
||||
<linearGradient
|
||||
id="linearGradient3645"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x1="425.60641"
|
||||
y1="203.1666"
|
||||
x2="393.7475"
|
||||
y2="239.4308">
|
||||
<stop
|
||||
offset="0"
|
||||
style="stop-color:#7CC099"
|
||||
id="stop3647" />
|
||||
<stop
|
||||
offset="0.3183"
|
||||
style="stop-color:#77BF9C"
|
||||
id="stop3649" />
|
||||
<stop
|
||||
offset="0.6757"
|
||||
style="stop-color:#6ABDA3"
|
||||
id="stop3651" />
|
||||
<stop
|
||||
offset="1"
|
||||
style="stop-color:#57BAAE"
|
||||
id="stop3653" />
|
||||
</linearGradient>
|
||||
<path
|
||||
style="fill:url(#SVGID_11_)"
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 433.7,212.6 c -5.9,-10.1 -19,-17.9 -27.5,-21 -8.5,-3.2 -18,-10.1 -18,-10.1 -2.1,-1.4 -3.8,-2.7 -5.2,-4 -0.4,3.6 -0.6,7.5 -0.4,11.6 4.2,3.2 9.7,6.5 16.9,9.5 1.7,0.7 6.9,2.8 7,2.9 l 6.5,2.6 -6.7,-1.9 c -0.2,-0.1 -5.5,-1.6 -7.3,-2.2 -6.8,-2.5 -12.1,-5.3 -16.2,-8.2 0.4,5 1.3,10.1 2.9,15.2 3.4,1.8 7.2,3.4 11.6,4.9 0.9,0.3 3.6,1.3 3.6,1.3 l 3.4,1.2 -3.5,-0.5 c -0.1,0 -3,-0.4 -4,-0.6 -3.7,-0.9 -7,-2 -10,-3.3 1.9,4.8 4.4,8.8 7.4,12.3 0.1,0 0.1,0 0.1,0 l 3.8,1 -3.2,-0.2 c 6.9,7.7 16.3,13.3 26.3,21.3 13.5,10.8 9.2,27.2 9.2,27.2 0,0 0.8,-0.6 1.5,-1.5 1.8,-2.1 5.1,-7 8.1,-16.9 5,-16.1 -0.4,-30.5 -6.3,-40.6 z"
|
||||
id="path160" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 19 KiB |
@ -8,14 +8,18 @@
|
||||
<string>nymea:app</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>nymea-app</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>Created by Qt/QMake</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>icon.icns</string>
|
||||
<string>AppIcon.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>io.guh.nymea-app</string>
|
||||
<string>io.nymea.nymeaApp.mac</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$$APP_REVISION</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>$$APP_VERSION</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
<string>public.app-category.utilities</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>LSMinimumSystemVersion</key>
|
||||
|
||||
34
packaging/osx/exportappicons.sh
Executable file
@ -0,0 +1,34 @@
|
||||
#!/bin/bash
|
||||
|
||||
function exportImage() {
|
||||
mkdir AppIcon.iconset
|
||||
size=$1
|
||||
scaleFactor=$2
|
||||
echo Exporting AppIcon with size $size and scale factor $scaleFactor
|
||||
if [ ${scaleFactor} -ne 1 ]; then
|
||||
finalSize=$((size * scaleFactor))
|
||||
echo final size is ${finalSize}
|
||||
inkscape AppIcon.svg -e AppIcon.iconset/icon_${size}x${size}@${scaleFactor}x.png -C -w $finalSize -h $finalSize
|
||||
else
|
||||
inkscape AppIcon.svg -e AppIcon.iconset/icon_${size}x${size}.png -C -w ${size} -h ${size}
|
||||
fi
|
||||
}
|
||||
|
||||
SIZES=(
|
||||
"16:1"
|
||||
"16:2"
|
||||
"32:1"
|
||||
"32:2"
|
||||
"128:1"
|
||||
"128:2"
|
||||
"256:1"
|
||||
"256:2"
|
||||
"512:1"
|
||||
"512:2"
|
||||
)
|
||||
|
||||
for size in "${SIZES[@]}" ; do
|
||||
pixels="${size%%:*}"
|
||||
scale="${size##*:}"
|
||||
exportImage $pixels $scale
|
||||
done
|
||||
12
packaging/osx/nymea-app.entitlements
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>com.apple.security.app-sandbox</key>
|
||||
<true/>
|
||||
<key>com.apple.security.network.client</key>
|
||||
<true/>
|
||||
<key>com.apple.security.device.bluetooth</key>
|
||||
<true/>
|
||||
</dict>
|
||||
</plist>
|
||||