Skip to content

Commit fcf5c4e

Browse files
authored
Merge pull request #131 from PropGit/mac_release_5
Mac release 5
2 parents 65a0852 + 2378653 commit fcf5c4e

File tree

6 files changed

+493
-14
lines changed

6 files changed

+493
-14
lines changed

background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ chrome.app.runtime.onLaunched.addListener(function() {
77
id: "BlocklyProp-Launcher",
88
innerBounds: {
99
width: 500,
10-
height: 414
10+
height: 433
1111
}, state: "normal",
1212
resizable: false
1313
}, function(win) {

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "BlocklyProp Launcher",
33
"description": "A Chrome application that connects your Propeller-Powered Hardware to the BlocklyProp website.",
4-
"version": "1.0.4",
4+
"version": "1.0.7",
55
"manifest_version": 2,
66
"minimum_chrome_version": "45",
77

package/mac-resources/welcome.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ <h3>Introduction</h3>
88

99
<p>This software installs the BlocklyProp Launcher into your Applications folder.</p>
1010

11-
<p>Copyright (c) 2021 Parallax Inc.</p>
11+
<p>Copyright (c) 2022 Parallax Inc.</p>
1212
</body>
1313
</html>

package/mac-resources/welcomeFTDI.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ <h3>Introduction</h3>
1010

1111
<p>The required FTDI USB Serial Driver will also be installed. The system must be restarted after installation to use it.</p>
1212

13-
<p>Copyright (c) 2021 Parallax Inc.</p>
13+
<p>Copyright (c) 2022 Parallax Inc.</p>
1414
</body>
1515
</html>

package/mac_app_sign_and_package.sh

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -300,17 +300,9 @@ if [ "$?" != "0" ]; then
300300
exit 1
301301
fi
302302
#
303-
# libswiftshader_libEGL.dylib
303+
# libvk_swiftshader.dylib
304304
#
305-
codesign -s "$APP_IDENTITY" --deep -f -v --options runtime --timestamp --entitlements "${ENTITLEMENTS}" "${DISTRIBUTION}${APP_BUNDLE}${NWJS_FW_LIBRARIES}libswiftshader_libEGL.dylib"
306-
if [ "$?" != "0" ]; then
307-
echo "[Error] Code signing nwjs library failed!" 1>&2
308-
exit 1
309-
fi
310-
#
311-
# libswiftshader_libGLESv2.dylib
312-
#
313-
codesign -s "$APP_IDENTITY" --deep -f -v --options runtime --timestamp --entitlements "${ENTITLEMENTS}" "${DISTRIBUTION}${APP_BUNDLE}${NWJS_FW_LIBRARIES}libswiftshader_libGLESv2.dylib"
305+
codesign -s "$APP_IDENTITY" --deep -f -v --options runtime --timestamp --entitlements "${ENTITLEMENTS}" "${DISTRIBUTION}${APP_BUNDLE}${NWJS_FW_LIBRARIES}libvk_swiftshader.dylib"
314306
if [ "$?" != "0" ]; then
315307
echo "[Error] Code signing nwjs library failed!" 1>&2
316308
exit 1
@@ -479,6 +471,7 @@ if [[ -e ${RESOURCES}${DIST_DST} ]]
479471
then
480472
echo "Cleaning up temporary files..."
481473
rm ${RESOURCES}${DIST_DST}
474+
rm ${DISTRIBUTION}${APP_NAME}.pkg
482475
fi
483476

484477
echo

0 commit comments

Comments
 (0)