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

Annotation of /liblscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3663 - (hide annotations) (download)
Sun Dec 22 12:41:28 2019 UTC (4 years, 3 months ago) by schoenebeck
File size: 11531 byte(s)
- Fixed compile errors on macOS.

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

  ViewVC Help
Powered by ViewVC