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

Diff of /liblscp/trunk/ChangeLog

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

revision 626 by capela, Fri Jun 10 09:59:18 2005 UTC revision 1031 by capela, Mon Jan 15 11:08:28 2007 UTC
# Line 3  liblscp - LinuxSampler Control Protocol Line 3  liblscp - LinuxSampler Control Protocol
3    
4  ChangeLog  ChangeLog
5    
6    0.5.3  2007-01-15  Added new client interface functions, for sampler
7                       channel effect sends control:
8                         lscp_set_fxsend_midi_controller();
9                         lscp_set_fxsend_level();
10    
11                       Added new field member to lscp_fxsend_info_t (level).
12    
13    0.5.2  2007-01-11  Added new client interface functions, for sampler
14                       channel effect sends control:
15                         lscp_create_fxsend();
16                         lscp_destroy_fxsend();
17                         lscp_get_fxsends();
18                         lscp_list_fxsends();
19                         lscp_get_fxsend_info();
20                         lscp_set_fxsend_audio_channel();
21                                       and for global volume:
22                         lscp_get_volume();
23                         lscp_set_volume();
24    
25                       Audio routing representation changed to integer array.
26    
27    0.5.1  2006-12-22  Added support for new (un)subscribable events:
28                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_COUNT,
29                         LSCP_EVENT_AUDIO_OUTPUT_DEVICE_INFO,
30                         LSCP_EVENT_MIDI_INPUT_DEVICE_COUNT,
31                         LSCP_EVENT_MIDI_INPUT_DEVICE_INFO,
32                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_COUNT,
33                         LSCP_EVENT_MIDI_INSTRUMENT_MAP_INFO,
34                         LSCP_EVENT_MIDI_INSTRUMENT_COUNT,
35                         LSCP_EVENT_MIDI_INSTRUMENT_INFO.
36    
37                       Updated examples.
38    
39    0.5.0  2006-12-17  MIDI instrument mapping, second round, according to
40                       LSCP 1.2 draft document as of December 15, 2006.
41    
42                       New client interface functions:
43                         lscp_set_channel_midi_map();
44                         lscp_add_midi_instrument_map();
45                         lscp_remove_midi_instrument_map();
46                         lscp_get_midi_instrument_maps();
47                         lscp_list_midi_instrument_maps();
48                         lscp_get_midi_instrument_map_name();
49                         lscp_set_midi_instrument_map_name();
50    
51    
52    0.4.2  2006-12-04  MIDI instrument mapping fixed, previously missing
53                       the regular ON_DEMAND load mode.
54    
55                       Server error reporting is now effective; all server
56                       numerical error and warning codes are added to 100,
57                       thus giving a proper non-zero lscp_client_get_errno()
58                       return value.
59    
60    0.4.1  2006-11-28  Fixed the flush timeout operation to be issued only
61                       once, avoiding recurrent client failure after receive
62                       timeout.
63    
64                       Support for very long command result sets have been
65                       introduced, with the downside of strictly obeying
66                       the LSCP draft.
67    
68                       list_midi_instruments() is now being implemented.
69    
70                       LGPL text is now back in COPYING.
71    
72    0.4.0  2006-11-27  As of the LSCP 1.2 working draft document, added
73                       some missing client interface functions:
74                         lscp_get_total_voice_count();
75                         lscp_get_total_voice_count_max();
76                       and for the new MIDI instrumenbt mapping features:
77                         lscp_map_midi_instrument();
78                         lscp_unmap_midi_instrument();
79                         lscp_get_midi_instruments();
80                         lscp_get_midi_instrument_info();
81                         lscp_clear_midi_instruments();
82    
83    
84    0.3.4  2006-09-24  GPL address update.
85    
86    0.3.3  2006-06-01  Fixed some compilation warnings due to suspicious type
87                       casting and unsused header macros.
88    
89                       Changed deprecated copyright attribute to license
90                       and added ldconfig to post-(un)install steps
91                       to liblscp.spec (RPM).
92    
93    0.3.2  2005-08-29  Fixed missing initialization bug on lscp_channel_info_t
94                       new struct fields (mute/solo).
95    
96                       Include debian files into distribution.
97    
98                       Renamed configure.in to newer configure.ac.
99    
100    0.3.1  2005-08-16  [bug #21] Fixed automake support for separate build
101                       directory.
102    
103                       Added support to sampler channel MUTE/SOLO states:
104                         lscp_set_channel_mute();
105                         lscp_set_channel_solo();
106                       with corresponding new lscp_channel_info_t fields.
107    
108  0.3.0  2005-06-10  [bug #11] Timeout flush idiosyncrasy is now a feature;  0.3.0  2005-06-10  [bug #11] Timeout flush idiosyncrasy is now a feature;
109                     this just tries to flush the receive buffer whenever                     this just tries to flush the receive buffer whenever
110                     any previous transaction has failed due to a timeout.                     any previous transaction has failed due to a timeout.
# Line 13  ChangeLog Line 115  ChangeLog
115                     giving up systematically on select() due to "Invalid                     giving up systematically on select() due to "Invalid
116                     argument" (EINVAL).                     argument" (EINVAL).
117    
118    
119  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
120                     event subscription ones: the LSCP_EVENT_CHANNELS event                     event subscription ones: the LSCP_EVENT_CHANNELS event
121                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,                     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
# Line 75  ChangeLog Line 178  ChangeLog
178  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.
179                     (still a work in progress...)                     (still a work in progress...)
180    
181    
182  0.1.9  2004-05-18  More fixes for MSVC++ example build.  0.1.9  2004-05-18  More fixes for MSVC++ example build.
183    
184  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.626  
changed lines
  Added in v.1031

  ViewVC Help
Powered by ViewVC