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

Diff of /libgig/trunk/ChangeLog

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

revision 1851 by schoenebeck, Sun Mar 1 22:08:32 2009 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:    * general changes:
89      - fixed compilation with gcc 4.3      - 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:    * src/gig.cpp, src/gig.h:
94      - added partial support for MIDI rules, only the Controller      - added partial support for MIDI rules, only the Controller
# Line 9  Version CVS HEAD (?) Line 96  Version CVS HEAD (?)
96      - bugfix: removed another iterator invalidation in DeleteSample      - bugfix: removed another iterator invalidation in DeleteSample
97      - bugfix in Sample::LoadSampleData*(): reset sample read position to      - bugfix in Sample::LoadSampleData*(): reset sample read position to
98        sample start before trying to (re)load sample data from file (#82)        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:    * src/RIFF.cpp, src/RIFF.h:
104      - bugfix: saving to the same file after the file size had been      - bugfix: saving to the same file after the file size had been
105        increased made the file corrupt (#82)        increased made the file corrupt (#82)
106      - bugfix: refuse Chunk::Read() in case chunk has just been added, that      - bugfix: refuse Chunk::Read() in case chunk has just been added, that
107        is not written physically yet (#82)        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)  Version 3.2.1 (5 Dec 2007)
119    

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

  ViewVC Help
Powered by ViewVC