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

Diff of /liblscp/trunk/ChangeLog

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

revision 623 by capela, Thu Jun 9 10:37:19 2005 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  0.3.0  2005-06-09  [bug #11] Timeout flush idiosyncrasy is now a feature;  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                     this just tries to flush the receive buffer whenever
128                     any previous transaction has failed due to a timeout.                     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  0.2.8  2005-05-22  More LSCP command syntax changes, particularly on the
138                     event subscription ones: the LSCP_EVENT_CHANNELS event                     event subscription ones: the LSCP_EVENT_CHANNELS event
139                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
# Line 69  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

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

  ViewVC Help
Powered by ViewVC