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

Annotation of /liblscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 948 - (hide annotations) (download)
Tue Nov 28 15:31:20 2006 UTC (17 years, 4 months ago) by capela
File size: 6153 byte(s)
* Fixed some compilation warnings due to suspicious type
  casting and unsused header macros.

* Changed deprecated copyright attribute to license
  and added ldconfig to post-(un)install steps
  to liblscp.spec (RPM).

1 capela 103 liblscp - LinuxSampler Control Protocol API
2     -------------------------------------------
3    
4     ChangeLog
5    
6 capela 948 0.4.1 2006-11-28 Fixed the flush timeout operation to be issued only
7     once, avoiding recurrent client failure after receive
8     timeout.
9    
10     Support for very long command result sets have been
11     introduced, with the downside of strictly obeying
12     the LSCP draft.
13    
14     list_midi_instruments() is now being implemented.
15    
16     LGPL text is now back in COPYING.
17    
18 capela 946 0.4.0 2006-11-27 As of the LSCP 1.2 working draft document, added
19     some missing client interface functions:
20     lscp_get_total_voice_count();
21     lscp_get_total_voice_count_max();
22     and for the new MIDI instrumenbt mapping features:
23     lscp_map_midi_instrument();
24     lscp_unmap_midi_instrument();
25     lscp_get_midi_instruments();
26     lscp_get_midi_instrument_info();
27     lscp_clear_midi_instruments();
28    
29    
30 capela 921 0.3.4 2006-09-24 GPL address update.
31    
32 capela 869 0.3.3 2006-06-01 Fixed some compilation warnings due to suspicious type
33     casting and unsused header macros.
34    
35     Changed deprecated copyright attribute to license
36     and added ldconfig to post-(un)install steps
37     to liblscp.spec (RPM).
38    
39 capela 764 0.3.2 2005-08-29 Fixed missing initialization bug on lscp_channel_info_t
40 capela 749 new struct fields (mute/solo).
41    
42     Include debian files into distribution.
43    
44 capela 754 Renamed configure.in to newer configure.ac.
45    
46 capela 735 0.3.1 2005-08-16 [bug #21] Fixed automake support for separate build
47 capela 712 directory.
48 capela 749
49 capela 735 Added support to sampler channel MUTE/SOLO states:
50     lscp_set_channel_mute();
51     lscp_set_channel_solo();
52     with corresponding new lscp_channel_info_t fields.
53 capela 712
54 capela 626 0.3.0 2005-06-10 [bug #11] Timeout flush idiosyncrasy is now a feature;
55 capela 623 this just tries to flush the receive buffer whenever
56     any previous transaction has failed due to a timeout.
57    
58 capela 626 Fixed an off-by-one timeout quirk, that has been a real
59     showstopper on Mac OS X at least, which is incidental
60     to qsampler's default timeout setting of 1000 msecs,
61     giving up systematically on select() due to "Invalid
62     argument" (EINVAL).
63    
64 capela 946
65 capela 562 0.2.8 2005-05-22 More LSCP command syntax changes, particularly on the
66     event subscription ones: the LSCP_EVENT_CHANNELS event
67     definition were renamed to LSCP_EVENT_CHANNEL_COUNT,
68 capela 564 as to be more meaningful. Added support for the newest
69     LSCP command: GET SERVER INFO; lscp_get_server_info().
70 capela 562
71 capela 523 0.2.8 2005-05-08 [bug #9] Fixed for a LSCP command syntax convention
72     consistency, regarding the enumeration of available
73     sampler engines, Audio and MIDI drivers; this has
74     affected the signature of the following functions:
75     lscp_get_available_engines();
76     lscp_get_available_audio_drivers();
77     lscp_get_available_midi_drivers();
78     which are now returning an integer count of engines
79     and drivers, respectively, while the following
80     functions are now being introduced:
81     lscp_list_available_engines();
82     lscp_list_available_audio_drivers();
83     lscp_list_available_midi_drivers();
84     taking on the previous functionality, returning
85     a comma separated list of names.
86    
87 capela 445 0.2.7 2005-03-10 Mini bitsy regression; a severe crash (segfault)
88 capela 435 was fixed on the device configuration functions:
89     lscp_set_audio_device_param();
90     lscp_set_midi_device_param();
91     lscp_set_audio_channel_param();
92     lscp_set_midi_port_param();
93 capela 419
94 capela 415 0.2.6 2005-03-01 Fixed nasty off-by-one bug on internal helpers.
95    
96 capela 380 0.2.5 2005-02-14 Added support for the new INSTRUMENT_NAME field
97 capela 378 of GET CHANNEL INFO command.
98    
99 capela 278 0.2.4 2004-10-11 Fixed lscp_set_channel_midi_channel() again, MIDI
100     channels should be given in the range 0-15, and omni
101     mode with the LSCP_MIDI_CHANNEL_ALL symbol (16).
102 capela 415
103 capela 279 Fixed lscp_get_channel_info() to parse MIDI omni
104     (ALL) channels mode.
105 capela 278
106 capela 257 0.2.3 2004-09-28 Fixed lscp_set_channel_midi_channel() where MIDI
107     channels should be given in the range 1-16, and
108     omni mode with the new LSCP_MIDI_CHANNEL_ALL
109     symbol (0).
110 capela 415
111 capela 253 Rearrangement on main command requester executive.
112    
113 capela 213 0.2.2 2004-07-29 In sync with LSCP document draf (v.12).
114    
115     New functions added: lscp_client_get_events() and
116     lscp_reset_sampler().
117    
118     Added support for generating Debian packages;
119 schoenebeck 199 renamed pkg-config lib name 'liblscp' -> 'lscp' as
120     it's common practice to omit the 'lib' prefix.
121    
122 capela 194 0.2.1 2004-07-09 Potential cripling defects habve been fixed.
123 capela 187
124 capela 178 0.2.0 2004-07-06 New LSCP extension draft (v.11) initial support.
125 capela 103 (still a work in progress...)
126    
127 capela 946
128 capela 103 0.1.9 2004-05-18 More fixes for MSVC++ example build.
129    
130     0.1.8 2004-05-17 Fix for MSVC++ example build; snprintf replaced by
131     buffer overflow friendlier sprintf.
132    
133     0.1.7 2004-05-10 Missing version.h now included on install; WIN32 is
134     only now conditionally defined.
135    
136     0.1.6 2004-05-04 WIN32 build support; LPGL disclaimer consistency;
137     versioning functions introduced.
138    
139     0.1.5 2004-04-26 Server stuff moved into examples.
140    
141     0.1.4 2004-04-24 Initial auto/libtool preparation.

  ViewVC Help
Powered by ViewVC