/[svn]/liblscp/trunk/ChangeLog
ViewVC logotype

Contents of /liblscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2418 - (show annotations) (download)
Sat Feb 23 20:29:45 2013 UTC (11 years, 1 month ago) by capela
File size: 11195 byte(s)
* Update on newer autoconf macros (m4).
1 liblscp - LinuxSampler Control Protocol API
2 -------------------------------------------
3
4 ChangeLog
5
6 SVN TRUNK Update on newer autoconf macros (m4).
7
8 Fixes for building for Windows with configure and make.
9
10 Makefile fixes for building in separate directory.
11
12 0.5.6 2009-08-01 Fixed locale related parser bug (fixes #59).
13
14 Added new client interface functions, for managing
15 the global limit of maximum voices and disk streams:
16 lscp_get_voices(), lscp_set_voices(), lscp_get_streams(),
17 lscp_set_streams().
18
19 _lscp_device_port_info_query(): take port parameter
20 "NAME" into the result list.
21
22 Bugfix: _lscp_client_evt_proc() dropped LSCP events.
23
24 Bugfix in lscp_client_subscribe(): only the first
25 lscp_client_subscribe() call succeeded (per client),
26 all subsequent ones failed.
27
28 Added support for new (un)subscribable events:
29 LSCP_EVENT_CHANNEL_MIDI
30 LSCP_EVENT_DEVICE_MIDI
31 Caution: the bitflag approach for the event variable
32 is now abondoned, since otherwise we would soon hit the
33 limit of the bit range. The bitflag approach will
34 remain for events older at this point (that is all
35 events which occupy the lower 16 bits), but this new
36 and all following events will simply be enumared along
37 the upper 16 bits.
38
39 Added new client interface function, for renaming
40 effect send entities:
41 lscp_set_fxsend_name();
42
43 Added new client interface functions, for managing the
44 global limit of maximum voices and disk streams:
45 lscp_get_voices();
46 lscp_set_voices();
47 lscp_get_streams();
48 lscp_set_streams();
49
50 Bugfix: fixed buggy behavior on different locale
51 settings (e.g. when parsing floating point numbers).
52
53 0.5.5 2007-10-12 Changed client interface function, for editing
54 instrument, from:
55 lscp_edit_instrument();
56 to:
57 lscp_edit_channel_instrument();
58
59 0.5.4 2007-10-02 Added new client interface function, for editing
60 instrument:
61 lscp_edit_instrument();
62
63 Fixed some minor bugs in:
64 lscp_set_fxsend_midi_controller();
65 lscp_set_fxsend_level();
66
67 0.5.3 2007-01-15 Added new client interface functions, for sampler
68 channel effect sends control:
69 lscp_set_fxsend_midi_controller();
70 lscp_set_fxsend_level();
71
72 Added new field member to lscp_fxsend_info_t (level).
73
74 0.5.2 2007-01-11 Added new client interface functions, for sampler
75 channel effect sends control:
76 lscp_create_fxsend();
77 lscp_destroy_fxsend();
78 lscp_get_fxsends();
79 lscp_list_fxsends();
80 lscp_get_fxsend_info();
81 lscp_set_fxsend_audio_channel();
82 and for global volume:
83 lscp_get_volume();
84 lscp_set_volume();
85
86 Audio routing representation changed to integer array.
87
88 0.5.1 2006-12-22 Added support for new (un)subscribable events:
89 LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
90 LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
91 LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
92 LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
93 LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
94 LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
95 LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
96 LSCP_EVENT_MIDI_INSTRUMENT_INFO.
97
98 Updated examples.
99
100 0.5.0 2006-12-17 MIDI instrument mapping, second round, according to
101 LSCP 1.2 draft document as of December 15, 2006.
102
103 New client interface functions:
104 lscp_set_channel_midi_map();
105 lscp_add_midi_instrument_map();
106 lscp_remove_midi_instrument_map();
107 lscp_get_midi_instrument_maps();
108 lscp_list_midi_instrument_maps();
109 lscp_get_midi_instrument_map_name();
110 lscp_set_midi_instrument_map_name();
111
112
113 0.4.2 2006-12-04 MIDI instrument mapping fixed, previously missing
114 the regular ON_DEMAND load mode.
115
116 Server error reporting is now effective; all server
117 numerical error and warning codes are added to 100,
118 thus giving a proper non-zero lscp_client_get_errno()
119 return value.
120
121 0.4.1 2006-11-28 Fixed the flush timeout operation to be issued only
122 once, avoiding recurrent client failure after receive
123 timeout.
124
125 Support for very long command result sets have been
126 introduced, with the downside of strictly obeying
127 the LSCP draft.
128
129 list_midi_instruments() is now being implemented.
130
131 LGPL text is now back in COPYING.
132
133 0.4.0 2006-11-27 As of the LSCP 1.2 working draft document, added
134 some missing client interface functions:
135 lscp_get_total_voice_count();
136 lscp_get_total_voice_count_max();
137 and for the new MIDI instrumenbt mapping features:
138 lscp_map_midi_instrument();
139 lscp_unmap_midi_instrument();
140 lscp_get_midi_instruments();
141 lscp_get_midi_instrument_info();
142 lscp_clear_midi_instruments();
143
144
145 0.3.4 2006-09-24 GPL address update.
146
147 0.3.3 2006-06-01 Fixed some compilation warnings due to suspicious type
148 casting and unsused header macros.
149
150 Changed deprecated copyright attribute to license
151 and added ldconfig to post-(un)install steps
152 to liblscp.spec (RPM).
153
154 0.3.2 2005-08-29 Fixed missing initialization bug on lscp_channel_info_t
155 new struct fields (mute/solo).
156
157 Include debian files into distribution.
158
159 Renamed configure.in to newer configure.ac.
160
161 0.3.1 2005-08-16 [bug #21] Fixed automake support for separate build
162 directory.
163
164 Added support to sampler channel MUTE/SOLO states:
165 lscp_set_channel_mute();
166 lscp_set_channel_solo();
167 with corresponding new lscp_channel_info_t fields.
168
169 0.3.0 2005-06-10 [bug #11] Timeout flush idiosyncrasy is now a feature;
170 this just tries to flush the receive buffer whenever
171 any previous transaction has failed due to a timeout.
172
173 Fixed an off-by-one timeout quirk, that has been a real
174 showstopper on Mac OS X at least, which is incidental
175 to qsampler's default timeout setting of 1000 msecs,
176 giving up systematically on select() due to "Invalid
177 argument" (EINVAL).
178
179
180 0.2.8 2005-05-22 More LSCP command syntax changes, particularly on the
181 event subscription ones: the LSCP_EVENT_CHANNELS event
182 definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
183 as to be more meaningful. Added support for the newest
184 LSCP command: GET SERVER INFO; lscp_get_server_info().
185
186 0.2.8 2005-05-08 [bug #9] Fixed for a LSCP command syntax convention
187 consistency, regarding the enumeration of available
188 sampler engines, Audio and MIDI drivers; this has
189 affected the signature of the following functions:
190 lscp_get_available_engines();
191 lscp_get_available_audio_drivers();
192 lscp_get_available_midi_drivers();
193 which are now returning an integer count of engines
194 and drivers, respectively, while the following
195 functions are now being introduced:
196 lscp_list_available_engines();
197 lscp_list_available_audio_drivers();
198 lscp_list_available_midi_drivers();
199 taking on the previous functionality, returning
200 a comma separated list of names.
201
202 0.2.7 2005-03-10 Mini bitsy regression; a severe crash (segfault)
203 was fixed on the device configuration functions:
204 lscp_set_audio_device_param();
205 lscp_set_midi_device_param();
206 lscp_set_audio_channel_param();
207 lscp_set_midi_port_param();
208
209 0.2.6 2005-03-01 Fixed nasty off-by-one bug on internal helpers.
210
211 0.2.5 2005-02-14 Added support for the new INSTRUMENT_NAME field
212 of GET CHANNEL INFO command.
213
214 0.2.4 2004-10-11 Fixed lscp_set_channel_midi_channel() again, MIDI
215 channels should be given in the range 0-15, and omni
216 mode with the LSCP_MIDI_CHANNEL_ALL symbol (16).
217
218 Fixed lscp_get_channel_info() to parse MIDI omni
219 (ALL) channels mode.
220
221 0.2.3 2004-09-28 Fixed lscp_set_channel_midi_channel() where MIDI
222 channels should be given in the range 1-16, and
223 omni mode with the new LSCP_MIDI_CHANNEL_ALL
224 symbol (0).
225
226 Rearrangement on main command requester executive.
227
228 0.2.2 2004-07-29 In sync with LSCP document draf (v.12).
229
230 New functions added: lscp_client_get_events() and
231 lscp_reset_sampler().
232
233 Added support for generating Debian packages;
234 renamed pkg-config lib name 'liblscp' -> 'lscp' as
235 it's common practice to omit the 'lib' prefix.
236
237 0.2.1 2004-07-09 Potential cripling defects habve been fixed.
238
239 0.2.0 2004-07-06 New LSCP extension draft (v.11) initial support.
240 (still a work in progress...)
241
242
243 0.1.9 2004-05-18 More fixes for MSVC++ example build.
244
245 0.1.8 2004-05-17 Fix for MSVC++ example build; snprintf replaced by
246 buffer overflow friendlier sprintf.
247
248 0.1.7 2004-05-10 Missing version.h now included on install; WIN32 is
249 only now conditionally defined.
250
251 0.1.6 2004-05-04 WIN32 build support; LPGL disclaimer consistency;
252 versioning functions introduced.
253
254 0.1.5 2004-04-26 Server stuff moved into examples.
255
256 0.1.4 2004-04-24 Initial auto/libtool preparation.

  ViewVC Help
Powered by ViewVC