Skip to content

Commit d781d24

Browse files
author
Alan
committed
First hardware-tested mac version. Created functional, complete DMG file for mac installs.
1 parent c53d3c7 commit d781d24

6 files changed

+38
-8
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ var/
3737
*.egg
3838
.eggs/
3939
.python-version
40+
dmg/
4041

4142
# PyInstaller
4243
# Usually these files are written by a python script from a template

PreparingADisti.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ If you want to increment any part of the version number, you can do so by
109109

110110
Creating a Mac app contained in a DMG
111111
-------------------------------------
112-
Assuming you're in Terminal and currently in the `[YourWhateverFolderPath]\Roastero\Openroast` folder, you can create an app build by typing `./build_mac.sh -n -m` and pressing Enter. A disk image (DMG) containing the app will be created in the folder `[YourWhateverFolderPath]/Roastero/Openroast/dist`. You'll want to test this app on a separate Mac machine to verify functionality.
112+
Assuming you're in Terminal and currently in the `[YourWhateverFolderPath]\Roastero\Openroast` folder, you can create an app build by typing `./build_mac.sh -n -m` and pressing Enter. A disk image (DMG) containing the app will be created in the folder `[YourWhateverFolderPath]/Roastero/Openroast/dmg`. You'll want to test this app on a separate Mac machine to verify functionality.
113113

114114
Posting the installer on Github
115115
-------------------------------

build_mac.sh

+14-7
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ fi
211211
if "${make_install}" ; then
212212
echo "make_install - creating Openroast app..."
213213
# remove old stuff
214-
rm -rf build dist
214+
rm -rf build dist dmg
215215
# get version string
216216
version_file=($(<openroast/version.py))
217217
version_string=$(echo ${version_file[2]} | tr -d '"')
@@ -220,7 +220,7 @@ if "${make_install}" ; then
220220
echo "Using version_mmp = ${version_mmp}"
221221
sed -E -e 's/%VERSION%/'"${version_string}"'/' -e 's/%VERSION_MMP%/'"${version_mmp}"'/' <setup_py2app.py >setup_py2app_"${version_string}".py
222222
# build!
223-
echo "Laucnhing py2app..."
223+
echo "Launching py2app..."
224224
python setup_py2app_"${version_string}".py py2app
225225
rm setup_py2app_"${version_string}".py
226226
# now, for some serious manually-powered stripping of unecessary files
@@ -287,15 +287,22 @@ if "${make_install}" ; then
287287

288288
# Create DMG for distribution
289289
echo "Creating DMG..."
290+
rm -rf dmg
291+
mkdir dmg
292+
# copy other required files to dist...
293+
cp build_tools/CH34x_Install_V1.4.pkg dist/
294+
cp 'build_tools/Openroast 1.2 for Mac README.rtf' dist/
290295
./build_tools/create-dmg/create-dmg \
296+
--background 'build_tools/mac_dmg_background.png' \
291297
--window-pos 100 100 \
292-
--window-size 400 200 \
298+
--window-size 400 400 \
293299
--icon-size 100 \
294-
--icon 'Openroast '"${version_string}"'.app' 100 100 \
295-
--app-drop-link 300 100 \
296-
'./dist/Openroast '"${version_string}"' Installer.dmg' \
300+
--icon 'Openroast '"${version_string}"'.app' 100 300 \
301+
--icon 'CH34x_Install_V1.4.pkg' 300 100 \
302+
--icon 'Openroast 1.2 for Mac README.rtf' 100 100 \
303+
--app-drop-link 300 300 \
304+
'./dmg/Openroast '"${version_string}"' Mac OS X Installer.dmg' \
297305
dist \
298306
/
299-
rm -rf 'dist/Openroast '"${version_string}"'.app'
300307
echo "make_install done."
301308
fi

build_tools/CH34x_Install_V1.4.pkg

25.6 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170
2+
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
3+
{\colortbl;\red255\green255\blue255;}
4+
\margl1440\margr1440\vieww10800\viewh8400\viewkind0
5+
\pard\tx566\tx1133\tx1700\tx2267\tx2834\tx3401\tx3968\tx4535\tx5102\tx5669\tx6236\tx6803\pardirnatural
6+
7+
\f0\b\fs36 \cf0 Openroast 1.2 for Mac README
8+
\b0\fs24 \
9+
March 26, 2017\
10+
\
11+
Is it assumed that you are reading this because you have downloaded and mounted the Disk Image (DMG) file.\
12+
\
13+
14+
\b\fs28 Installation Instructions\
15+
16+
\b0 1. Drag the Openroast 1.2 icon over to the Applications shortcut. This installs the app.\
17+
2. Click the file named CH34x_Install_V1.4. This is the driver for the Freshroast SR700\'92s USB chip. You must install this in order to enable Openroast 1.2 to connect to the device. \
18+
\
19+
20+
\b Appendix - Details about the USB driver\
21+
22+
\b0 Specifically, the Freshroast SR700 device uses a QinHeng CH340 USB to serial port integrated circuit. We have included version 1.4 of this driver as a courtesy - it is current as of the date of this writing. It was obtained from {\field{\*\fldinst{HYPERLINK "http://www.wch.cn/download/CH341SER_MAC_ZIP.html"}}{\fldrslt http://www.wch.cn/download/CH341SER_MAC_ZIP.html}}. There may be newer versions of the driver available in the future. Please search the web for \'91QinHeng CH340\'92 to find a compatible driver in the future, if necessary.}

build_tools/mac_dmg_background.png

4.5 KB
Loading

0 commit comments

Comments
 (0)