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

Diff of /libgig/trunk/ChangeLog

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

revision 2675 by schoenebeck, Sun Sep 14 16:07:34 2014 UTC revision 2912 by schoenebeck, Tue May 17 14:30:10 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. A new custom RIFF chunk "FFmt" was
10          added to distinguish such monolithic large .gig files from old ones which
11          were splitted over several (.gx01, .gx02, ...) "extension" files.
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 17  Version CVS HEAD (?) Line 54  Version CVS HEAD (?)
54      - Header files are now installed under $(prefix)/include/libgig/ by default.      - Header files are now installed under $(prefix)/include/libgig/ by default.
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)
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 67  Version CVS HEAD (?) Line 108  Version CVS HEAD (?)
108      - added new method Region::GetDimensionRegionIndexByValue()      - added new method Region::GetDimensionRegionIndexByValue()
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.
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 75  Version CVS HEAD (?) Line 122  Version CVS HEAD (?)
122      - added new method File::SetFileName() allowing to call File::Save()      - added new method File::SetFileName() allowing to call File::Save()
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.
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 94  Version CVS HEAD (?) Line 148  Version CVS HEAD (?)
148        one allows to move the subchunk from the current list to another list        one allows to move the subchunk from the current list to another list
149      - POSIX: only assume -1 result value as error on open() calls      - POSIX: only assume -1 result value as error on open() calls
150      - POSIX: show operating system's error reason if opening a file failed      - POSIX: show operating system's error reason if opening a file failed
151        - Added support for custom progress notification while saving to RIFF file.
152        - Fixed embarrassing old bug: POSIX read() errors were never detected on
153          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.2675  
changed lines
  Added in v.2912

  ViewVC Help
Powered by ViewVC