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 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
|
liblscp - LinuxSampler Control Protocol API
-------------------------------------------
ChangeLog
1.0.1 2025-03-27 An Early Spring'25 Release.
1.0.0 2024-06-19 An Unthinkable Release.
Making up the unthinkable (aka. v1.0.0)
0.9.91 2024-05-01 A Spring'24 release candidate 2.
Prepping the unthinkable (aka. v1.0.0-rc2)
0.9.90 2024-04-10 A Spring'24 release candidate.
Prepping the unthinkable (aka. v1.0.0-rc1)
0.9.12 2024-01-24 A Winter'24 release.
0.9.11 2023-09-09 An End-of-Summer'23 release.
0.9.10 2023-06-01 A Spring'23 release.
0.9.9 2023-03-23 An Early-Spring'23 release.
0.9.8 2022-12-28 An End-of-Year'22 release.
Fixed broken pkg-config file (lscp.pc) generation (thanks
to Konstantin Voinov while on OBS multimedia::proaudio).
0.9.7 2022-10-03 An Early-Autumn'22 release.
0.9.6 2022-04-02 Install doxygen (doc/html) files again (via cmake).
0.9.5 2022-01-09 Dropped autotools (autoconf, automake, etc.) build system.
0.9.4 2021-07-04 An Early-Summer'21 release.
0.9.3 2021-05-11 A Spring'21 release.
Introducing cmake build option.
0.9.2 2021-03-14 An End-of-Winter'21 release.
0.9.1 2021-02-07 A Winter'21 release.
0.9.0 2020-12-17 A Winter'20 release.
0.6.2 2019-03-24 A Spring'20 release.
Fixed compile errors on macOS.
Expose actual system error codes via client interface
instead of just -1 whenever a syscall failed.
Added new client interface function:
lscp_client_connection_lost();
for checking whether client lost connection to server.
Fixed potential missing NULL termination of locale strings.
0.6.1 2019-12-22 The Winter'19 Release.
0.6.0 2017-12-12 An Autumn'17 release.
0.5.8 2016-11-14 A Fall'16 release.
0.5.7 2013-12-31 Use getaddrinfo() instead of deprecated gethostbyname().
Update on newer autoconf macros (m4).
Fixes for building for Windows with configure and make.
Makefile fixes for building in separate directory.
Autoconf fix: AC_CONFIG_HEADER obsolete error (fixes #194).
0.5.6 2009-08-01 Fixed locale related parser bug (fixes #59).
Added new client interface functions, for managing
the global limit of maximum voices and disk streams:
lscp_get_voices(), lscp_set_voices(), lscp_get_streams(),
lscp_set_streams().
_lscp_device_port_info_query(): take port parameter
"NAME" into the result list.
Bugfix: _lscp_client_evt_proc() dropped LSCP events.
Bugfix in lscp_client_subscribe(): only the first
lscp_client_subscribe() call succeeded (per client),
all subsequent ones failed.
Added support for new (un)subscribable events:
LSCP_EVENT_CHANNEL_MIDI
LSCP_EVENT_DEVICE_MIDI
Caution: the bitflag approach for the event variable
is now abondoned, since otherwise we would soon hit the
limit of the bit range. The bitflag approach will
remain for events older at this point (that is all
events which occupy the lower 16 bits), but this new
and all following events will simply be enumared along
the upper 16 bits.
Added new client interface function, for renaming
effect send entities:
lscp_set_fxsend_name();
Added new client interface functions, for managing the
global limit of maximum voices and disk streams:
lscp_get_voices();
lscp_set_voices();
lscp_get_streams();
lscp_set_streams();
Bugfix: fixed buggy behavior on different locale
settings (e.g. when parsing floating point numbers).
0.5.5 2007-10-12 Changed client interface function, for editing
instrument, from:
lscp_edit_instrument();
to:
lscp_edit_channel_instrument();
0.5.4 2007-10-02 Added new client interface function, for editing
instrument:
lscp_edit_instrument();
Fixed some minor bugs in:
lscp_set_fxsend_midi_controller();
lscp_set_fxsend_level();
0.5.3 2007-01-15 Added new client interface functions, for sampler
channel effect sends control:
lscp_set_fxsend_midi_controller();
lscp_set_fxsend_level();
Added new field member to lscp_fxsend_info_t (level).
0.5.2 2007-01-11 Added new client interface functions, for sampler
channel effect sends control:
lscp_create_fxsend();
lscp_destroy_fxsend();
lscp_get_fxsends();
lscp_list_fxsends();
lscp_get_fxsend_info();
lscp_set_fxsend_audio_channel();
and for global volume:
lscp_get_volume();
lscp_set_volume();
Audio routing representation changed to integer array.
0.5.1 2006-12-22 Added support for new (un)subscribable events:
LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
LSCP_EVENT_MIDI_INSTRUMENT_INFO.
Updated examples.
0.5.0 2006-12-17 MIDI instrument mapping, second round, according to
LSCP 1.2 draft document as of December 15, 2006.
New client interface functions:
lscp_set_channel_midi_map();
lscp_add_midi_instrument_map();
lscp_remove_midi_instrument_map();
lscp_get_midi_instrument_maps();
lscp_list_midi_instrument_maps();
lscp_get_midi_instrument_map_name();
lscp_set_midi_instrument_map_name();
0.4.2 2006-12-04 MIDI instrument mapping fixed, previously missing
the regular ON_DEMAND load mode.
Server error reporting is now effective; all server
numerical error and warning codes are added to 100,
thus giving a proper non-zero lscp_client_get_errno()
return value.
0.4.1 2006-11-28 Fixed the flush timeout operation to be issued only
once, avoiding recurrent client failure after receive
timeout.
Support for very long command result sets have been
introduced, with the downside of strictly obeying
the LSCP draft.
list_midi_instruments() is now being implemented.
LGPL text is now back in COPYING.
0.4.0 2006-11-27 As of the LSCP 1.2 working draft document, added
some missing client interface functions:
lscp_get_total_voice_count();
lscp_get_total_voice_count_max();
and for the new MIDI instrumenbt mapping features:
lscp_map_midi_instrument();
lscp_unmap_midi_instrument();
lscp_get_midi_instruments();
lscp_get_midi_instrument_info();
lscp_clear_midi_instruments();
0.3.4 2006-09-24 GPL address update.
0.3.3 2006-06-01 Fixed some compilation warnings due to suspicious type
casting and unsused header macros.
Changed deprecated copyright attribute to license
and added ldconfig to post-(un)install steps
to liblscp.spec (RPM).
0.3.2 2005-08-29 Fixed missing initialization bug on lscp_channel_info_t
new struct fields (mute/solo).
Include debian files into distribution.
Renamed configure.in to newer configure.ac.
0.3.1 2005-08-16 [bug #21] Fixed automake support for separate build
directory.
Added support to sampler channel MUTE/SOLO states:
lscp_set_channel_mute();
lscp_set_channel_solo();
with corresponding new lscp_channel_info_t fields.
0.3.0 2005-06-10 [bug #11] Timeout flush idiosyncrasy is now a feature;
this just tries to flush the receive buffer whenever
any previous transaction has failed due to a timeout.
Fixed an off-by-one timeout quirk, that has been a real
showstopper on Mac OS X at least, which is incidental
to qsampler's default timeout setting of 1000 msecs,
giving up systematically on select() due to "Invalid
argument" (EINVAL).
0.2.8 2005-05-22 More LSCP command syntax changes, particularly on the
event subscription ones: the LSCP_EVENT_CHANNELS event
definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
as to be more meaningful. Added support for the newest
LSCP command: GET SERVER INFO; lscp_get_server_info().
0.2.8 2005-05-08 [bug #9] Fixed for a LSCP command syntax convention
consistency, regarding the enumeration of available
sampler engines, Audio and MIDI drivers; this has
affected the signature of the following functions:
lscp_get_available_engines();
lscp_get_available_audio_drivers();
lscp_get_available_midi_drivers();
which are now returning an integer count of engines
and drivers, respectively, while the following
functions are now being introduced:
lscp_list_available_engines();
lscp_list_available_audio_drivers();
lscp_list_available_midi_drivers();
taking on the previous functionality, returning
a comma separated list of names.
0.2.7 2005-03-10 Mini bitsy regression; a severe crash (segfault)
was fixed on the device configuration functions:
lscp_set_audio_device_param();
lscp_set_midi_device_param();
lscp_set_audio_channel_param();
lscp_set_midi_port_param();
0.2.6 2005-03-01 Fixed nasty off-by-one bug on internal helpers.
0.2.5 2005-02-14 Added support for the new INSTRUMENT_NAME field
of GET CHANNEL INFO command.
0.2.4 2004-10-11 Fixed lscp_set_channel_midi_channel() again, MIDI
channels should be given in the range 0-15, and omni
mode with the LSCP_MIDI_CHANNEL_ALL symbol (16).
Fixed lscp_get_channel_info() to parse MIDI omni
(ALL) channels mode.
0.2.3 2004-09-28 Fixed lscp_set_channel_midi_channel() where MIDI
channels should be given in the range 1-16, and
omni mode with the new LSCP_MIDI_CHANNEL_ALL
symbol (0).
Rearrangement on main command requester executive.
0.2.2 2004-07-29 In sync with LSCP document draf (v.12).
New functions added: lscp_client_get_events() and
lscp_reset_sampler().
Added support for generating Debian packages;
renamed pkg-config lib name 'liblscp' -> 'lscp' as
it's common practice to omit the 'lib' prefix.
0.2.1 2004-07-09 Potential cripling defects habve been fixed.
0.2.0 2004-07-06 New LSCP extension draft (v.11) initial support.
(still a work in progress...)
0.1.9 2004-05-18 More fixes for MSVC++ example build.
0.1.8 2004-05-17 Fix for MSVC++ example build; snprintf replaced by
buffer overflow friendlier sprintf.
0.1.7 2004-05-10 Missing version.h now included on install; WIN32 is
only now conditionally defined.
0.1.6 2004-05-04 WIN32 build support; LPGL disclaimer consistency;
versioning functions introduced.
0.1.5 2004-04-26 Server stuff moved into examples.
0.1.4 2004-04-24 Initial auto/libtool preparation.
|