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

Annotation of /liblscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


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

  ViewVC Help
Powered by ViewVC