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

Diff of /liblscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.163  
changed lines
  Added in v.2132

  ViewVC Help
Powered by ViewVC