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

Diff of /libgig/trunk/ChangeLog

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

revision 2685 by schoenebeck, Sat Jan 3 21:44:42 2015 UTC revision 2913 by schoenebeck, Tue May 17 15:19:33 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    
5      * src/gig.cpp, src/gig.h:
6        - fixed bug in Script::SetGroup: the script chunk wasn't moved
7        - fixed compilation error with clang 3.4
8        - GIG FORMAT EXTENSION: added support for saving gig file larger than 4 GB
9          as one single monolithic gig file. In case .gig file is >= 2GB expect a
10          large monolithic file, otherwise if .gig file is < 2 GB check for
11          "extension" files (.gx01, .gx02, ...) instead.
12    
13      * src/DLS.cpp, src/DLS.h:
14        - Sample: wave pool offsets are now 64 bits (to allow support for files
15          larger than 4 GB).
16          
17      * src/RIFF.cpp, src/RIFF.h:
18        - added support for RIFF files larger than 4 GB, by default the required
19          internal RIFF file offset size is automatically detected (that is RIFF
20          files < 4 GB automatically use 32 bit offsets while files >= 4 GB
21          automatically use 64 bit offsets), a particular offset size can be forced
22          with a new option added to the RIFF File constructor though
23        - when saving a modified, grown RIFF file, the temporary file size during
24          Save() operation will no longer be larger than the final grown file size
25    
26      * src/tools/akaidump.cpp, src/tools/akaiextract.cpp:
27        - improved output of non-ascii characters in usage messages
28        - fixed printf format strings
29    
30      * src/tools/korg2gig.cpp:
31        - fixed c++11 narrowing warnings
32        - fixed fine tuning which was not translated at all
33    
34      * packaging changes:
35        - Automake: set environment variable GCC_COLORS=auto to allow GCC to
36          auto detect whether it (sh/c)ould output its messages in color.
37    
38    Version 4.0.0 (14 Jul 2015)
39    * general changes:    * general changes:
40      - minor Makefile fix for parallel make      - minor Makefile fix for parallel make
41      - Mac OS X: link with CoreFoundation (for the UUID function)      - Mac OS X: link with CoreFoundation (for the UUID function)
# Line 18  Version CVS HEAD (?) Line 55  Version CVS HEAD (?)
55      - Fixed various packaging issues regarding installation directories      - Fixed various packaging issues regarding installation directories
56        (fixes #218).        (fixes #218).
57      - added new command line tool "gig2stereo" (and a man page for it)      - added new command line tool "gig2stereo" (and a man page for it)
58        - unit tests: fixed wrong return value when test suite app exits
59          (patch by Ryan Schmidt)
60        - added new command line tool "sf2extract" (and a man page for it)
61    
62    * SoundFont file format:    * SoundFont file format:
63      - initial implementation      - initial implementation
# Line 69  Version CVS HEAD (?) Line 109  Version CVS HEAD (?)
109      - added new method Script::GetGroup()      - added new method Script::GetGroup()
110      - added new method Region::SetDimensionType()      - added new method Region::SetDimensionType()
111      - Added support for custom progress notification while saving to gig file.      - Added support for custom progress notification while saving to gig file.
112        - Bugfix: Adding a new region in between two existing regions caused the
113          new one being dropped after save operation and the gig file being tainted
114          (chunks at wrong location in the RIFF tree).
115        - Added new method Instrument::MoveTo() which allows to rearrange the order
116          of instruments within the same gig file.
117    
118    * src/DLS.cpp, src/DLS.h:    * src/DLS.cpp, src/DLS.h:
119      - added new method File::GetFileName()      - added new method File::GetFileName()
# Line 78  Version CVS HEAD (?) Line 123  Version CVS HEAD (?)
123        later on without passing a file name        later on without passing a file name
124      - added inline helper methods overlaps() for struct range_t      - added inline helper methods overlaps() for struct range_t
125      - Added support for custom progress notification while saving to DLS file.      - Added support for custom progress notification while saving to DLS file.
126        - Bugfix: Adding a new region in between two existing regions caused the
127          new one being dropped after save operation and the gig file being tainted
128          (chunks at wrong location in the RIFF tree).
129    
130      * src/SF.cpp, src/SF.h:
131        - added new method Sample::ReadNoClear()
132    
133    * src/RIFF.cpp, src/RIFF.h:    * src/RIFF.cpp, src/RIFF.h:
134      - bugfix: avoid calling read() with count 0 when writing a file,      - bugfix: avoid calling read() with count 0 when writing a file,
# Line 100  Version CVS HEAD (?) Line 151  Version CVS HEAD (?)
151      - Added support for custom progress notification while saving to RIFF file.      - Added support for custom progress notification while saving to RIFF file.
152      - Fixed embarrassing old bug: POSIX read() errors were never detected on      - Fixed embarrassing old bug: POSIX read() errors were never detected on
153        Chunk::Read() calls due to signment incompatible variable.        Chunk::Read() calls due to signment incompatible variable.
154        - Cleanup of an old DLL binary backward compatibility hack.
155    
156    * src/gigextract.cpp:    * src/gigextract.cpp:
157      - export sample loop, unity note and fine tune with libsndfile      - export sample loop, unity note and fine tune with libsndfile

Legend:
Removed from v.2685  
changed lines
  Added in v.2913

  ViewVC Help
Powered by ViewVC