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

Diff of /libgig/trunk/ChangeLog

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

revision 2555 by schoenebeck, Fri May 16 23:08:42 2014 UTC revision 2836 by persson, Sun Aug 23 05:57:18 2015 UTC
# Line 1  Line 1 
1  Version CVS HEAD (?)  Version SVN trunk
2      * src/gig.cpp:
3        - fixed bug in Script::SetGroup: the script chunk wasn't moved
4        - fixed compilation error with clang 3.4
5      * src/tools/akaidump.cpp, src/tools/akaiextract.cpp:
6        - improved output of non-ascii characters in usage messages
7        - fixed printf format strings
8      * src/tools/korg2gig.cpp:
9        - fixed c++11 narrowing warnings
10    
11    Version 4.0.0 (14 Jul 2015)
12    * general changes:    * general changes:
13      - minor Makefile fix for parallel make      - minor Makefile fix for parallel make
14      - 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 21  Version CVS HEAD (?)
21      - added man page for "sf2dump"      - added man page for "sf2dump"
22      - added new command line tool "korgdump" (and a man page for it)      - added new command line tool "korgdump" (and a man page for it)
23      - added new command line tool "korg2gig" (and a man page for it)      - added new command line tool "korg2gig" (and a man page for it)
24        - moved source files of command line tools to new subdir src/tools
25        - libgig.so and libakai.so files are now installed under
26          $(prefix)/lib/libgig/ by default.
27        - Header files are now installed under $(prefix)/include/libgig/ by default.
28        - Fixed various packaging issues regarding installation directories
29          (fixes #218).
30        - added new command line tool "gig2stereo" (and a man page for it)
31        - unit tests: fixed wrong return value when test suite app exits
32          (patch by Ryan Schmidt)
33        - added new command line tool "sf2extract" (and a man page for it)
34    
35    * SoundFont file format:    * SoundFont file format:
36      - initial implementation      - initial implementation
# Line 22  Version CVS HEAD (?) Line 42  Version CVS HEAD (?)
42      - initial support for sample based instruments in KORG's file format      - initial support for sample based instruments in KORG's file format
43        (.KMP and .KSF files)        (.KMP and .KSF files)
44    
45      * AKAI file format:
46        - Added Linux/POSIX ported version of libakai. Note that libakai is released
47          under LGPL terms while libgig is released under GPL terms. To handle this
48          license difference appropriately the AKAI support part is built as
49          separate DLL (.so file).
50        - Fixed Mac OSX support so that the Akai lib files and tools compile without
51          any exotic third party libraries.
52        - Fixed various compilation errors for Windows.
53        - POSIX fix: open() requires third (mode) argument if used with O_CREAT
54          (fixes #219).
55    
56    * src/gig.cpp:    * src/gig.cpp:
57      - bugfix: VCF velocity dynamic range and VCF velocity curve      - bugfix: VCF velocity dynamic range and VCF velocity curve
58        weren't saved correctly        weren't saved correctly
# Line 43  Version CVS HEAD (?) Line 74  Version CVS HEAD (?)
74      - added some more sanity checks in Region::AddDimension()      - added some more sanity checks in Region::AddDimension()
75      - added new method Region::DeleteDimensionZone(dimension_t, int)      - added new method Region::DeleteDimensionZone(dimension_t, int)
76      - added new method Region::SplitDimensionZone(dimension_t, int)      - added new method Region::SplitDimensionZone(dimension_t, int)
77        - Fixed crash caused by Region::GetDimensionRegionByValue() that happened
78          with certain velocity split sounds under certain conditions (added bound
79          constraints to prevent that)
80        - GIG FORMAT EXTENSION: added support for real-time instrument scripts.
81        - added new method Region::GetDimensionRegionIndexByValue()
82        - added new method Script::GetGroup()
83        - added new method Region::SetDimensionType()
84        - Added support for custom progress notification while saving to gig file.
85        - Bugfix: Adding a new region in between two existing regions caused the
86          new one being dropped after save operation and the gig file being tainted
87          (chunks at wrong location in the RIFF tree).
88        - Added new method Instrument::MoveTo() which allows to rearrange the order
89          of instruments within the same gig file.
90    
91    * src/DLS.cpp, src/DLS.h:    * src/DLS.cpp, src/DLS.h:
92      - added new method File::GetFileName()      - added new method File::GetFileName()
# Line 51  Version CVS HEAD (?) Line 95  Version CVS HEAD (?)
95      - added new method File::SetFileName() allowing to call File::Save()      - added new method File::SetFileName() allowing to call File::Save()
96        later on without passing a file name        later on without passing a file name
97      - added inline helper methods overlaps() for struct range_t      - added inline helper methods overlaps() for struct range_t
98        - Added support for custom progress notification while saving to DLS file.
99        - Bugfix: Adding a new region in between two existing regions caused the
100          new one being dropped after save operation and the gig file being tainted
101          (chunks at wrong location in the RIFF tree).
102    
103      * src/SF.cpp, src/SF.h:
104        - added new method Sample::ReadNoClear()
105    
106    * src/RIFF.cpp, src/RIFF.h:    * src/RIFF.cpp, src/RIFF.h:
107      - bugfix: avoid calling read() with count 0 when writing a file,      - bugfix: avoid calling read() with count 0 when writing a file,
# Line 65  Version CVS HEAD (?) Line 116  Version CVS HEAD (?)
116        than "real" RIFF files (used for KORG format support)        than "real" RIFF files (used for KORG format support)
117      - added new method Chunk::GetFile()      - added new method Chunk::GetFile()
118      - added new method Chunk::GetLayout()      - added new method Chunk::GetLayout()
119        - added 2nd, alternative method for List::MoveSubChunk(), the old 1st one
120          allows to move a subchunk within the current List, whereas the new 2nd
121          one allows to move the subchunk from the current list to another list
122        - POSIX: only assume -1 result value as error on open() calls
123        - POSIX: show operating system's error reason if opening a file failed
124        - Added support for custom progress notification while saving to RIFF file.
125        - Fixed embarrassing old bug: POSIX read() errors were never detected on
126          Chunk::Read() calls due to signment incompatible variable.
127        - Cleanup of an old DLL binary backward compatibility hack.
128    
129    * src/gigextract.cpp:    * src/gigextract.cpp:
130      - export sample loop, unity note and fine tune with libsndfile      - export sample loop, unity note and fine tune with libsndfile

Legend:
Removed from v.2555  
changed lines
  Added in v.2836

  ViewVC Help
Powered by ViewVC