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

Annotation of /jlscp/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1817 - (hide annotations) (download)
Wed Dec 24 16:55:54 2008 UTC (15 years, 3 months ago) by iliev
File size: 5702 byte(s)
* Added support for controlling the global sampler-wide limit of
  maximum voices and disk streams

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

  ViewVC Help
Powered by ViewVC