File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ pip3 install git+https://github.com/ScriptSmith/socialreaper.git
5
5
rm -r dist/
6
6
pyinstaller reaper.spec
7
7
cd dist/
8
+ security unlock-keychain
8
9
codesign -s " Developer ID Application: Adam Smith" --deep reaper.app
9
10
pkgbuild --install-location /Applications --component reaper.app --identifier Reaper --version $1 --sign " Developer ID Installer: Adam Smith" Reaper.pkg
10
11
zip -r reaper.zip reaper.app
Original file line number Diff line number Diff line change 2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
4
#define MyAppName " Reaper"
5
- #define MyAppVersion " 2.5.3"
6
5
#define MyAppPublisher " The University of Queensland"
7
6
#define MyAppURL " http://reaper.social"
8
7
#define MyAppExeName " reaper.exe"
13
12
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
14
13
AppId = {{D200F93A-07DC-4F73-8713 -18E4CDCAA43C}
15
14
AppName = {#MyAppName }
16
- AppVersion = {#MyAppVersion }
17
- ;AppVerName={#MyAppName} {#MyAppVersion }
15
+ AppVersion = {#ApplicationVersion }
16
+ ;AppVerName={#MyAppName} {#ApplicationVersion }
18
17
AppPublisher = {#MyAppPublisher}
19
18
AppPublisherURL = {#MyAppURL}
20
19
AppSupportURL = {#MyAppURL}
21
20
AppUpdatesURL = {#MyAppURL}
22
21
DefaultDirName = {pf} \{#MyAppName }
23
22
DisableProgramGroupPage = yes
24
23
LicenseFile = C:\Users\s4394487\src\reaper\dist\reaper\LICENSE.txt
24
+ OutputDir = C:\Users\s4394487\src\reaper\dist\
25
25
OutputBaseFilename = reaper-setup
26
26
SetupIconFile = C:\Users\s4394487\src\reaper\dist\reaper\ui\icon.ico
27
27
Compression = lzma
Original file line number Diff line number Diff line change
1
+ pip install -e ..\socialreaper
1
2
rmdir build\ /s /q
2
3
rmdir dist\reaper /s /q
3
4
pyinstaller.exe -w -i ui/icon.ico reaper.py
@@ -6,4 +7,4 @@ robocopy sources dist\reaper\sources /mir
6
7
robocopy licenses dist\reaper\licenses /mir
7
8
copy LICENSE.txt dist\reaper\LICENSE.txt
8
9
copy sources.xml dist\reaper\sources.xml
9
- scripts\setup.iss
10
+ " C:\Program Files (x86)\Inno Setup 5\ISCC.exe " scripts\setup.iss /DApplicationVersion == %1
You can’t perform that action at this time.
0 commit comments