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

Diff of /liblscp/trunk/ChangeLog

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

revision 562 by capela, Sun May 22 11:27:56 2005 UTC revision 1697 by schoenebeck, Sat Feb 16 19:31:32 2008 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6    CVS HEAD           Bugfix: _lscp_client_evt_proc() dropped LSCP events.
7    
8                       Bugfix in lscp_client_subscribe(): only the first
9                       lscp_client_subscribe() call succeeded (per client),
10                       all subsequent ones failed.
11    
12                       Added support for new (un)subscribable events:
13                         LSCP_EVENT_CHANNEL_MIDI
14                         LSCP_EVENT_DEVICE_MIDI
15                       Caution: the bitflag approach for the event variable
16                       is now abondoned, since otherwise we would soon hit the
17                       limit of the bit range. The bitflag approach will
18                       remain for events older at this point (that is all
19                       events which occupy the lower 16 bits), but this new
20                       and all following events will simply be enumared along
21                       the upper 16 bits.
22    
23                       Added new client interface function, for renaming
24                       effect send entities:
25                         lscp_set_fxsend_name();
26    
27    0.5.5  2007-10-12  Changed client interface function, for editing
28                       instrument, from:
29                         lscp_edit_instrument();
30                       to:
31                         lscp_edit_channel_instrument();
32    
33    0.5.4  2007-10-02  Added new client interface function, for editing
34                       instrument:
35                         lscp_edit_instrument();
36    
37                       Fixed some minor bugs in:
38                         lscp_set_fxsend_midi_controller();
39                         lscp_set_fxsend_level();
40    
41    0.5.3  2007-01-15  Added new client interface functions, for sampler
42                       channel effect sends control:
43                         lscp_set_fxsend_midi_controller();
44                         lscp_set_fxsend_level();
45    
46                       Added new field member to lscp_fxsend_info_t (level).
47    
48    0.5.2  2007-01-11  Added new client interface functions, for sampler
49                       channel effect sends control:
50                         lscp_create_fxsend();
51                         lscp_destroy_fxsend();
52                         lscp_get_fxsends();
53                         lscp_list_fxsends();
54                         lscp_get_fxsend_info();
55                         lscp_set_fxsend_audio_channel();
56                       and for global volume:
57                         lscp_get_volume();
58                         lscp_set_volume();
59    
60                       Audio routing representation changed to integer array.
61    
62    0.5.1  2006-12-22  Added support for new (un)subscribable events:
63                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
64                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
65                         LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
66                         LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
67                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
68                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
69                         LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
70                         LSCP_EVENT_MIDI_INSTRUMENT_INFO.
71    
72                       Updated examples.
73    
74    0.5.0  2006-12-17  MIDI instrument mapping, second round, according to
75                       LSCP 1.2 draft document as of December 15, 2006.
76    
77                       New client interface functions:
78                         lscp_set_channel_midi_map();
79                         lscp_add_midi_instrument_map();
80                         lscp_remove_midi_instrument_map();
81                         lscp_get_midi_instrument_maps();
82                         lscp_list_midi_instrument_maps();
83                         lscp_get_midi_instrument_map_name();
84                         lscp_set_midi_instrument_map_name();
85    
86    
87    0.4.2  2006-12-04  MIDI instrument mapping fixed, previously missing
88                       the regular ON_DEMAND load mode.
89    
90                       Server error reporting is now effective; all server
91                       numerical error and warning codes are added to 100,
92                       thus giving a proper non-zero lscp_client_get_errno()
93                       return value.
94    
95    0.4.1  2006-11-28  Fixed the flush timeout operation to be issued only
96                       once, avoiding recurrent client failure after receive
97                       timeout.
98    
99                       Support for very long command result sets have been
100                       introduced, with the downside of strictly obeying
101                       the LSCP draft.
102    
103                       list_midi_instruments() is now being implemented.
104    
105                       LGPL text is now back in COPYING.
106    
107    0.4.0  2006-11-27  As of the LSCP 1.2 working draft document, added
108                       some missing client interface functions:
109                         lscp_get_total_voice_count();
110                         lscp_get_total_voice_count_max();
111                       and for the new MIDI instrumenbt mapping features:
112                         lscp_map_midi_instrument();
113                         lscp_unmap_midi_instrument();
114                         lscp_get_midi_instruments();
115                         lscp_get_midi_instrument_info();
116                         lscp_clear_midi_instruments();
117    
118    
119    0.3.4  2006-09-24  GPL address update.
120    
121    0.3.3  2006-06-01  Fixed some compilation warnings due to suspicious type
122                       casting and unsused header macros.
123    
124                       Changed deprecated copyright attribute to license
125                       and added ldconfig to post-(un)install steps
126                       to liblscp.spec (RPM).
127    
128    0.3.2  2005-08-29  Fixed missing initialization bug on lscp_channel_info_t
129                       new struct fields (mute/solo).
130    
131                       Include debian files into distribution.
132    
133                       Renamed configure.in to newer configure.ac.
134    
135    0.3.1  2005-08-16  [bug #21] Fixed automake support for separate build
136                       directory.
137    
138                       Added support to sampler channel MUTE/SOLO states:
139                         lscp_set_channel_mute();
140                         lscp_set_channel_solo();
141                       with corresponding new lscp_channel_info_t fields.
142    
143    0.3.0  2005-06-10  [bug #11] Timeout flush idiosyncrasy is now a feature;
144                       this just tries to flush the receive buffer whenever
145                       any previous transaction has failed due to a timeout.
146    
147                       Fixed an off-by-one timeout quirk, that has been a real
148                       showstopper on Mac OS X at least, which is incidental
149                       to qsampler's default timeout setting of 1000 msecs,
150                       giving up systematically on select() due to "Invalid
151                       argument" (EINVAL).
152    
153    
154  0.2.8  2005-05-22  More LSCP command syntax changes, particularly on the  0.2.8  2005-05-22  More LSCP command syntax changes, particularly on the
155                     event subscription ones: the LSCP_EVENT_CHANNELS event                     event subscription ones: the LSCP_EVENT_CHANNELS event
156                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
157                     as to be more meaningful.                     as to be more meaningful. Added support for the newest
158                       LSCP command: GET SERVER INFO; lscp_get_server_info().
159    
160  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
161                     consistency, regarding the enumeration of available                     consistency, regarding the enumeration of available
# Line 64  ChangeLog Line 213  ChangeLog
213  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.
214                     (still a work in progress...)                     (still a work in progress...)
215    
216    
217  0.1.9  2004-05-18  More fixes for MSVC++ example build.  0.1.9  2004-05-18  More fixes for MSVC++ example build.
218    
219  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

Legend:
Removed from v.562  
changed lines
  Added in v.1697

  ViewVC Help
Powered by ViewVC