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

Diff of /liblscp/trunk/ChangeLog

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

revision 948 by capela, Tue Nov 28 15:31:20 2006 UTC revision 3864 by capela, Sun Mar 14 10:17:22 2021 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6    0.9.2  2021-03-14  An End-of-Winter'21 release.
7    
8    0.9.1  2021-02-07  A Winter'21 release.
9    
10    0.9.0  2020-12-17  A Winter'20 release.
11    
12    0.6.2  2019-03-24  A Spring'20 release.
13    
14                       Fixed compile errors on macOS.
15    
16                       Expose actual system error codes via client interface
17                       instead of just -1 whenever a syscall failed.
18    
19                       Added new client interface function:
20                         lscp_client_connection_lost();
21                       for checking whether client lost connection to server.
22    
23                       Fixed potential missing NULL termination of locale strings.
24    
25    0.6.1  2019-12-22  The Winter'19 Release.
26    
27    0.6.0  2017-12-12  An Autumn'17 release.
28    
29    0.5.8  2016-11-14  A Fall'16 release.
30    
31    0.5.7  2013-12-31  Use getaddrinfo() instead of deprecated gethostbyname().
32    
33                       Update on newer autoconf macros (m4).
34    
35                       Fixes for building for Windows with configure and make.
36    
37                       Makefile fixes for building in separate directory.
38    
39                       Autoconf fix: AC_CONFIG_HEADER obsolete error (fixes #194).
40    
41    0.5.6  2009-08-01  Fixed locale related parser bug (fixes #59).
42    
43                       Added new client interface functions, for managing
44                       the global limit of maximum voices and disk streams:
45                       lscp_get_voices(), lscp_set_voices(), lscp_get_streams(),
46                       lscp_set_streams().
47    
48                       _lscp_device_port_info_query(): take port parameter
49                       "NAME" into the result list.
50    
51                       Bugfix: _lscp_client_evt_proc() dropped LSCP events.
52    
53                       Bugfix in lscp_client_subscribe(): only the first
54                       lscp_client_subscribe() call succeeded (per client),
55                       all subsequent ones failed.
56    
57                       Added support for new (un)subscribable events:
58                         LSCP_EVENT_CHANNEL_MIDI
59                         LSCP_EVENT_DEVICE_MIDI
60                       Caution: the bitflag approach for the event variable
61                       is now abondoned, since otherwise we would soon hit the
62                       limit of the bit range. The bitflag approach will
63                       remain for events older at this point (that is all
64                       events which occupy the lower 16 bits), but this new
65                       and all following events will simply be enumared along
66                       the upper 16 bits.
67    
68                       Added new client interface function, for renaming
69                       effect send entities:
70                         lscp_set_fxsend_name();
71    
72                       Added new client interface functions, for managing the
73                       global limit of maximum voices and disk streams:
74                         lscp_get_voices();
75                         lscp_set_voices();
76                         lscp_get_streams();
77                         lscp_set_streams();
78    
79                       Bugfix: fixed buggy behavior on different locale
80                       settings (e.g. when parsing floating point numbers).
81    
82    0.5.5  2007-10-12  Changed client interface function, for editing
83                       instrument, from:
84                         lscp_edit_instrument();
85                       to:
86                         lscp_edit_channel_instrument();
87    
88    0.5.4  2007-10-02  Added new client interface function, for editing
89                       instrument:
90                         lscp_edit_instrument();
91    
92                       Fixed some minor bugs in:
93                         lscp_set_fxsend_midi_controller();
94                         lscp_set_fxsend_level();
95    
96    0.5.3  2007-01-15  Added new client interface functions, for sampler
97                       channel effect sends control:
98                         lscp_set_fxsend_midi_controller();
99                         lscp_set_fxsend_level();
100    
101                       Added new field member to lscp_fxsend_info_t (level).
102    
103    0.5.2  2007-01-11  Added new client interface functions, for sampler
104                       channel effect sends control:
105                         lscp_create_fxsend();
106                         lscp_destroy_fxsend();
107                         lscp_get_fxsends();
108                         lscp_list_fxsends();
109                         lscp_get_fxsend_info();
110                         lscp_set_fxsend_audio_channel();
111                       and for global volume:
112                         lscp_get_volume();
113                         lscp_set_volume();
114    
115                       Audio routing representation changed to integer array.
116    
117    0.5.1  2006-12-22  Added support for new (un)subscribable events:
118                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
119                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
120                         LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
121                         LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
122                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
123                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
124                         LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
125                         LSCP_EVENT_MIDI_INSTRUMENT_INFO.
126    
127                       Updated examples.
128    
129    0.5.0  2006-12-17  MIDI instrument mapping, second round, according to
130                       LSCP 1.2 draft document as of December 15, 2006.
131    
132                       New client interface functions:
133                         lscp_set_channel_midi_map();
134                         lscp_add_midi_instrument_map();
135                         lscp_remove_midi_instrument_map();
136                         lscp_get_midi_instrument_maps();
137                         lscp_list_midi_instrument_maps();
138                         lscp_get_midi_instrument_map_name();
139                         lscp_set_midi_instrument_map_name();
140    
141    
142    0.4.2  2006-12-04  MIDI instrument mapping fixed, previously missing
143                       the regular ON_DEMAND load mode.
144    
145                       Server error reporting is now effective; all server
146                       numerical error and warning codes are added to 100,
147                       thus giving a proper non-zero lscp_client_get_errno()
148                       return value.
149    
150  0.4.1  2006-11-28  Fixed the flush timeout operation to be issued only  0.4.1  2006-11-28  Fixed the flush timeout operation to be issued only
151                     once, avoiding recurrent client failure after receive                     once, avoiding recurrent client failure after receive
152                     timeout.                     timeout.
# Line 68  ChangeLog Line 212  ChangeLog
212                     as to be more meaningful. Added support for the newest                     as to be more meaningful. Added support for the newest
213                     LSCP command: GET SERVER INFO; lscp_get_server_info().                     LSCP command: GET SERVER INFO; lscp_get_server_info().
214    
215  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
216                     consistency, regarding the enumeration of available                     consistency, regarding the enumeration of available
217                     sampler engines, Audio and MIDI drivers; this has                     sampler engines, Audio and MIDI drivers; this has
218                     affected the signature of the following functions:                     affected the signature of the following functions:
219                       lscp_get_available_engines();                       lscp_get_available_engines();
220                       lscp_get_available_audio_drivers();                       lscp_get_available_audio_drivers();
221                       lscp_get_available_midi_drivers();                       lscp_get_available_midi_drivers();
222                     which are now returning an integer count of engines                     which are now returning an integer count of engines
223                     and drivers, respectively, while the following                     and drivers, respectively, while the following
224                     functions are now being introduced:                     functions are now being introduced:
225                       lscp_list_available_engines();                       lscp_list_available_engines();
226                       lscp_list_available_audio_drivers();                       lscp_list_available_audio_drivers();

Legend:
Removed from v.948  
changed lines
  Added in v.3864

  ViewVC Help
Powered by ViewVC