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

Diff of /libgig/trunk/ChangeLog

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

revision 1070 by persson, Mon Mar 5 17:42:35 2007 UTC revision 2484 by schoenebeck, Tue Dec 31 00:13:20 2013 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        - removed gcc 4.7 warnings
6        - modernized configure script
7        - removed usage of deprecated Automake variable INCLUDES
8        - added new command line tool "gigmerge"
9        - added "const" keyword to several methods
10        - added new command line tool "gig2mono"
11    
12      * SoundFont file format:
13        - initial implementation
14        - changed region lookup API to avoid malloc in RT threads
15        - fixed GetEG1Sustain which didn't return correct value
16        - bugfix: GetPan always returned -1, 0 or 1
17    
18      * src/gig.cpp:
19        - bugfix: VCF velocity dynamic range and VCF velocity curve
20          weren't saved correctly
21        - implemented File::AddDuplicateInstrument()
22        - bugfix: negative EG3 depth values were not correctly parsed or
23          saved
24        - added write support for CtrlTrigger midi rule
25        - added read and write support for Legato and Alternator midi
26          rules
27        - bugfix: sample groups were sometimes created multiple times or with
28          wrong textual group name
29        - added new method File::AddContentOf() for merging .gig files
30    
31      * src/DLS.cpp, src/DLS.h:
32        - added new method File::GetFileName()
33        - fixed minor "memory leak on exception" bug found with cppcheck
34        - added new method File::GetExtensionFile(int index)
35        - added new method File::SetFileName() allowing to call File::Save()
36          later on without passing a file name
37    
38      * src/RIFF.cpp, src/RIFF.h:
39        - bugfix: avoid calling read() with count 0 when writing a file,
40          as this may hang on some systems
41        - fixed memory leak and memory handling errors when file loading
42          fails
43        - added new method Chunk::ReadString
44        - added new method File::SetFileName() allowing to call File::Save()
45          later on without passing a file name
46        - added new method File::IsNew()
47    
48      * src/gigextract.cpp:
49        - export sample loop, unity note and fine tune with libsndfile
50    
51    Version 3.3.0 (30 Jul 2009)
52    
53      * general changes:
54        - fixed compilation with gcc 4.3
55        - fixes for building with Visual C++
56        - minor fix in configure for building DLL on Windows
57    
58      * src/gig.cpp, src/gig.h:
59        - added partial support for MIDI rules, only the Controller
60          Triggered rule is supported so far
61        - bugfix: removed another iterator invalidation in DeleteSample
62        - bugfix in Sample::LoadSampleData*(): reset sample read position to
63          sample start before trying to (re)load sample data from file (#82)
64        - bugfix: EG3 depth parameter was not saved correctly
65        - fixed crash which occured when streaming a gig sample with
66          bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
67    
68      * src/RIFF.cpp, src/RIFF.h:
69        - bugfix: saving to the same file after the file size had been
70          increased made the file corrupt (#82)
71        - bugfix: refuse Chunk::Read() in case chunk has just been added, that
72          is not written physically yet (#82)
73        - bugfix: saving to the same file after the file size had been
74          decreased sometimes also made the file corrupt!
75        - bugfix: undefined behavior (e.g. endless loop) when opening zero
76          length files, now throws a RIFF::Exception instead (fixes bug #121)
77        - bugfix: destructor for base class RIFF::Chunk accessed members
78          of derived class RIFF::File, which is bad, and caused crashes
79          when using Visual C++
80        - bugfix: files that contain zero length RIFF lists were not read
81          correctly (fixes #127) (bug was introduced 2009-03-13)
82    
83    Version 3.2.1 (5 Dec 2007)
84    
85      * src/RIFF.cpp, src/RIFF.h:
86        - avoid Windows to perform unnecessary file stream caching which would
87          decrease disk streaming performance on Windows systems otherwise
88    
89      * src/gig.cpp, src/gig.h:
90        - added File::SetAutoLoad() and File::GetAutoLoad() for allowing
91          applications to retrieve very superficial informations like amount of
92          instruments and their names in a very fast way
93    
94    Version 3.2.0 (14 Oct 2007)
95    
96      * packaging changes:
97        - added Mac OSX XCode project files (patch by Toshi Nagata)
98        - Dev-C++ (win32) project file is automatically updated with
99          the version info from configure.in
100        - the configure script can now be used in Windows with MSYS
101        - added a mainpage for the Doxygen API documentation
102    
103      * src/DLS.cpp, src/DLS.h:
104        - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
105        - fixed write support for big-endian systems
106        - improved handling of fixed length info strings - separate default
107          lengths can be specified for each INFO chunk
108        - added Resource::GenerateDLSID function
109        - write support fix: allow regions without mapped samples
110        - added method SetKeyRange() to the Region class which should be used
111          instead of setting the KeyRange member variable directly
112        - MoveRegion() method of Region class is now private
113        - added SetGain() method to Sampler class
114        - fixed crash when saving a file after a sample loop was added
115    
116      * src/gig.cpp, src/gig.h:
117        - fixed segmentation fault in the gig::File destructor sequence which
118          happened when gig::Group informations were accessed before
119        - fixed write support for big-endian systems
120        - defined lengths of a fixed set of info strings. These strings
121          are saved when the file is written, even if they are empty.
122        - added missing parameter initalizations in sample, region and
123          instrument constructors
124        - clear unused fields when saving samples and regions
125        - fixed write support bugs: v3 dimension limits and chunksize
126          weren't saved, leverage controller of type controlchange
127          couldn't be saved, group name list chunk was placed wrong,
128          dimension region chunks also placed wrong
129        - added initialization of some fixed info strings in file and
130          instrument
131        - write support: files created by libgig will now have the RIFF
132          chunks in correct order
133        - write support: two previously unknown fields in dimension
134          definition are now saved
135        - added constants for gig file versions
136        - write support: the 3crc and einf chunks are now created or
137          updated when a file is saved (3crc contains sample checksums,
138          einf contains file statistics)
139        - write support: DLSID is now generated on the file and the
140          instruments
141        - write support: improved the default values for dimension region
142          parameters
143        - more write support fixes: crossfade parameters were not saved,
144          v3 dimension limits were not correctly initialized and saved
145          when dimensions were added or deleted, v3 wave pool offsets were
146          not saved correctly
147        - write support: 24 bit samples can now be written
148        - write support: version 3 is now the default for new files
149        - more write support fixes: the 3ewg chunk is now bigger for v3,
150          dimension regions without mapped samples are now allowed, 3gnl
151          list in v3 files now always has 128 entries, several parameters
152          where incorrectly saved due to an operator precedence mistake
153        - DeleteSample now removes all references to the deleted sample
154        - AddDimension now copies all parameters from existing dimension
155          regions and also makes sure that the samplechannel dimension is
156          placed first in the list of dimensions.
157        - added method GetParent() to class 'DimensionRegion', which returns its
158          parent Region
159        - fixed Instrument::UpdateRegionKeyTable() method which did not reset
160          unused areas
161        - added various setter methods to DimensionRegion class which take care
162          of updating lookup tables / caches.
163    
164      * src/RIFF.cpp, src/RIFF.h:
165        - added File::SetByteOrder method
166        - Windows fix: saving a new file didn't work
167    
168      * src/gigdump.cpp:
169        - added some missing dimension strings
170    
171    Version 3.1.1 (24 Mar 2007)
172    
173    * packaging changes:    * packaging changes:
174      - ported to Windows using native Windows functions for file IO      - ported to Windows using native Windows functions for file IO
175        (provided Dev-C++ + mingw project file)        (provided Dev-C++ + mingw project file)
176        - only export relevant files to Doxygen API documentation
177    
178    * src/gig.cpp, src/gig.h:    * src/gig.cpp, src/gig.h:
179      - custom velocity splits now works for gig v3 files too      - custom velocity splits now works for gig v3 files too
180      - added support for custom splits points for other dimensions than      - added support for custom splits points for other dimensions than
181        velocity (gig v3 feature)        velocity (gig v3 feature)
182        - added "smart midi" and "round robin keyboard" dimensions
183        - added new method File::DeleteGroupOnly() which only deletes the given
184          group but moves all its members to another group, the other method,
185          that is File::DeleteGroup() now removes not just the group, but also
186          all the samples that belong to that group
187        - fixed crash which occured on interfering File::DeleteSample() and
188          File::GetNextSample() calls (due to iterator invalidation)
189        - fixed group names which were not saved
190        - fixed group destructor which did not remove the RIFF chunk associated
191          with the group
192        - added Instrument::MoveRegion method
193        - fixed constructor for Region, which did not initialize correctly
194          when used from Instrument::AddRegion
195        - when saving, override the gig::Regions sample reference simply by
196          the region's first dimension region's sample (avoids an exception
197          when trying to save a new instrument)
198        - fixed AddDimension() method which did not fill out all mandatory
199          dimension definition fields
200    
201      * src/DLS.cpp, src/DLS.h:
202        - added Instrument::MoveRegion method
203        - fixed software info field which was wrongly stored on instruments,
204          causing an exception when trying to save a new instrument
205    
206      * src/RIFF.cpp, src/RIFF.h:
207        - fixed RIFF::Chunk destructor which did not unregister previously
208          resized chunks, leading to a "zero size chunk" exception when
209          File::Save() was called
210        - added List::MoveSubChunk method
211    
212  Version 3.1.0 (24 Nov 2006)  Version 3.1.0 (24 Nov 2006)
213    

Legend:
Removed from v.1070  
changed lines
  Added in v.2484

  ViewVC Help
Powered by ViewVC