Skip to content

Commit 974d2d3

Browse files
Stephanie ReederStephanie Reeder
authored andcommitted
update .iss files:
1 parent 66db6cd commit 974d2d3

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

make.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,11 @@ def run_pyinstaller(console=False):
154154
'--distpath=%s ' % WIN_DIR +
155155
'--workpath=%s ' % WORK_DIR +
156156
'--specpath=%s ' % WIN_DIR +
157-
'--upx-dir=%s ' % BASE_DIR +
157+
#'--upx-dir=%s ' % BASE_DIR +
158+
'--noupx '
158159
'--icon=%s ' % WIN_ICON_FILE +
159160
'--version-file=%s ' % VERSION_FILE +
161+
'--onedir '
160162
# '--onefile ' +
161163
'--noconfirm ' + APP_FILE)
162164
else:
@@ -166,8 +168,10 @@ def run_pyinstaller(console=False):
166168
'--distpath=%s ' % WIN_DIR +
167169
'--workpath=%s ' % WORK_DIR +
168170
'--specpath=%s ' % WIN_DIR +
169-
'--upx-dir=%s ' % BASE_DIR +
171+
#'--upx-dir=%s ' % BASE_DIR +
172+
'--noupx '
170173
'--icon=%s ' % WIN_ICON_FILE +
174+
'--onedir '
171175
# '--onefile ' +
172176
'--version-file=%s ' % VERSION_FILE +
173177
'--noconsole '

setup/Windows/odmtools_console.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define MyAppPublisher "ODM2"
99
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
1010
#define MyAppExeName "ODMTools.exe"
11-
#define MyAppDir "D:\DEV\ODMToolsPython"
11+
#define MyAppDir "D:\DEV\ODMTools"
1212

1313
[Setup]
1414
; NOTE: The value of AppId uniquely identifies this application.

setup/Windows/odmtools_no_console.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#define MyAppPublisher "ODM2"
1111
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
1212
#define MyAppExeName "ODMTools.exe"
13-
#define MyAppDir "D:\DEV\ODMToolsPython"
13+
#define MyAppDir "D:\DEV\ODMTools"
1414

1515
[Setup]
1616
; NOTE: The value of AppId uniquely identifies this application.

setup/Windows/odmtools_setup.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#define MyAppPublisher "ODM2"
77
#define MyAppURL "https://github.com/ODM2/ODMToolsPython"
88
#define MyAppExeName "ODMTools.exe"
9-
#define MyAppDir "D:\DEV\ODMToolsPython"
9+
#define MyAppDir "D:\DEV\ODMTools"
1010

1111
[Setup]
1212
; NOTE: The value of AppId uniquely identifies this application.

0 commit comments

Comments
 (0)