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

Diff of /liblscp/trunk/ChangeLog

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

revision 1020 by capela, Thu Jan 11 15:25:04 2007 UTC revision 3043 by capela, Sat Nov 12 16:09:52 2016 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6    0.5.8  2016-11-14  A Fall'16 release.
7    
8    0.5.7  2013-12-31  Use getaddrinfo() instead of deprecated gethostbyname().
9    
10                       Update on newer autoconf macros (m4).
11    
12                       Fixes for building for Windows with configure and make.
13    
14                       Makefile fixes for building in separate directory.
15    
16                       Autoconf fix: AC_CONFIG_HEADER obsolete error (fixes #194).
17    
18    0.5.6  2009-08-01  Fixed locale related parser bug (fixes #59).
19    
20                       Added new client interface functions, for managing
21                       the global limit of maximum voices and disk streams:
22                       lscp_get_voices(), lscp_set_voices(), lscp_get_streams(),
23                       lscp_set_streams().
24    
25                       _lscp_device_port_info_query(): take port parameter
26                       "NAME" into the result list.
27    
28                       Bugfix: _lscp_client_evt_proc() dropped LSCP events.
29    
30                       Bugfix in lscp_client_subscribe(): only the first
31                       lscp_client_subscribe() call succeeded (per client),
32                       all subsequent ones failed.
33    
34                       Added support for new (un)subscribable events:
35                         LSCP_EVENT_CHANNEL_MIDI
36                         LSCP_EVENT_DEVICE_MIDI
37                       Caution: the bitflag approach for the event variable
38                       is now abondoned, since otherwise we would soon hit the
39                       limit of the bit range. The bitflag approach will
40                       remain for events older at this point (that is all
41                       events which occupy the lower 16 bits), but this new
42                       and all following events will simply be enumared along
43                       the upper 16 bits.
44    
45                       Added new client interface function, for renaming
46                       effect send entities:
47                         lscp_set_fxsend_name();
48    
49                       Added new client interface functions, for managing the
50                       global limit of maximum voices and disk streams:
51                         lscp_get_voices();
52                         lscp_set_voices();
53                         lscp_get_streams();
54                         lscp_set_streams();
55    
56                       Bugfix: fixed buggy behavior on different locale
57                       settings (e.g. when parsing floating point numbers).
58    
59    0.5.5  2007-10-12  Changed client interface function, for editing
60                       instrument, from:
61                         lscp_edit_instrument();
62                       to:
63                         lscp_edit_channel_instrument();
64    
65    0.5.4  2007-10-02  Added new client interface function, for editing
66                       instrument:
67                         lscp_edit_instrument();
68    
69                       Fixed some minor bugs in:
70                         lscp_set_fxsend_midi_controller();
71                         lscp_set_fxsend_level();
72    
73    0.5.3  2007-01-15  Added new client interface functions, for sampler
74                       channel effect sends control:
75                         lscp_set_fxsend_midi_controller();
76                         lscp_set_fxsend_level();
77    
78                       Added new field member to lscp_fxsend_info_t (level).
79    
80  0.5.2  2007-01-11  Added new client interface functions, for sampler  0.5.2  2007-01-11  Added new client interface functions, for sampler
81                     channel effect sends control:                     channel effect sends control:
82                       lscp_create_fxsend();                       lscp_create_fxsend();
# Line 11  ChangeLog Line 85  ChangeLog
85                       lscp_list_fxsends();                       lscp_list_fxsends();
86                       lscp_get_fxsend_info();                       lscp_get_fxsend_info();
87                       lscp_set_fxsend_audio_channel();                       lscp_set_fxsend_audio_channel();
88                                     and for global volume:                     and for global volume:
89                       lscp_get_volume();                       lscp_get_volume();
90                       lscp_set_volume();                       lscp_set_volume();
91    
92                     Audio routing representation changed integer array.                     Audio routing representation changed to integer array.
93    
94  0.5.1  2006-12-22  Added support for new (un)subscribable events:  0.5.1  2006-12-22  Added support for new (un)subscribable events:
95                       LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,                       LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
# Line 26  ChangeLog Line 100  ChangeLog
100                       LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,                       LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
101                       LSCP_EVENT_MIDI_INSTRUMENT_COUNT,                       LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
102                       LSCP_EVENT_MIDI_INSTRUMENT_INFO.                       LSCP_EVENT_MIDI_INSTRUMENT_INFO.
103    
104                     Updated examples.                     Updated examples.
105    
106  0.5.0  2006-12-17  MIDI instrument mapping, second round, according to  0.5.0  2006-12-17  MIDI instrument mapping, second round, according to
# Line 115  ChangeLog Line 189  ChangeLog
189                     as to be more meaningful. Added support for the newest                     as to be more meaningful. Added support for the newest
190                     LSCP command: GET SERVER INFO; lscp_get_server_info().                     LSCP command: GET SERVER INFO; lscp_get_server_info().
191    
192  0.2.8  2005-05-08  [bug #9] Fixed for a LSCP command syntax convention  0.2.8  2005-05-08  [bug #9] Fixed for a LSCP command syntax convention
193                     consistency, regarding the enumeration of available                     consistency, regarding the enumeration of available
194                     sampler engines, Audio and MIDI drivers; this has                     sampler engines, Audio and MIDI drivers; this has
195                     affected the signature of the following functions:                     affected the signature of the following functions:
196                       lscp_get_available_engines();                       lscp_get_available_engines();
197                       lscp_get_available_audio_drivers();                       lscp_get_available_audio_drivers();
198                       lscp_get_available_midi_drivers();                       lscp_get_available_midi_drivers();
199                     which are now returning an integer count of engines                     which are now returning an integer count of engines
200                     and drivers, respectively, while the following                     and drivers, respectively, while the following
201                     functions are now being introduced:                     functions are now being introduced:
202                       lscp_list_available_engines();                       lscp_list_available_engines();
203                       lscp_list_available_audio_drivers();                       lscp_list_available_audio_drivers();

Legend:
Removed from v.1020  
changed lines
  Added in v.3043

  ViewVC Help
Powered by ViewVC