Skip to content

Commit 10c4c12

Browse files
committed
Reverting to old installer
1 parent 6a84076 commit 10c4c12

4 files changed

+8
-8
lines changed

build.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
python setup.py build
2-
"C:\Program Files (x86)\Inno Setup 6\iscc.exe" setupEasyABC.iss
2+
"C:\Program Files (x86)\Inno Setup 5\iscc.exe" setupEasyABC.iss

creating_an_executable.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ EasyABC comes with setup.py to create easy_abc.exe and setupEasyABC.iss to creat
44
You first need to be able to run easy_abc.py using Python.
55
See using_EasyABC_in_Windows.txt for that.
66

7-
Then you will also need to install on your computer the program Inno Setup 6 and the python package cx_Freeze:
8-
Inno Setup can be downloaded here: https://jrsoftware.org/
7+
Then you will also need to install on your computer the program Inno Setup 5 and the python package cx_Freeze:
8+
Inno Setup 5 can be downloaded here: https://jrsoftware.org/
99

1010
And cx_Freeze can be installed using:
1111
python -m pip install --upgrade cx_Freeze

easy_abc.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -5605,8 +5605,8 @@ def OnMusicPaneClick(self, evt):
56055605
new_tune = 0
56065606
else:
56075607
new_tune -= 1
5608-
if new_tune < 0:
5609-
new_tune = total_tunes - 1
5608+
if new_tune < 0:
5609+
new_tune = total_tunes - 1
56105610
tune_list.DeselectAll()
56115611
tune_list.Select(new_tune)
56125612
elif y > (height - y_threshold):
@@ -5616,8 +5616,8 @@ def OnMusicPaneClick(self, evt):
56165616
new_tune = 0
56175617
else:
56185618
new_tune += 1
5619-
if new_tune >= total_tunes:
5620-
new_tune = 0
5619+
if new_tune >= total_tunes:
5620+
new_tune = 0
56215621
tune_list.DeselectAll()
56225622
tune_list.Select(new_tune)
56235623

setupEasyABC.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ AppPublisher={#MyAppPublisher}
2828
AppPublisherURL={#MyAppURL}
2929
AppSupportURL={#MyAppURL}
3030
AppUpdatesURL={#MyAppURL}
31-
DefaultDirName={commonpf}\{#MyAppName}
31+
DefaultDirName={pf}\{#MyAppName}
3232
DefaultGroupName={#MyAppName}
3333
LicenseFile={#MyBuildFolder}\gpl-license.txt
3434
OutputBaseFilename=EasyABC-{#MyAppVersion}

0 commit comments

Comments
 (0)