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

Diff of /libgig/trunk/ChangeLog

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

revision 695 by persson, Sat Jul 16 19:36:23 2005 UTC revision 2329 by schoenebeck, Mon Mar 12 14:59:10 2012 UTC
# Line 1  Line 1 
1  Version CVS HEAD (?)  Version CVS HEAD (?)
2      * general changes:
3        - minor Makefile fix for parallel make
4        - Mac OS X: link with CoreFoundation (for the UUID function)
5    
6      * SoundFont file format
7        - initial implementation
8        - changed region lookup API to avoid malloc in RT threads
9        - fixed GetEG1Sustain which didn't return correct value
10    
11      * src/gig.cpp:
12        - bugfix: VCF velocity dynamic range and VCF velocity curve
13          weren't saved correctly
14    
15      * src/DLS.cpp, src/DLS.h:
16        - added new method File::GetFileName()
17        - fixed minor "memory leak on exception" bug found with cppcheck
18        - added new method File::GetExtensionFile(int index)
19    
20      * src/RIFF.cpp, src/RIFF.h:
21        - bugfix: avoid calling read() with count 0 when writing a file,
22          as this may hang on some systems
23        - fixed memory leak and memory handling errors when file loading
24          fails
25    
26    Version 3.3.0 (30 Jul 2009)
27    
28      * general changes:
29        - fixed compilation with gcc 4.3
30        - fixes for building with Visual C++
31        - minor fix in configure for building DLL on Windows
32    
33      * src/gig.cpp, src/gig.h:
34        - added partial support for MIDI rules, only the Controller
35          Triggered rule is supported so far
36        - bugfix: removed another iterator invalidation in DeleteSample
37        - bugfix in Sample::LoadSampleData*(): reset sample read position to
38          sample start before trying to (re)load sample data from file (#82)
39        - bugfix: EG3 depth parameter was not saved correctly
40        - fixed crash which occured when streaming a gig sample with
41          bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
42    
43      * src/RIFF.cpp, src/RIFF.h:
44        - bugfix: saving to the same file after the file size had been
45          increased made the file corrupt (#82)
46        - bugfix: refuse Chunk::Read() in case chunk has just been added, that
47          is not written physically yet (#82)
48        - bugfix: saving to the same file after the file size had been
49          decreased sometimes also made the file corrupt!
50        - bugfix: undefined behavior (e.g. endless loop) when opening zero
51          length files, now throws a RIFF::Exception instead (fixes bug #121)
52        - bugfix: destructor for base class RIFF::Chunk accessed members
53          of derived class RIFF::File, which is bad, and caused crashes
54          when using Visual C++
55        - bugfix: files that contain zero length RIFF lists were not read
56          correctly (fixes #127) (bug was introduced 2009-03-13)
57    
58    Version 3.2.1 (5 Dec 2007)
59    
60      * src/RIFF.cpp, src/RIFF.h:
61        - avoid Windows to perform unnecessary file stream caching which would
62          decrease disk streaming performance on Windows systems otherwise
63    
64      * src/gig.cpp, src/gig.h:
65        - added File::SetAutoLoad() and File::GetAutoLoad() for allowing
66          applications to retrieve very superficial informations like amount of
67          instruments and their names in a very fast way
68    
69    Version 3.2.0 (14 Oct 2007)
70    
71      * packaging changes:
72        - added Mac OSX XCode project files (patch by Toshi Nagata)
73        - Dev-C++ (win32) project file is automatically updated with
74          the version info from configure.in
75        - the configure script can now be used in Windows with MSYS
76        - added a mainpage for the Doxygen API documentation
77    
78      * src/DLS.cpp, src/DLS.h:
79        - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
80        - fixed write support for big-endian systems
81        - improved handling of fixed length info strings - separate default
82          lengths can be specified for each INFO chunk
83        - added Resource::GenerateDLSID function
84        - write support fix: allow regions without mapped samples
85        - added method SetKeyRange() to the Region class which should be used
86          instead of setting the KeyRange member variable directly
87        - MoveRegion() method of Region class is now private
88        - added SetGain() method to Sampler class
89        - fixed crash when saving a file after a sample loop was added
90    
91      * src/gig.cpp, src/gig.h:
92        - fixed segmentation fault in the gig::File destructor sequence which
93          happened when gig::Group informations were accessed before
94        - fixed write support for big-endian systems
95        - defined lengths of a fixed set of info strings. These strings
96          are saved when the file is written, even if they are empty.
97        - added missing parameter initalizations in sample, region and
98          instrument constructors
99        - clear unused fields when saving samples and regions
100        - fixed write support bugs: v3 dimension limits and chunksize
101          weren't saved, leverage controller of type controlchange
102          couldn't be saved, group name list chunk was placed wrong,
103          dimension region chunks also placed wrong
104        - added initialization of some fixed info strings in file and
105          instrument
106        - write support: files created by libgig will now have the RIFF
107          chunks in correct order
108        - write support: two previously unknown fields in dimension
109          definition are now saved
110        - added constants for gig file versions
111        - write support: the 3crc and einf chunks are now created or
112          updated when a file is saved (3crc contains sample checksums,
113          einf contains file statistics)
114        - write support: DLSID is now generated on the file and the
115          instruments
116        - write support: improved the default values for dimension region
117          parameters
118        - more write support fixes: crossfade parameters were not saved,
119          v3 dimension limits were not correctly initialized and saved
120          when dimensions were added or deleted, v3 wave pool offsets were
121          not saved correctly
122        - write support: 24 bit samples can now be written
123        - write support: version 3 is now the default for new files
124        - more write support fixes: the 3ewg chunk is now bigger for v3,
125          dimension regions without mapped samples are now allowed, 3gnl
126          list in v3 files now always has 128 entries, several parameters
127          where incorrectly saved due to an operator precedence mistake
128        - DeleteSample now removes all references to the deleted sample
129        - AddDimension now copies all parameters from existing dimension
130          regions and also makes sure that the samplechannel dimension is
131          placed first in the list of dimensions.
132        - added method GetParent() to class 'DimensionRegion', which returns its
133          parent Region
134        - fixed Instrument::UpdateRegionKeyTable() method which did not reset
135          unused areas
136        - added various setter methods to DimensionRegion class which take care
137          of updating lookup tables / caches.
138    
139      * src/RIFF.cpp, src/RIFF.h:
140        - added File::SetByteOrder method
141        - Windows fix: saving a new file didn't work
142    
143      * src/gigdump.cpp:
144        - added some missing dimension strings
145    
146    Version 3.1.1 (24 Mar 2007)
147    
148      * packaging changes:
149        - ported to Windows using native Windows functions for file IO
150          (provided Dev-C++ + mingw project file)
151        - only export relevant files to Doxygen API documentation
152    
153      * src/gig.cpp, src/gig.h:
154        - custom velocity splits now works for gig v3 files too
155        - added support for custom splits points for other dimensions than
156          velocity (gig v3 feature)
157        - added "smart midi" and "round robin keyboard" dimensions
158        - added new method File::DeleteGroupOnly() which only deletes the given
159          group but moves all its members to another group, the other method,
160          that is File::DeleteGroup() now removes not just the group, but also
161          all the samples that belong to that group
162        - fixed crash which occured on interfering File::DeleteSample() and
163          File::GetNextSample() calls (due to iterator invalidation)
164        - fixed group names which were not saved
165        - fixed group destructor which did not remove the RIFF chunk associated
166          with the group
167        - added Instrument::MoveRegion method
168        - fixed constructor for Region, which did not initialize correctly
169          when used from Instrument::AddRegion
170        - when saving, override the gig::Regions sample reference simply by
171          the region's first dimension region's sample (avoids an exception
172          when trying to save a new instrument)
173        - fixed AddDimension() method which did not fill out all mandatory
174          dimension definition fields
175    
176      * src/DLS.cpp, src/DLS.h:
177        - added Instrument::MoveRegion method
178        - fixed software info field which was wrongly stored on instruments,
179          causing an exception when trying to save a new instrument
180    
181      * src/RIFF.cpp, src/RIFF.h:
182        - fixed RIFF::Chunk destructor which did not unregister previously
183          resized chunks, leading to a "zero size chunk" exception when
184          File::Save() was called
185        - added List::MoveSubChunk method
186    
187    Version 3.1.0 (24 Nov 2006)
188    
189      * packaging changes:
190        - changed deprecated copyright attribute to license;
191          added ldconfig to post-(un)install steps on libgig.spec (RPM)
192    
193      * src/gig.cpp, src/gig.h:
194        - added support for more than one set of custom velocity splits
195          inside a region (for example different velocity split levels for
196          pedal up and pedal down)
197        - sample loop parameters are now taken from the DimensionRegion
198          instead of the wave chunk
199        - keyswitching dimension is changed from split type "normal" to
200          "bit"
201        - real support for 24 bit samples - samples are not truncated to
202          16 bits anymore
203        - support for reading of ".art" files. (Merging of .art and .gig
204          files are not implemented yet.)
205        - several fixes for the write support
206        - support for sample groups added
207    
208      * src/DLS.cpp, src/DLS.h:
209        - support for reading of ".art" files
210        - removed incorrect use of memccpy in the write support (patch by
211          Jeremy Kerr)
212        - several fixes for the write support
213    
214      * src/gigextract.cpp:
215        - real support for 24 bit samples
216    
217      * src/gigdump.cpp:
218        - print global file informations
219        - print sample groups
220    
221      * general changes:
222        - added CPPUnit test cases (at the moment primarily for automatic check
223          of Gigasampler write support)
224    
225    Version 3.0.0 (28 Apr 2006)
226    
227      * general changes:
228        - added write support (that is for creating and modifying RIFF, DLS and
229          gig files)
230        - loading DLS and gig files is now much more permissive, DLS and gig
231          files are now loaded even if mandatory RIFF chunks are missing
232        - fixed some memory management errors, one of them was causing a
233          crash when a multi-file gig was deallocated
234    
235      * src/gig.cpp, src/gig.h:
236        - fixed the GetVelocityCutoff function, it wasn't always using the
237          VCFVelocityScale parameter when no cutoff controller was defined
238        - support for the gig v3 feature to have a number of dimension
239          splits not equal to a power of two
240        - added write support (highly experimental)
241    
242      * src/DLS.cpp, src/DLS.h:
243        - fixed loading of Articulation Connections (<artl> list chunks were
244          seeked instead of ordinary <artl> data chunks)
245        - added write support (highly experimental)
246    
247      * src/RIFF.cpp, src/RIFF.h:
248        - added write support
249        - Chunk::LoadChunkData() can now be called again to resize the buffer
250          after a Chunk::Resize() and before the File::Save() call to allow
251          placing the new data in the chunk's write buffer and perform the
252          resize and write operations in one rush
253    
254      * src/gigdump.cpp:
255        - fixed to show the correct amount of dimension regions instead of 32
256          (patch by James Wylder)
257    
258      * src/dlsdump.cpp:
259        - show for every region the name of the referenced sample
260        - show file name in quotation marks
261    
262    Version 2.0.2 (15 Aug 2005)
263    
264    * packaging changes:    * packaging changes:
265      - require automake (>= 1.5) for 'make -f Makefile.cvs'      - require automake (>= 1.5) for 'make -f Makefile.cvs'
# Line 10  Version CVS HEAD (?) Line 271  Version CVS HEAD (?)
271        loaded        loaded
272      - fixed the 24 bit decompression, the result should now be exact      - fixed the 24 bit decompression, the result should now be exact
273        instead of an approximation        instead of an approximation
274        - added VCFCutoffControllerInvert parameter and GetVelocityCutoff
275          function to DimensionRegion
276    
277    * src/DLS.cpp, src/DLS.h:    * src/DLS.cpp, src/DLS.h:
278      - the upper bits of the pool table indices are read (used as      - the upper bits of the pool table indices are read (used as

Legend:
Removed from v.695  
changed lines
  Added in v.2329

  ViewVC Help
Powered by ViewVC