Skip to content

Commit 5ea7ca2

Browse files
committed
added (short) installation instructions
1 parent 23c3739 commit 5ea7ca2

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

doc/CONTRIBUTORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Martin Zuther a.k.a. radix
1+
Martin Zuther

doc/INSTALLATION

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
These are the versions I currently use for developing the application.
2+
Other versions, especially higher ones, may work just as well.
3+
4+
Unless you abolutely have to, please do not use development versions
5+
(alphas and betas). There is a reason why stable versions are called
6+
"stable"...
7+
8+
9+
Dependencies (GNU/Linux)
10+
========================
11+
* Python 2.6
12+
13+
* PyGame 1.9.1 (does occasionally crash)
14+
15+
* PySide 1.0.6
16+
17+
* JACK or JACK2
18+
19+
20+
Dependencies (Microsoft Windows)
21+
================================
22+
* Python 2.6 (currently, version 2.6.7 is not available for Microsoft
23+
Windows, please try http://www.python.org/download/releases/2.6.6/)
24+
25+
* PyGame 1.9.1 (does occasionally crash)
26+
27+
* PySide 1.0.6
28+
29+
* MidiYoke NT 1.75 (you'll have to reboot after installation)

src/PythonMcu/Tools/ApplicationAbout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ApplicationAbout:
3939
"""
4040

4141
# this may be queried from other classes to ascertain compatibility
42-
_INCARNATION = 2
42+
_INCARNATION = 3
4343

4444
def __init__(self):
4545
"""Initialise application information.

src/PythonMcu/Tools/ApplicationConfiguration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class ApplicationConfiguration:
6868
"""Store user settings and application information in one place
6969
and make them available.
7070
71-
Incarnation #6.
71+
Incarnation #7.
7272
"""
7373
def __init__(self):
7474
"""Initialise user configuration and application information.
@@ -85,7 +85,7 @@ def __init__(self):
8585

8686
# ascertain compatibility with the class "ApplicationAbout"
8787
assert self.get_application_information( \
88-
'about_class_incarnation') == 2
88+
'about_class_incarnation') == 3
8989

9090
# this variable is used to check whether the user
9191
# configuration has changed and is in need of saving

0 commit comments

Comments
 (0)