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

Diff of /libgig/trunk/ChangeLog

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

revision 1247 by persson, Fri Jun 22 09:59:57 2007 UTC revision 2572 by schoenebeck, Thu May 22 12:14:04 2014 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        - added man page for "sf2dump"
12        - added new command line tool "korgdump" (and a man page for it)
13        - added new command line tool "korg2gig" (and a man page for it)
14        - moved source files of command line tools to new subdir src/tools
15    
16      * SoundFont file format:
17        - initial implementation
18        - changed region lookup API to avoid malloc in RT threads
19        - fixed GetEG1Sustain which didn't return correct value
20        - bugfix: GetPan always returned -1, 0 or 1
21    
22      * KORG file format:
23        - initial support for sample based instruments in KORG's file format
24          (.KMP and .KSF files)
25    
26      * AKAI file format:
27        - Added Linux/POSIX ported version of libakai. Note that libakai is released
28          under LGPL terms while libgig is released under GPL terms. To handle this
29          license difference appropriately the AKAI support part is built as
30          separate DLL (.so file).
31    
32      * src/gig.cpp:
33        - bugfix: VCF velocity dynamic range and VCF velocity curve
34          weren't saved correctly
35        - implemented File::AddDuplicateInstrument()
36        - bugfix: negative EG3 depth values were not correctly parsed or
37          saved
38        - added write support for CtrlTrigger midi rule
39        - added read and write support for Legato and Alternator midi
40          rules
41        - bugfix: sample groups were sometimes created multiple times or with
42          wrong textual group name
43        - added new method File::AddContentOf() for merging .gig files
44        - GIG FORMAT EXTENSION: added additional MIDI controllers for leverage
45          controller types (only works with LinuxSampler & gigedit, will not
46          work with Gigasampler/GigaStudio)
47        - added new method File::GetGroup(String name) for getting group by name
48        - added new method Region::GetDimensionDefinition(dimension_t type)
49        - bugfix: don't alter region pointer in DimensionRegion::CopyAssign()
50        - added some more sanity checks in Region::AddDimension()
51        - added new method Region::DeleteDimensionZone(dimension_t, int)
52        - added new method Region::SplitDimensionZone(dimension_t, int)
53        - Fixed crash caused by Region::GetDimensionRegionByValue() that happened
54          with certain velocity split sounds under certain conditions (added bound
55          constraints to prevent that)
56    
57      * src/DLS.cpp, src/DLS.h:
58        - added new method File::GetFileName()
59        - fixed minor "memory leak on exception" bug found with cppcheck
60        - added new method File::GetExtensionFile(int index)
61        - added new method File::SetFileName() allowing to call File::Save()
62          later on without passing a file name
63        - added inline helper methods overlaps() for struct range_t
64    
65      * src/RIFF.cpp, src/RIFF.h:
66        - bugfix: avoid calling read() with count 0 when writing a file,
67          as this may hang on some systems
68        - fixed memory leak and memory handling errors when file loading
69          fails
70        - added new method Chunk::ReadString
71        - added new method File::SetFileName() allowing to call File::Save()
72          later on without passing a file name
73        - added new method File::IsNew()
74        - added support for loading RIFF-like files with a bit different layout
75          than "real" RIFF files (used for KORG format support)
76        - added new method Chunk::GetFile()
77        - added new method Chunk::GetLayout()
78    
79      * src/gigextract.cpp:
80        - export sample loop, unity note and fine tune with libsndfile
81    
82      * src/riftree.cpp:
83        - added more command line options for being able to also dump other kind
84          of file formats similar but not equal to the RIFF format
85    
86    Version 3.3.0 (30 Jul 2009)
87    
88      * general changes:
89        - fixed compilation with gcc 4.3
90        - fixes for building with Visual C++
91        - minor fix in configure for building DLL on Windows
92    
93      * src/gig.cpp, src/gig.h:
94        - added partial support for MIDI rules, only the Controller
95          Triggered rule is supported so far
96        - bugfix: removed another iterator invalidation in DeleteSample
97        - bugfix in Sample::LoadSampleData*(): reset sample read position to
98          sample start before trying to (re)load sample data from file (#82)
99        - bugfix: EG3 depth parameter was not saved correctly
100        - fixed crash which occured when streaming a gig sample with
101          bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
102    
103      * src/RIFF.cpp, src/RIFF.h:
104        - bugfix: saving to the same file after the file size had been
105          increased made the file corrupt (#82)
106        - bugfix: refuse Chunk::Read() in case chunk has just been added, that
107          is not written physically yet (#82)
108        - bugfix: saving to the same file after the file size had been
109          decreased sometimes also made the file corrupt!
110        - bugfix: undefined behavior (e.g. endless loop) when opening zero
111          length files, now throws a RIFF::Exception instead (fixes bug #121)
112        - bugfix: destructor for base class RIFF::Chunk accessed members
113          of derived class RIFF::File, which is bad, and caused crashes
114          when using Visual C++
115        - bugfix: files that contain zero length RIFF lists were not read
116          correctly (fixes #127) (bug was introduced 2009-03-13)
117    
118    Version 3.2.1 (5 Dec 2007)
119    
120      * src/RIFF.cpp, src/RIFF.h:
121        - avoid Windows to perform unnecessary file stream caching which would
122          decrease disk streaming performance on Windows systems otherwise
123    
124      * src/gig.cpp, src/gig.h:
125        - added File::SetAutoLoad() and File::GetAutoLoad() for allowing
126          applications to retrieve very superficial informations like amount of
127          instruments and their names in a very fast way
128    
129    Version 3.2.0 (14 Oct 2007)
130    
131    * packaging changes:    * packaging changes:
132      - added Mac OSX XCode project files (patch by Toshi Nagata)      - added Mac OSX XCode project files (patch by Toshi Nagata)
133      - Dev-C++ (win32) project file is automatically updated with      - Dev-C++ (win32) project file is automatically updated with
134        the version info from configure.in        the version info from configure.in
135        - the configure script can now be used in Windows with MSYS
136        - added a mainpage for the Doxygen API documentation
137    
138    * src/DLS.cpp, src/DLS.h:    * src/DLS.cpp, src/DLS.h:
139      - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods      - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
# Line 11  Version CVS HEAD (?) Line 141  Version CVS HEAD (?)
141      - improved handling of fixed length info strings - separate default      - improved handling of fixed length info strings - separate default
142        lengths can be specified for each INFO chunk        lengths can be specified for each INFO chunk
143      - added Resource::GenerateDLSID function      - added Resource::GenerateDLSID function
144        - write support fix: allow regions without mapped samples
145        - added method SetKeyRange() to the Region class which should be used
146          instead of setting the KeyRange member variable directly
147        - MoveRegion() method of Region class is now private
148        - added SetGain() method to Sampler class
149        - fixed crash when saving a file after a sample loop was added
150    
151    * src/gig.cpp, src/gig.h:    * src/gig.cpp, src/gig.h:
152      - fixed segmentation fault in the gig::File destructor sequence which      - fixed segmentation fault in the gig::File destructor sequence which
# Line 43  Version CVS HEAD (?) Line 179  Version CVS HEAD (?)
179        v3 dimension limits were not correctly initialized and saved        v3 dimension limits were not correctly initialized and saved
180        when dimensions were added or deleted, v3 wave pool offsets were        when dimensions were added or deleted, v3 wave pool offsets were
181        not saved correctly        not saved correctly
182        - write support: 24 bit samples can now be written
183        - write support: version 3 is now the default for new files
184        - more write support fixes: the 3ewg chunk is now bigger for v3,
185          dimension regions without mapped samples are now allowed, 3gnl
186          list in v3 files now always has 128 entries, several parameters
187          where incorrectly saved due to an operator precedence mistake
188        - DeleteSample now removes all references to the deleted sample
189        - AddDimension now copies all parameters from existing dimension
190          regions and also makes sure that the samplechannel dimension is
191          placed first in the list of dimensions.
192        - added method GetParent() to class 'DimensionRegion', which returns its
193          parent Region
194        - fixed Instrument::UpdateRegionKeyTable() method which did not reset
195          unused areas
196        - added various setter methods to DimensionRegion class which take care
197          of updating lookup tables / caches.
198    
199    * src/RIFF.cpp, src/RIFF.h:    * src/RIFF.cpp, src/RIFF.h:
200      - added File::SetByteOrder method      - added File::SetByteOrder method
201        - Windows fix: saving a new file didn't work
202    
203      * src/gigdump.cpp:
204        - added some missing dimension strings
205    
206  Version 3.1.1 (24 Mar 2007)  Version 3.1.1 (24 Mar 2007)
207    

Legend:
Removed from v.1247  
changed lines
  Added in v.2572

  ViewVC Help
Powered by ViewVC