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

Diff of /liblscp/trunk/ChangeLog

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

revision 963 by capela, Sun Dec 3 18:30:04 2006 UTC revision 2424 by capela, Sun Feb 24 19:02:30 2013 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6  0.4.2  2006-12-03  MIDI instrument mapping fixed, previously missing  SVN TRUNK          Use getaddrinfo() instead of deprecated gethostbyname().
7    
8                       Update on newer autoconf macros (m4).
9    
10                       Fixes for building for Windows with configure and make.
11    
12                       Makefile fixes for building in separate directory.
13    
14    0.5.6  2009-08-01  Fixed locale related parser bug (fixes #59).
15    
16                       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                       "NAME" into the result list.
23    
24                       Bugfix: _lscp_client_evt_proc() dropped LSCP events.
25    
26                       Bugfix in lscp_client_subscribe(): only the first
27                       lscp_client_subscribe() call succeeded (per client),
28                       all subsequent ones failed.
29    
30                       Added support for new (un)subscribable events:
31                         LSCP_EVENT_CHANNEL_MIDI
32                         LSCP_EVENT_DEVICE_MIDI
33                       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                       effect send entities:
43                         lscp_set_fxsend_name();
44    
45                       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                       Bugfix: fixed buggy behavior on different locale
53                       settings (e.g. when parsing floating point numbers).
54    
55    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    0.5.4  2007-10-02  Added new client interface function, for editing
62                       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    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    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                       and for global volume:
85                         lscp_get_volume();
86                         lscp_set_volume();
87    
88                       Audio routing representation changed to integer array.
89    
90    0.5.1  2006-12-22  Added support for new (un)subscribable events:
91                         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    
100                       Updated examples.
101    
102    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    0.4.2  2006-12-04  MIDI instrument mapping fixed, previously missing
116                     the regular ON_DEMAND load mode.                     the regular ON_DEMAND load mode.
117    
118                     Server error reporting is now effective; all server                     Server error reporting is now effective; all server
# Line 76  ChangeLog Line 185  ChangeLog
185                     as to be more meaningful. Added support for the newest                     as to be more meaningful. Added support for the newest
186                     LSCP command: GET SERVER INFO; lscp_get_server_info().                     LSCP command: GET SERVER INFO; lscp_get_server_info().
187    
188  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
189                     consistency, regarding the enumeration of available                     consistency, regarding the enumeration of available
190                     sampler engines, Audio and MIDI drivers; this has                     sampler engines, Audio and MIDI drivers; this has
191                     affected the signature of the following functions:                     affected the signature of the following functions:
192                       lscp_get_available_engines();                       lscp_get_available_engines();
193                       lscp_get_available_audio_drivers();                       lscp_get_available_audio_drivers();
194                       lscp_get_available_midi_drivers();                       lscp_get_available_midi_drivers();
195                     which are now returning an integer count of engines                     which are now returning an integer count of engines
196                     and drivers, respectively, while the following                     and drivers, respectively, while the following
197                     functions are now being introduced:                     functions are now being introduced:
198                       lscp_list_available_engines();                       lscp_list_available_engines();
199                       lscp_list_available_audio_drivers();                       lscp_list_available_audio_drivers();

Legend:
Removed from v.963  
changed lines
  Added in v.2424

  ViewVC Help
Powered by ViewVC