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

Diff of /libgig/trunk/ChangeLog

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

revision 1524 by schoenebeck, Sun Nov 25 17:29:37 2007 UTC revision 2547 by schoenebeck, Tue May 13 11:17:24 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    
15      * SoundFont file format:
16        - initial implementation
17        - changed region lookup API to avoid malloc in RT threads
18        - fixed GetEG1Sustain which didn't return correct value
19        - bugfix: GetPan always returned -1, 0 or 1
20    
21      * KORG file format:
22        - initial support for sample based instruments in KORG's file format
23          (.KMP and .KSF files)
24    
25      * src/gig.cpp:
26        - bugfix: VCF velocity dynamic range and VCF velocity curve
27          weren't saved correctly
28        - implemented File::AddDuplicateInstrument()
29        - bugfix: negative EG3 depth values were not correctly parsed or
30          saved
31        - added write support for CtrlTrigger midi rule
32        - added read and write support for Legato and Alternator midi
33          rules
34        - bugfix: sample groups were sometimes created multiple times or with
35          wrong textual group name
36        - added new method File::AddContentOf() for merging .gig files
37        - GIG FORMAT EXTENSION: added additional MIDI controllers for leverage
38          controller types (only works with LinuxSampler & gigedit, will not
39          work with Gigasampler/GigaStudio)
40        - added new method File::GetGroup(String name) for getting group by name
41        - added new method Region::GetDimensionDefinition(dimension_t type)
42        - bugfix: don't alter region pointer in DimensionRegion::CopyAssign()
43        - added some more sanity checks in Region::AddDimension()
44    
45      * src/DLS.cpp, src/DLS.h:
46        - added new method File::GetFileName()
47        - fixed minor "memory leak on exception" bug found with cppcheck
48        - added new method File::GetExtensionFile(int index)
49        - added new method File::SetFileName() allowing to call File::Save()
50          later on without passing a file name
51        - added inline helper methods overlaps() for struct range_t
52    
53      * src/RIFF.cpp, src/RIFF.h:
54        - bugfix: avoid calling read() with count 0 when writing a file,
55          as this may hang on some systems
56        - fixed memory leak and memory handling errors when file loading
57          fails
58        - added new method Chunk::ReadString
59        - added new method File::SetFileName() allowing to call File::Save()
60          later on without passing a file name
61        - added new method File::IsNew()
62        - added support for loading RIFF-like files with a bit different layout
63          than "real" RIFF files (used for KORG format support)
64        - added new method Chunk::GetFile()
65        - added new method Chunk::GetLayout()
66    
67      * src/gigextract.cpp:
68        - export sample loop, unity note and fine tune with libsndfile
69    
70      * src/riftree.cpp:
71        - added more command line options for being able to also dump other kind
72          of file formats similar but not equal to the RIFF format
73    
74    Version 3.3.0 (30 Jul 2009)
75    
76      * general changes:
77        - fixed compilation with gcc 4.3
78        - fixes for building with Visual C++
79        - minor fix in configure for building DLL on Windows
80    
81      * src/gig.cpp, src/gig.h:
82        - added partial support for MIDI rules, only the Controller
83          Triggered rule is supported so far
84        - bugfix: removed another iterator invalidation in DeleteSample
85        - bugfix in Sample::LoadSampleData*(): reset sample read position to
86          sample start before trying to (re)load sample data from file (#82)
87        - bugfix: EG3 depth parameter was not saved correctly
88        - fixed crash which occured when streaming a gig sample with
89          bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
90    
91      * src/RIFF.cpp, src/RIFF.h:
92        - bugfix: saving to the same file after the file size had been
93          increased made the file corrupt (#82)
94        - bugfix: refuse Chunk::Read() in case chunk has just been added, that
95          is not written physically yet (#82)
96        - bugfix: saving to the same file after the file size had been
97          decreased sometimes also made the file corrupt!
98        - bugfix: undefined behavior (e.g. endless loop) when opening zero
99          length files, now throws a RIFF::Exception instead (fixes bug #121)
100        - bugfix: destructor for base class RIFF::Chunk accessed members
101          of derived class RIFF::File, which is bad, and caused crashes
102          when using Visual C++
103        - bugfix: files that contain zero length RIFF lists were not read
104          correctly (fixes #127) (bug was introduced 2009-03-13)
105    
106    Version 3.2.1 (5 Dec 2007)
107    
108    * src/RIFF.cpp, src/RIFF.h:    * src/RIFF.cpp, src/RIFF.h:
109      - avoid Windows to perform unnecessary file stream caching which would      - avoid Windows to perform unnecessary file stream caching which would

Legend:
Removed from v.1524  
changed lines
  Added in v.2547

  ViewVC Help
Powered by ViewVC