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

Diff of /libgig/trunk/ChangeLog

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

revision 2564 by schoenebeck, Tue May 20 12:15:05 2014 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 11  Version CVS HEAD (?) Line 48  Version CVS HEAD (?)
48      - added man page for "sf2dump"      - added man page for "sf2dump"
49      - added new command line tool "korgdump" (and a man page for it)      - added new command line tool "korgdump" (and a man page for it)
50      - added new command line tool "korg2gig" (and a man page for it)      - added new command line tool "korg2gig" (and a man page for it)
51        - moved source files of command line tools to new subdir src/tools
52        - libgig.so and libakai.so files are now installed under
53          $(prefix)/lib/libgig/ by default.
54        - Header files are now installed under $(prefix)/include/libgig/ by default.
55        - Fixed various packaging issues regarding installation directories
56          (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 22  Version CVS HEAD (?) Line 69  Version CVS HEAD (?)
69      - initial support for sample based instruments in KORG's file format      - initial support for sample based instruments in KORG's file format
70        (.KMP and .KSF files)        (.KMP and .KSF files)
71    
72      * AKAI file format:
73        - Added Linux/POSIX ported version of libakai. Note that libakai is released
74          under LGPL terms while libgig is released under GPL terms. To handle this
75          license difference appropriately the AKAI support part is built as
76          separate DLL (.so file).
77        - Fixed Mac OSX support so that the Akai lib files and tools compile without
78          any exotic third party libraries.
79        - Fixed various compilation errors for Windows.
80        - POSIX fix: open() requires third (mode) argument if used with O_CREAT
81          (fixes #219).
82    
83    * src/gig.cpp:    * src/gig.cpp:
84      - bugfix: VCF velocity dynamic range and VCF velocity curve      - bugfix: VCF velocity dynamic range and VCF velocity curve
85        weren't saved correctly        weren't saved correctly
# Line 46  Version CVS HEAD (?) Line 104  Version CVS HEAD (?)
104      - Fixed crash caused by Region::GetDimensionRegionByValue() that happened      - Fixed crash caused by Region::GetDimensionRegionByValue() that happened
105        with certain velocity split sounds under certain conditions (added bound        with certain velocity split sounds under certain conditions (added bound
106        constraints to prevent that)        constraints to prevent that)
107        - GIG FORMAT EXTENSION: added support for real-time instrument scripts.
108        - added new method Region::GetDimensionRegionIndexByValue()
109        - added new method Script::GetGroup()
110        - 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 54  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 68  Version CVS HEAD (?) Line 143  Version CVS HEAD (?)
143        than "real" RIFF files (used for KORG format support)        than "real" RIFF files (used for KORG format support)
144      - added new method Chunk::GetFile()      - added new method Chunk::GetFile()
145      - added new method Chunk::GetLayout()      - added new method Chunk::GetLayout()
146        - added 2nd, alternative method for List::MoveSubChunk(), the old 1st one
147          allows to move a subchunk within the current List, whereas the new 2nd
148          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
150        - 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.2564  
changed lines
  Added in v.2913

  ViewVC Help
Powered by ViewVC