forked from notahat/pymidi
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Release Notes.html
168 lines (126 loc) · 3.98 KB
/
Release Notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<html>
<head>
<!-- $Id: Release\040Notes.html,v 1.3 2004/02/03 12:56:01 pete Exp $ -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>PYMIDI Release Notes</title>
<style type="text/css">
body {
background: #fff;
margin: 1.5em 3em;
}
#banner {
margin: 0;
padding: 0;
}
#banner span.site-name {
font-family: "Lucida Grande", Arial, sans-serif;
font-weight: normal;
font-size: 14px;
}
#contents {
width: 30%;
float: right;
font-family: "Lucida Grande", Arial, sans-serif;
font-weight: normal;
font-size: 11px;
border: 1px solid #ccc;
background: #fff;
margin: 0;
margin-left: 1.2em;
margin-bottom: 0.6em;
padding: 0.6em;
}
h1, h2, h3, h4, h5, h6 {
font-family: Helvetica, sans-serif;
font-weight: bold;
clear: both;
}
h1 {
font-size: 24px;
color: #800;
border-top: 1px solid #ccc;
margin-top: 0;
padding-top: 2px;
}
h1 span.note {
font-size: 14px
}
h2 {
font-size: 17px;
color: #036;
border-top: 1px solid #ccc;
margin-top: 25px;
padding-top: 2px;
}
h2 span.note {
font-size: 12px
}
h3 {
font-size: 14px;
color: #036;
}
p,ul,td {
font-family: "Lucida Grande", Verdana, sans-serif;
font-size: 13px;
line-height: 1.3em;
}
#footer {
text-align: center;
}
p.footer {
font-size: 11px;
}
</style>
</head>
<body>
<div id="banner">
<span class="site-name">Pete.Yandell.com</span>
</div>
<h1>PYMIDI Framework Release Notes</h1>
<h2>Version 1.1 <span class="note">(3 February 2004)</span></h2>
<font size="-1">
Framework version: B<br />
Dynamic library current version: 1<br />
Dynamic library compatibility version: 1
</font>
<p>There are a few interface changes that will require changes to your
code, but it should all just be search-and-replace type stuff.</p>
<h3>The onlineRealSources and onlineRealDestinations methods have been removed</h3>
<p>For almost all purposes you should now use
<a href="Documentation/Classes/PYMIDIManager.html#realSources">realSources</a> or
<a href="Documentation/Classes/PYMIDIManager.html#realDestinations">realDestinations</a>.</p>
<p>If you really need the old functionality then the old methods have
been renamed to
<a href="Documentation/Classes/PYMIDIManager.html#realSourcesOnlineOrInUse">realSourcesOnlineOrInUse</a>
and
<a href="Documentation/Classes/PYMIDIManager.html#realDestinationsOnlineOrInUse">realDestinationsOnlineOrInUse</a>.</p>
<p>So why the change? The problem with the old methods, apart from
their non-descriptive names, is that they behave
in some unexpected ways for offline endpoints.</p>
<p>If you stop using an
offline endpoint then that endpoint will still be returned in the
endpoint list until some other MIDI configuration change causes the
list to be updated. From a user perspective that means that offline
endpoints can seemingly randomly disappear from the list when other
things happen on the system.</p>
<p>The newer methods just keeps offline endpoints around as long as
the application is open.</p>
<h3>PYMIDIIsEndpointNameIsTaken has been changed to PYMIDIIsEndpointNameTaken</h3>
<p>Obviously the original name was a typo, so it's been corrected.</p>
<h3>Other Changes</h3>
<ul>
<li>Endpoint display names now work correctly with external devices on panther</li>
</ul>
<h2>Version 1.0 <span class="note">(1 February 2003)</span></h2>
<font size="-1">
Framework version: A<br />
Dynamic library current version: 1<br />
Dynamic library compatibility version: 1
</font>
<div id="footer">
<br /><br />
<p class="footer">Copyright © 2003-2004 <a href="mailto:[email protected]">Peter Yandell</a>.
All Rights Reserved.</p>
</div>
</body>
</html>