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

Annotation of /jlscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2240 - (hide annotations) (download)
Tue Aug 16 14:50:01 2011 UTC (12 years, 7 months ago) by iliev
File size: 5834 byte(s)
* Cache engines' info to speed up the sampler channels' info retrieval

1 iliev 2190 CVS HEAD
2     * Added support for send effects
3 iliev 2240 * Cache engines' info to speed up the sampler channels' info retrieval
4 iliev 2190
5 iliev 1974 jlscp v0.8: 2009-08-03
6 iliev 1766 * Added support for monitoring MIDI events on sampler channels
7     and MIDI devices
8    
9 iliev 1775 * Added support for sending MIDI messages to sampler channels
10    
11     * Added support for retrieving instrument's key mapping and
12     keyswitch mapping
13    
14 iliev 1781 * Implemented option for adding instruments in separate directories in the
15     instruments DB (patch by Chris Cherrett & Andrew Williams, a bit adjusted)
16    
17 iliev 1817 * Added support for controlling the global sampler-wide limit of
18     maximum voices and disk streams
19    
20 iliev 1783 * Added support for escaping unicode characters
21    
22 iliev 1718 * API Changes
23 iliev 1728 - Client: added new methods - getMidiInstrumentEntries,
24 iliev 1766 findLostDbInstrumentFiles, setDbInstrumentFilePath, setSoTimeout
25 iliev 1728 getExtendedCharacterEscaping, setExtendedCharacterEscaping
26     - Parser: added new method - toExtendedEscapeSequence
27 iliev 1718
28 iliev 1605 * Bug fixes:
29     - null parameters and parameters with null names are now not sent
30     to LinuxSampler
31 iliev 1718 - fixed a bug in DB_INSTRUMENTS_JOB_INFO notifications
32 iliev 1728 - fixed bug #75
33 iliev 1784 - fixed bug #104
34 iliev 1605
35 iliev 1563 jlscp v0.7a: 2007-12-06
36 iliev 1542 * Added support for monitoring the total number of active disk streams
37    
38 iliev 1491 * API Changes
39 iliev 1539 - Added new interface - Instrument
40     - Client: added new methods - getFileInstrumentCount,
41     getFileInstrumentInfo, getFileInstruments
42 iliev 1494 - MidiInputDevice: added new methods - getPortsParameter,
43     setPortsParameter
44 iliev 1491 - Parser: some of the methods are now public
45    
46 iliev 1440 jlscp v0.6a: 2007-10-15
47 iliev 1307 * Added support for escape sequences
48    
49 iliev 1326 * API Changes
50 iliev 1421 - Client: added new methods - editChannelInstrument, formatInstrumentsDb
51 iliev 1326 - Client: getAudioOutputDriverInfo is now public and accepts a
52     dependences list of parameters
53     - Client: getMidiInputDriverInfo is now public and accepts a
54     dependences list of parameters
55    
56     * Bug fixes:
57     - Parameters with unset values are now not sent to LinuxSampler
58    
59 iliev 1202 jlscp v0.5a: 2007-05-24
60     * Implemented instruments database support
61     * All notifications are now processed through the LSCP event thread
62    
63 iliev 1139 jlscp v0.4a: 2007-04-02
64     * Implemented support for managing MIDI instrument maps.
65    
66     * Implemented support for managing Effect Sends.
67    
68     * Implemented print-only mode: Print-only mode means that the
69     client will just print all LSCP commands to the specified output
70     stream or to the standard output stream (java.lang.System.out) if
71     no output stream is specified, without taking any further actions.
72    
73     * API Changes
74     - Client:
75     - Device, AbstractDevice: added getActiveParameter method
76     - AudioOutputDevice: added getAllParameters method
77    
78 iliev 784 jlscp v0.3a: 2005-10-10
79     * Significantly speeded up the transfer by setting the socket
80     property TcpNoDelay to true
81    
82     * Added Mute and Solo support for sampler channels
83     - Client: setChannelMute, setChannelSolo
84     - SamplerChannel: isMuted, isMutedBySolo, isSoloChannel
85    
86     * Added support for monitoring the total number of active voices
87     - New classes for handling events: TotalVoiceCountEvent and
88     TotalVoiceCountListener
89     - Client: added getTotalVoiceCount, getTotalVoiceCountMax,
90     addTotalVoiceCountListener, removeTotalVoiceCountListener methods
91    
92     * API Changes
93     - Client: getAudioOutputDevices now returns AudioOutputDevice[]
94     instead of Integer[]; use getAudioOutputDeviceIDs instead
95     - Client: getSamplerChannels now returns SamplerChannel[]
96     instead of Integer[]; use getSamplerChannelIDs instead
97     - Client: getMidiInputDevices now returns MidiInputDevice[]
98     instead of Integer[]; use getMidiInputDeviceIDs instead
99     - SamplerChannel: getEngineName is replaced with getEngine
100     and returns SamplerEngine instance instead of String instance
101     - SamplerChannel: getInstrumentName now returns null instead of
102     "NONE" when there is no instrument loaded
103     - SamplerEngine: equals method is overrided.
104     - AbstractDevice: toString method is overrided
105    
106     * API additions
107     - Client: added getAudioOutputDeviceIDs, getMidiInputDeviceIDs,
108     getSamplerChannelIDs, enableAudioOutputDevice,
109     enableMidiInputDevice, setMidiInputPortCount
110     setAudioOutputChannelCount methods
111     - SamplerChannel: added setEngine method
112     - Device: getDeviceID method defined
113     - AbstractDevice: added getDeviceID, setDeviceID methods
114     - MidiInputDevice: added getMidiPorts, setMidiPorts,
115     getMidiPort, getMidiPortCount methods
116     - AudioOutputDevice: added getAudioChannels, setAudioChannels
117     getAudioChannel, getAudioChannelCount methods
118     - Parser: added removeQuotation method
119     - AudioOutputChannel: added getAllParameters, getNameParameter
120     setNameParameter, getMixChannelParameter, setMixChannelParameter,
121     getMixChannelDestParameter, setMixChannelDestParameter methods
122     - MidiPort: added getAllParameters, getNameParameter,
123     setNameParameter methods
124    
125     * Examples changes due to changed methods in Client class
126    
127 iliev 672 jlscp v0.2a: 2005-06-14
128     * Added ant script to automate the build process
129     * Added Package Versioning
130     * Added LSCP protocol version compatibility check on connect
131     * getEngines() in Client class now returns SamplerEngine[] instance
132     instead of String[] instance
133     * getAudioOutputDrivers() in Client class now returns
134     AudioOutputDriver[] instance instead of String[] instance
135     * getMidiInputDrivers() in Client class now returns
136     MidiInputDriver[] instance instead of String[] instance
137     * The following methods in Client class are now private:
138 iliev 784 - getEngineInfo
139     - getAudioOutputDriverInfo
140     - getMidiInputDriverInfo
141 iliev 672 * Examples changes due to the changed methods in Client class
142     * Examples' class files moved from examples to examples/build directory
143     * Little documentation changes
144    

  ViewVC Help
Powered by ViewVC