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

Diff of /libgig/trunk/ChangeLog

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

revision 2573 by schoenebeck, Thu May 22 15:17:09 2014 UTC revision 2989 by schoenebeck, Sat Sep 24 14:00:46 2016 UTC
# Line 1  Line 1 
1  Version CVS HEAD (?)  Version SVN trunk
2      * general changes:
3        - removed 2 GB limitation when loading a gig or DLS file
4        - using now native integer size where appropriate
5    
6      * src/gig.cpp, src/gig.h:
7        - fixed bug in Script::SetGroup: the script chunk wasn't moved
8        - fixed compilation error with clang 3.4
9        - GIG FORMAT EXTENSION: added support for saving gig file larger than 4 GB
10          as one single monolithic gig file. In case .gig file is >= 2GB expect a
11          large monolithic file, otherwise if .gig file is < 2 GB check for
12          "extension" files (.gx01, .gx02, ...) instead.
13        - fixed Region::UpdateUpdateVelocityTable() which did not work correctly
14          if there were dimensions after the velocity dimension: it only created
15          valid velocity tables for cases of dimensions lower than the velocity
16          dimension.
17        - added new method Sample::VerifyWaveData() which allows to check whether
18          a sample had been damaged for some reason
19        - Fix: samples' CRC checksums were damaged on file structure changes.
20        - Fix: samples' CRC checksums were misordered when a Sample was deleted.
21        - Added new method Sample::GetWaveDataCRC32Checksum().
22    
23      * src/DLS.cpp, src/DLS.h:
24        - Sample: wave pool offsets are now 64 bits (to allow support for files
25          larger than 4 GB).
26          
27      * src/RIFF.cpp, src/RIFF.h:
28        - added support for RIFF files larger than 4 GB, by default the required
29          internal RIFF file offset size is automatically detected (that is RIFF
30          files < 4 GB automatically use 32 bit offsets while files >= 4 GB
31          automatically use 64 bit offsets), a particular offset size can be forced
32          with a new option added to the RIFF File constructor though
33        - when saving a modified, grown RIFF file, the temporary file size during
34          Save() operation will no longer be larger than the final grown file size
35    
36      * src/tools/akaidump.cpp, src/tools/akaiextract.cpp:
37        - improved output of non-ascii characters in usage messages
38        - fixed printf format strings
39    
40      * src/tools/korg2gig.cpp:
41        - fixed c++11 narrowing warnings
42        - fixed fine tuning which was not translated at all
43    
44      * src/tools/gigdump.cpp:
45        - additionally print VelocityUpperLimit and DimensionUpperLimits of all
46          dimension regions
47        - additionally print RIFF chunk file offset and RIFF chunk size of sample
48          data
49        - added and implemented new parameter "--verify" which allows to check
50          the raw wave form data integrity of all samples
51        - added and implemented new parameter "--rebuild-checksums" which allows
52          to recalculate the CRC32 checksum of all samples' raw wave data and
53          rebuilding the gig file's global checksum table (i.e. in case the
54          file's checksum table was damaged)
55        - print samples' CRC32 checksums
56    
57      * src/tools/gigextract.cpp:
58        - Fix: if sample name contains a path separator (slash or backslash) then
59          replace them by a minus sign to avoid file system issues.
60    
61      * packaging changes:
62        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
63          auto detect whether it (sh/c)ould output its messages in color.
64    
65    Version 4.0.0 (14 Jul 2015)
66    * general changes:    * general changes:
67      - minor Makefile fix for parallel make      - minor Makefile fix for parallel make
68      - Mac OS X: link with CoreFoundation (for the UUID function)      - Mac OS X: link with CoreFoundation (for the UUID function)
# Line 12  Version CVS HEAD (?) Line 76  Version CVS HEAD (?)
76      - added new command line tool "korgdump" (and a man page for it)      - added new command line tool "korgdump" (and a man page for it)
77      - added new command line tool "korg2gig" (and a man page for it)      - added new command line tool "korg2gig" (and a man page for it)
78      - moved source files of command line tools to new subdir src/tools      - moved source files of command line tools to new subdir src/tools
79        - libgig.so and libakai.so files are now installed under
80          $(prefix)/lib/libgig/ by default.
81        - Header files are now installed under $(prefix)/include/libgig/ by default.
82        - Fixed various packaging issues regarding installation directories
83          (fixes #218).
84        - added new command line tool "gig2stereo" (and a man page for it)
85        - unit tests: fixed wrong return value when test suite app exits
86          (patch by Ryan Schmidt)
87        - added new command line tool "sf2extract" (and a man page for it)
88    
89    * SoundFont file format:    * SoundFont file format:
90      - initial implementation      - initial implementation
# Line 30  Version CVS HEAD (?) Line 103  Version CVS HEAD (?)
103        separate DLL (.so file).        separate DLL (.so file).
104      - Fixed Mac OSX support so that the Akai lib files and tools compile without      - Fixed Mac OSX support so that the Akai lib files and tools compile without
105        any exotic third party libraries.        any exotic third party libraries.
106        - Fixed various compilation errors for Windows.
107        - POSIX fix: open() requires third (mode) argument if used with O_CREAT
108          (fixes #219).
109    
110    * src/gig.cpp:    * src/gig.cpp:
111      - bugfix: VCF velocity dynamic range and VCF velocity curve      - bugfix: VCF velocity dynamic range and VCF velocity curve
# Line 55  Version CVS HEAD (?) Line 131  Version CVS HEAD (?)
131      - Fixed crash caused by Region::GetDimensionRegionByValue() that happened      - Fixed crash caused by Region::GetDimensionRegionByValue() that happened
132        with certain velocity split sounds under certain conditions (added bound        with certain velocity split sounds under certain conditions (added bound
133        constraints to prevent that)        constraints to prevent that)
134        - GIG FORMAT EXTENSION: added support for real-time instrument scripts.
135        - added new method Region::GetDimensionRegionIndexByValue()
136        - added new method Script::GetGroup()
137        - added new method Region::SetDimensionType()
138        - Added support for custom progress notification while saving to gig file.
139        - Bugfix: Adding a new region in between two existing regions caused the
140          new one being dropped after save operation and the gig file being tainted
141          (chunks at wrong location in the RIFF tree).
142        - Added new method Instrument::MoveTo() which allows to rearrange the order
143          of instruments within the same gig file.
144    
145    * src/DLS.cpp, src/DLS.h:    * src/DLS.cpp, src/DLS.h:
146      - added new method File::GetFileName()      - added new method File::GetFileName()
# Line 63  Version CVS HEAD (?) Line 149  Version CVS HEAD (?)
149      - added new method File::SetFileName() allowing to call File::Save()      - added new method File::SetFileName() allowing to call File::Save()
150        later on without passing a file name        later on without passing a file name
151      - added inline helper methods overlaps() for struct range_t      - added inline helper methods overlaps() for struct range_t
152        - Added support for custom progress notification while saving to DLS file.
153        - Bugfix: Adding a new region in between two existing regions caused the
154          new one being dropped after save operation and the gig file being tainted
155          (chunks at wrong location in the RIFF tree).
156    
157      * src/SF.cpp, src/SF.h:
158        - added new method Sample::ReadNoClear()
159    
160    * src/RIFF.cpp, src/RIFF.h:    * src/RIFF.cpp, src/RIFF.h:
161      - bugfix: avoid calling read() with count 0 when writing a file,      - bugfix: avoid calling read() with count 0 when writing a file,
# Line 77  Version CVS HEAD (?) Line 170  Version CVS HEAD (?)
170        than "real" RIFF files (used for KORG format support)        than "real" RIFF files (used for KORG format support)
171      - added new method Chunk::GetFile()      - added new method Chunk::GetFile()
172      - added new method Chunk::GetLayout()      - added new method Chunk::GetLayout()
173        - added 2nd, alternative method for List::MoveSubChunk(), the old 1st one
174          allows to move a subchunk within the current List, whereas the new 2nd
175          one allows to move the subchunk from the current list to another list
176        - POSIX: only assume -1 result value as error on open() calls
177        - POSIX: show operating system's error reason if opening a file failed
178        - Added support for custom progress notification while saving to RIFF file.
179        - Fixed embarrassing old bug: POSIX read() errors were never detected on
180          Chunk::Read() calls due to signment incompatible variable.
181        - Cleanup of an old DLL binary backward compatibility hack.
182    
183    * src/gigextract.cpp:    * src/gigextract.cpp:
184      - export sample loop, unity note and fine tune with libsndfile      - export sample loop, unity note and fine tune with libsndfile

Legend:
Removed from v.2573  
changed lines
  Added in v.2989

  ViewVC Help
Powered by ViewVC