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

Diff of /liblscp/trunk/ChangeLog

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

revision 278 by capela, Mon Oct 11 11:59:31 2004 UTC revision 1665 by schoenebeck, Mon Feb 4 13:02:30 2008 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6    CVS HEAD           Added new client interface function, for renaming
7                       effect send entities:
8                         lscp_set_fxsend_name();
9    
10    0.5.5  2007-10-12  Changed client interface function, for editing
11                       instrument, from:
12                         lscp_edit_instrument();
13                       to:
14                         lscp_edit_channel_instrument();
15    
16    0.5.4  2007-10-02  Added new client interface function, for editing
17                       instrument:
18                         lscp_edit_instrument();
19    
20                       Fixed some minor bugs in:
21                         lscp_set_fxsend_midi_controller();
22                         lscp_set_fxsend_level();
23    
24    0.5.3  2007-01-15  Added new client interface functions, for sampler
25                       channel effect sends control:
26                         lscp_set_fxsend_midi_controller();
27                         lscp_set_fxsend_level();
28    
29                       Added new field member to lscp_fxsend_info_t (level).
30    
31    0.5.2  2007-01-11  Added new client interface functions, for sampler
32                       channel effect sends control:
33                         lscp_create_fxsend();
34                         lscp_destroy_fxsend();
35                         lscp_get_fxsends();
36                         lscp_list_fxsends();
37                         lscp_get_fxsend_info();
38                         lscp_set_fxsend_audio_channel();
39                       and for global volume:
40                         lscp_get_volume();
41                         lscp_set_volume();
42    
43                       Audio routing representation changed to integer array.
44    
45    0.5.1  2006-12-22  Added support for new (un)subscribable events:
46                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
47                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
48                         LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
49                         LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
50                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
51                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
52                         LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
53                         LSCP_EVENT_MIDI_INSTRUMENT_INFO.
54    
55                       Updated examples.
56    
57    0.5.0  2006-12-17  MIDI instrument mapping, second round, according to
58                       LSCP 1.2 draft document as of December 15, 2006.
59    
60                       New client interface functions:
61                         lscp_set_channel_midi_map();
62                         lscp_add_midi_instrument_map();
63                         lscp_remove_midi_instrument_map();
64                         lscp_get_midi_instrument_maps();
65                         lscp_list_midi_instrument_maps();
66                         lscp_get_midi_instrument_map_name();
67                         lscp_set_midi_instrument_map_name();
68    
69    
70    0.4.2  2006-12-04  MIDI instrument mapping fixed, previously missing
71                       the regular ON_DEMAND load mode.
72    
73                       Server error reporting is now effective; all server
74                       numerical error and warning codes are added to 100,
75                       thus giving a proper non-zero lscp_client_get_errno()
76                       return value.
77    
78    0.4.1  2006-11-28  Fixed the flush timeout operation to be issued only
79                       once, avoiding recurrent client failure after receive
80                       timeout.
81    
82                       Support for very long command result sets have been
83                       introduced, with the downside of strictly obeying
84                       the LSCP draft.
85    
86                       list_midi_instruments() is now being implemented.
87    
88                       LGPL text is now back in COPYING.
89    
90    0.4.0  2006-11-27  As of the LSCP 1.2 working draft document, added
91                       some missing client interface functions:
92                         lscp_get_total_voice_count();
93                         lscp_get_total_voice_count_max();
94                       and for the new MIDI instrumenbt mapping features:
95                         lscp_map_midi_instrument();
96                         lscp_unmap_midi_instrument();
97                         lscp_get_midi_instruments();
98                         lscp_get_midi_instrument_info();
99                         lscp_clear_midi_instruments();
100    
101    
102    0.3.4  2006-09-24  GPL address update.
103    
104    0.3.3  2006-06-01  Fixed some compilation warnings due to suspicious type
105                       casting and unsused header macros.
106    
107                       Changed deprecated copyright attribute to license
108                       and added ldconfig to post-(un)install steps
109                       to liblscp.spec (RPM).
110    
111    0.3.2  2005-08-29  Fixed missing initialization bug on lscp_channel_info_t
112                       new struct fields (mute/solo).
113    
114                       Include debian files into distribution.
115    
116                       Renamed configure.in to newer configure.ac.
117    
118    0.3.1  2005-08-16  [bug #21] Fixed automake support for separate build
119                       directory.
120    
121                       Added support to sampler channel MUTE/SOLO states:
122                         lscp_set_channel_mute();
123                         lscp_set_channel_solo();
124                       with corresponding new lscp_channel_info_t fields.
125    
126    0.3.0  2005-06-10  [bug #11] Timeout flush idiosyncrasy is now a feature;
127                       this just tries to flush the receive buffer whenever
128                       any previous transaction has failed due to a timeout.
129    
130                       Fixed an off-by-one timeout quirk, that has been a real
131                       showstopper on Mac OS X at least, which is incidental
132                       to qsampler's default timeout setting of 1000 msecs,
133                       giving up systematically on select() due to "Invalid
134                       argument" (EINVAL).
135    
136    
137    0.2.8  2005-05-22  More LSCP command syntax changes, particularly on the
138                       event subscription ones: the LSCP_EVENT_CHANNELS event
139                       definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
140                       as to be more meaningful. Added support for the newest
141                       LSCP command: GET SERVER INFO; lscp_get_server_info().
142    
143    0.2.8  2005-05-08  [bug #9] Fixed for a LSCP command syntax convention
144                       consistency, regarding the enumeration of available
145                       sampler engines, Audio and MIDI drivers; this has
146                       affected the signature of the following functions:
147                         lscp_get_available_engines();
148                         lscp_get_available_audio_drivers();
149                         lscp_get_available_midi_drivers();
150                       which are now returning an integer count of engines
151                       and drivers, respectively, while the following
152                       functions are now being introduced:
153                         lscp_list_available_engines();
154                         lscp_list_available_audio_drivers();
155                         lscp_list_available_midi_drivers();
156                       taking on the previous functionality, returning
157                       a comma separated list of names.
158    
159    0.2.7  2005-03-10  Mini bitsy regression; a severe crash (segfault)
160                       was fixed on the device configuration functions:
161                         lscp_set_audio_device_param();
162                         lscp_set_midi_device_param();
163                         lscp_set_audio_channel_param();
164                         lscp_set_midi_port_param();
165    
166    0.2.6  2005-03-01  Fixed nasty off-by-one bug on internal helpers.
167    
168    0.2.5  2005-02-14  Added support for the new INSTRUMENT_NAME field
169                       of GET CHANNEL INFO command.
170    
171  0.2.4  2004-10-11  Fixed lscp_set_channel_midi_channel() again, MIDI  0.2.4  2004-10-11  Fixed lscp_set_channel_midi_channel() again, MIDI
172                     channels should be given in the range 0-15, and omni                     channels should be given in the range 0-15, and omni
173                     mode with the LSCP_MIDI_CHANNEL_ALL symbol (16).                     mode with the LSCP_MIDI_CHANNEL_ALL symbol (16).
174    
175                       Fixed lscp_get_channel_info() to parse MIDI omni
176                       (ALL) channels mode.
177    
178  0.2.3  2004-09-28  Fixed lscp_set_channel_midi_channel() where MIDI  0.2.3  2004-09-28  Fixed lscp_set_channel_midi_channel() where MIDI
179                     channels should be given in the range 1-16, and                     channels should be given in the range 1-16, and
180                     omni mode with the new LSCP_MIDI_CHANNEL_ALL                     omni mode with the new LSCP_MIDI_CHANNEL_ALL
181                     symbol (0).                     symbol (0).
182                      
183                     Rearrangement on main command requester executive.                     Rearrangement on main command requester executive.
184    
185  0.2.2  2004-07-29  In sync with LSCP document draf (v.12).  0.2.2  2004-07-29  In sync with LSCP document draf (v.12).
# Line 28  ChangeLog Line 196  ChangeLog
196  0.2.0  2004-07-06  New LSCP extension draft (v.11) initial support.  0.2.0  2004-07-06  New LSCP extension draft (v.11) initial support.
197                     (still a work in progress...)                     (still a work in progress...)
198    
199    
200  0.1.9  2004-05-18  More fixes for MSVC++ example build.  0.1.9  2004-05-18  More fixes for MSVC++ example build.
201    
202  0.1.8  2004-05-17  Fix for MSVC++ example build; snprintf replaced by  0.1.8  2004-05-17  Fix for MSVC++ example build; snprintf replaced by
# Line 42  ChangeLog Line 211  ChangeLog
211  0.1.5  2004-04-26  Server stuff moved into examples.  0.1.5  2004-04-26  Server stuff moved into examples.
212    
213  0.1.4  2004-04-24  Initial auto/libtool preparation.  0.1.4  2004-04-24  Initial auto/libtool preparation.
   

Legend:
Removed from v.278  
changed lines
  Added in v.1665

  ViewVC Help
Powered by ViewVC