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

Annotation of /libgig/trunk/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3921 - (hide annotations) (download)
Mon Jun 14 09:28:04 2021 UTC (2 years, 10 months ago) by schoenebeck
File size: 41264 byte(s)
* RIFF: Use GetSubListAt() instead of GetFirstSubList() /
  GetNextSubList() in entire RIFF.cpp file.

* Bumped version (4.3.0.svn11).

1 schoenebeck 3900 Version SVN trunk (?)
2    
3 schoenebeck 3903 * src/gig.cpp, src/gig.h:
4     - Region::DeleteDimensionZone(): Fix clang sanatizer warning.
5 schoenebeck 3904 - Region::SplitDimensionZone(): Fix clang sanatizer warning.
6 schoenebeck 3913 - Sample: Fix unnecessary RAM consumption in case of 24 bit samples
7     (InternalDecompressionBuffer is no longer needed for 24 bit samples since
8     SVN r902 / libgig release 3.1.0).
9 schoenebeck 3903
10 schoenebeck 3900 * src/SF.cpp, src/SF.h:
11     - File::DeleteInstrument(): Fix clang sanatizer warning.
12    
13 schoenebeck 3901 * src/RIFF.cpp, src/RIFF.h:
14     - Chunk::LoadChunkData(): Fix clang sanatizer warning.
15 schoenebeck 3902 - List::LoadSubChunks(): Fix potential garbage data access if reading a
16     RIFF chunk ID failed.
17 schoenebeck 3915 - Added methods File::IsIOPerThread() and File::SetIOPerThread(bool); the
18     latter allows to automatically use a separate file I/O stream state for
19     each thread.
20 schoenebeck 3920 - Added method List::GetSubChunkAt().
21     - Added method List::GetSubListAt().
22     - Marked methods List::GetFirstSubChunk(), List::GetNextSubChunk(),
23     List::GetFirstSubList() and List::GetNextSubList() as deprecated.
24 schoenebeck 3921 - Use GetSubListAt() instead of GetFirstSubList() / GetNextSubList() in
25     entire RIFF.cpp file.
26 schoenebeck 3901
27 schoenebeck 3878 Version 4.3.0 (9 May 2021)
28 schoenebeck 3623
29     * general changes:
30     - Require at least a C++11 compliant compiler.
31 schoenebeck 3723 - Require some UUID generating function by underlying system.
32 schoenebeck 3623
33     * src/gig.cpp, src/gig.h:
34     - GIG FORMAT EXTENSION: Added attributes DimensionRegion::LFO1WaveForm,
35     DimensionRegion::LFO2WaveForm and DimensionRegion::LFO3WaveForm, which
36     allow to define override LFOs' wave form (e.g. saw or square instead of
37     the default wave form which was always sine in the original
38     Gigasampler/GigaStudio software).
39     - GIG FORMAT EXTENSION: Added attributes DimensionRegion::LFO1Phase,
40     DimensionRegion::LFO2Phase and DimensionRegion::LFO3Phase, which allow to
41     move the start point horizontally of the LFOs' waves (0�� ... 360��).
42     - GIG FORMAT EXTENSION: Added attribute DimensionRegion::LFO3FlipPhase
43     (the original Gigasampler/GigaStudio software only had that flip phase
44     option for LFO1 and LFO2).
45 schoenebeck 3710 - Added methods DimensionRegion::UsesAnyGigFormatExtension(),
46     Region::UsesAnyGigFormatExtension(),
47     Instrument::UsesAnyGigFormatExtension() and
48     File::UsesAnyGigFormatExtension() (however only as private methods yet,
49     see comments on methods why).
50 schoenebeck 3645 - GIG FORMAT EXTENSION: added LinuxSampler specific filter type
51     implementations to enum vcf_type_t: vcf_type_lowpass_1p,
52     vcf_type_lowpass_2p, vcf_type_lowpass_4p, vcf_type_lowpass_6p,
53     vcf_type_highpass_1p, vcf_type_highpass_2p, vcf_type_highpass_4p,
54     vcf_type_highpass_6p, vcf_type_bandpass_2p, vcf_type_bandreject_2p.
55 schoenebeck 3656 - Compatibility fix: GigaStudio always expects 128 '3gnm' RIFF chunks
56     (patch by Ivan Maguidhir).
57 schoenebeck 3657 - Compatibility fix: GigaStudio 3 expects '3dnm' and '3ddp' RIFF chunks
58     (original patch by Ivan Maguidhir).
59 schoenebeck 3720 - Region::DeleteDimensionZone() and Region::SplitDimensionZone(): Fixed
60     dimensions being in different order after deleting a dimension zone.
61 schoenebeck 3723 - Script: Generate a persistent UUID for each script.
62 schoenebeck 3731 - GIG FORMAT EXTENSION: Added support for script 'patch' variables and
63     accordingly added new methods to Instrument class:
64     IsScriptPatchVariableSet(), GetScriptPatchVariables(),
65     GetScriptPatchVariable(), SetScriptPatchVariable(),
66     UnsetScriptPatchVariable(); stored persistently as new 'SCPV' RIFF chunk
67     as child of our '3LS ' list chunk on Instrument level.
68 schoenebeck 3799 - Fixed undefined behaviour when modifying script slots on an instrument
69     that had been cloned and not been saved yet (e.g. unintended modification
70     of original instrument's script slots, and crash on Instrument destruction
71     due to double free of pScriptRefs).
72 schoenebeck 3623
73 schoenebeck 3770 * src/Serialization.cpp, src/Serialization.h:
74     - Fixed broken Archive(RawData) constructor which always threw an
75     Exception.
76 schoenebeck 3771 - Added built-in support for C++ String objects (a.k.a. std::string
77     from the STL) and bumped Srx format version to 1.1 for that reason.
78 schoenebeck 3773 - Fixed assertion fault on some systems if a member variable defined was
79     serialized which was declared as size_t or ssize_t data type.
80 schoenebeck 3774 - Added new method Archive::operation() which allows applications to
81     distinguish between serialization vs. deserialization in their
82     serialize() method implementations.
83 schoenebeck 3775 - Added built-in support for C++ Array<> objects (a.k.a. std::vector from
84     the STL).
85     - Member offsets are now signed and for (newly added support of) member
86     variables on the heap -1 is always used as offset instead.
87 schoenebeck 3776 - Added built-in support for C++ Set<> objects (a.k.a. std::set from the
88     STL).
89 schoenebeck 3777 - DataType: Added optional 2nd custom type name.
90     - Added built-in support for C++ Map<> objects (a.k.a. std::map from the
91     STL).
92 schoenebeck 3770
93 schoenebeck 3859 * src/helper.h:
94     - Fix compile error with GCC 9 due to ignored result value of vasprintf()
95     function call.
96    
97 schoenebeck 3623 * src/tools/gigdump.cpp:
98     - Print dimension region properties LFO1WaveForm, LFO2WaveForm,
99     LFO3WaveForm, LFO1Phase, LFO2Phase, LFO3Phase, LFO1FlipPhase,
100     LFO2FlipPhase and LFO3FlipPhase.
101    
102 schoenebeck 3524 Version 4.2.0 (25 Jul 2019)
103 schoenebeck 3392
104 schoenebeck 3476 * general changes:
105     - Added MSVC build support (anonymous patch from mailing list).
106     - Introduced CMake build support (yet constrained for building with MSVC)
107     (anonymous patch from mailing list).
108 schoenebeck 3478 - Fix: Don't automatically delete RIFF chunks from DLS/gig classes'
109     destructors. Added new virtual method DeleteChunks() to those classes
110     for this which must be explicitly called instead to remove their RIFF
111     chunks.
112     - Fix: Many methods of DLS/gig classes assumed a RIFF chunk read position
113     of zero; which is unsafe per se.
114     - Added C++11 "override" keyword where appropriate.
115 schoenebeck 3488 - Fixed crash in RIFF, DLS and gig classes which occurred on certain
116     of their actions when not passing a progress_t callback structure.
117 schoenebeck 3476
118 schoenebeck 3398 * src/gig.cpp, src/gig.h:
119     - Fixed Doxygen API comments for enum types (currently latest Doxygen
120     [v1.8.13] only supports C comments in macro arguments expansion, but
121     not C++ comments; see <FindDefineArgs> lexer rules in src/pre.l of
122     the Doxygen source code, which currently also filter out new line
123     \n chars).
124 schoenebeck 3414 - Added new method File::CountSamples().
125     - Added new method File::CountInstruments().
126 schoenebeck 3440 - Fixed gig v4 files falsely being handled as v2 format
127     (patch by Ivan Maguidhir).
128     - Added gig v4 version identifier (File::VERSION_4).
129 schoenebeck 3442 - GIG FORMAT EXTENSION: Added attribute
130     DimensionRegion::SustainReleaseTrigger which allows to define whether
131     a sustain pedal up event shall cause a release trigger sample to be
132     played (default: don't play release trigger sample by sustain pedal).
133 schoenebeck 3447 - GIG FORMAT EXTENSION: Added attribute
134     DimensionRegion::NoNoteOffReleaseTrigger which allows to disable the
135     regular behaviour of playing release trigger sample on MIDI note-off
136     events.
137 schoenebeck 3474 - Introduced support for writing extension files (.gx01, .gx02, ...)
138     (original patch by Ivan Maguidhir).
139 schoenebeck 3478 - Many gig classes derive now from DLS::Storage (see DLS changes below).
140 schoenebeck 3481 - Added File::GetRiffFile() method.
141 schoenebeck 3398
142 schoenebeck 3463 * src/DLS.cpp, src/DLS.h:
143     - File: Fixed implicitly allocated RIFF::File object never been freed.
144 schoenebeck 3478 - Added new abstract interface base class DLS::Storage which is derived by
145     the respective classes for implementing (the old) UpdateChunks() and the
146     new DeleteChunks() method.
147 schoenebeck 3481 - Added File::GetRiffFile() method.
148 schoenebeck 3463
149 schoenebeck 3481 * src/sf2.cpp, src/sf2.h:
150     - Added Sample::GetFile() method.
151     - Added File::GetRiffFile() method.
152    
153 schoenebeck 3392 * src/Serialization.cpp, src/Serialization.h:
154     - Hide pure internal declarations from header file to avoid numerous
155     compiler warnings when building and linking against the public API.
156 persson 3454 - Fixed comparision logic bug
157 schoenebeck 3464 - Fixed memory leak in DataType::customTypeName().
158 schoenebeck 3392
159 schoenebeck 3412 * src/RIFF.cpp, src/RIFF.h:
160     - Fix: Calling File::SetMode() left an undefined file handle on Windows and
161     caused a resource leak
162 persson 3468 - Avoid compiler warning when building for 32 bit windows.
163 schoenebeck 3478 - Added new method progress_t::subdivide().
164 schoenebeck 3481 - Fix: API doc comment for Chunk::GetFilePos() was completely wrong.
165     - progress_t: Added a 2nd (overridden) progress_t::subdivide() method which
166     allows a more fine graded control into which portions the subtasks are
167     divided to.
168 schoenebeck 3412
169 schoenebeck 3425 * src/tools/gigdump.cpp:
170     - Added command line option --instrument-names which causes only
171     instrument names and their index numbers to be printed.
172    
173 schoenebeck 3370 Version 4.1.0 (25 Nov 2017)
174 schoenebeck 2909 * general changes:
175 schoenebeck 2912 - removed 2 GB limitation when loading a gig or DLS file
176 schoenebeck 2922 - using now native integer size where appropriate
177 schoenebeck 3047 - fixed minor issues with man pages (patch by Debian maintainer)
178 schoenebeck 3048 - fixed various spelling mistakes (patch by Debian maintainer)
179 schoenebeck 3138 - Added new "Serialization" framework (and equally named namespace)
180     which allows to serialize and deserialize native C++ objects
181     in a portable, easy and flexible way.
182 schoenebeck 3173 - print compiler warning if no RTTI available
183 schoenebeck 3175 - Fixed potential crash in command line tools gig2stereo, korg2gig,
184     korgdump and sf2extract.
185 schoenebeck 3348 - Fixed CVE-2017-12950, CVE-2017-12952, CVE-2017-12953
186     (original patch by Paul Brossier, slightly modified).
187 schoenebeck 3351 - Debian: Fixed packaging error about invalid substitution variable
188     "Source-Version".
189     - Raised Debian compatibility level to Debian 9 "Stretch".
190 schoenebeck 2909
191 schoenebeck 2912 * src/gig.cpp, src/gig.h:
192 persson 2836 - fixed bug in Script::SetGroup: the script chunk wasn't moved
193     - fixed compilation error with clang 3.4
194 schoenebeck 2912 - GIG FORMAT EXTENSION: added support for saving gig file larger than 4 GB
195 schoenebeck 2913 as one single monolithic gig file. In case .gig file is >= 2GB expect a
196     large monolithic file, otherwise if .gig file is < 2 GB check for
197     "extension" files (.gx01, .gx02, ...) instead.
198 schoenebeck 2923 - fixed Region::UpdateUpdateVelocityTable() which did not work correctly
199     if there were dimensions after the velocity dimension: it only created
200     valid velocity tables for cases of dimensions lower than the velocity
201     dimension.
202 schoenebeck 2985 - added new method Sample::VerifyWaveData() which allows to check whether
203     a sample had been damaged for some reason
204     - Fix: samples' CRC checksums were damaged on file structure changes.
205 schoenebeck 2989 - Fix: samples' CRC checksums were misordered when a Sample was deleted.
206     - Added new method Sample::GetWaveDataCRC32Checksum().
207 schoenebeck 2990 - Changed default value of EG2Release (filter release time) to 60s.
208 schoenebeck 3112 - Instruments' default pitch bend range is now +-2 semi tones.
209 schoenebeck 3115 - Fixed CRC checksums being wrong sometimes.
210 schoenebeck 3117 - Fix: method File::AddContentOf() did not clone script groups and scripts
211     of passed original file.
212 schoenebeck 3138 - Added support for serializing & deserializing DimensionRegion
213     objects (and crossfade_t and leverage_ctrl_t objects).
214 schoenebeck 3169 - Added enum reflection API functions for retrieving enum declaration type
215 schoenebeck 3181 information at runtime (enumCount(), enumKey(), enumKeys(), enumValue()).
216 schoenebeck 3198 - Exception class now has a variadic constructor which allows to add
217     textual format specifiers like with printf().
218     - On unknown leverage controller exception: show precise unknown leverage
219     controller number found.
220 schoenebeck 3203 - Ignore invalid leverage controller types and just show a warning on the
221     console instead of throwing an exception.
222 schoenebeck 3323 - Added new struct eg_opt_t and new class member variable
223 schoenebeck 3327 DimensionRegion::EG1Options and DimensionRegion::EG2Options as an
224     extension to the gig file format, which allows to override the default
225     behavior of the first two EGs' state machines.
226 schoenebeck 3349 - Fixed undefined behavior when loading a gig file with invalid
227     velocity curve parameters (fixes CVE-2017-12951).
228 schoenebeck 3350 - Fixed undefined behavior when loading a gig file with invalid wave
229     pool index number (fixes CVE-2017-12954).
230 schoenebeck 2909
231 schoenebeck 2912 * src/DLS.cpp, src/DLS.h:
232     - Sample: wave pool offsets are now 64 bits (to allow support for files
233     larger than 4 GB).
234 schoenebeck 3198 - Exception class now has a variadic constructor which allows to add
235     textual format specifiers like with printf().
236 persson 3454
237 schoenebeck 2912 * src/RIFF.cpp, src/RIFF.h:
238     - added support for RIFF files larger than 4 GB, by default the required
239     internal RIFF file offset size is automatically detected (that is RIFF
240     files < 4 GB automatically use 32 bit offsets while files >= 4 GB
241     automatically use 64 bit offsets), a particular offset size can be forced
242     with a new option added to the RIFF File constructor though
243     - when saving a modified, grown RIFF file, the temporary file size during
244     Save() operation will no longer be larger than the final grown file size
245 schoenebeck 3198 - Exception class now has a variadic constructor which allows to add
246     textual format specifiers like with printf().
247 schoenebeck 2912
248 schoenebeck 3150 * src/Serialization.cpp, src/Serialization.h:
249     - Archive: Added method isModified().
250     - Archive: Added method setAutoValue().
251     - Archive: Added method setIntValue().
252     - Archive: Added method setRealValue().
253     - Archive: Added method setBoolValue().
254     - Archive: Added method setEnumValue().
255     - Archive: Added method valueAsString().
256     - Archive::rawData(): Automatically re-encode new raw data stream if
257     archive had been modified (i.e. by remove(), setAutoValue(), etc.).
258 schoenebeck 3153 - Object: Added method memberByUID().
259     - Object: remove() method is now protected.
260 schoenebeck 3156 - Archive: Added method removeMember().
261     - Archive: Added methods name() and setName().
262     - Archive: Added methods comment() and setComment().
263     - Archive: Added methods timeStampCreated(), timeStampModified(),
264     dateTimeCreated() and dateTimeModified().
265 schoenebeck 3169 - Archive: Added methods valueAsInt(), valueAsReal() and valueAsBool().
266 schoenebeck 3173 - DataType: Implemented demangling C++ type names (for methods
267     asLongDescr() and customTypeName(bool demangle=false)).
268 schoenebeck 3185 - Archive::setAutoValue(): Handle human readable boolean text
269     representations like "yes", "no", "true", "false" as expected.
270 schoenebeck 3198 - Exception class now has a variadic constructor which allows to add
271     textual format specifiers like with printf().
272 schoenebeck 3334 - DataType fix: Retain backward compatibility to older versions of native
273     C++ classes/structs.
274 schoenebeck 3150
275 schoenebeck 3369 * src/Akai.cpp:
276     - Fixed compilation error with recent, more strict compilers.
277    
278 persson 2836 * src/tools/akaidump.cpp, src/tools/akaiextract.cpp:
279     - improved output of non-ascii characters in usage messages
280     - fixed printf format strings
281 schoenebeck 2909
282 persson 2836 * src/tools/korg2gig.cpp:
283     - fixed c++11 narrowing warnings
284 schoenebeck 2909 - fixed fine tuning which was not translated at all
285 persson 2836
286 schoenebeck 2923 * src/tools/gigdump.cpp:
287     - additionally print VelocityUpperLimit and DimensionUpperLimits of all
288     dimension regions
289 schoenebeck 2984 - additionally print RIFF chunk file offset and RIFF chunk size of sample
290     data
291 schoenebeck 2985 - added and implemented new parameter "--verify" which allows to check
292     the raw wave form data integrity of all samples
293     - added and implemented new parameter "--rebuild-checksums" which allows
294     to recalculate the CRC32 checksum of all samples' raw wave data and
295     rebuilding the gig file's global checksum table (i.e. in case the
296     file's checksum table was damaged)
297 schoenebeck 2989 - print samples' CRC32 checksums
298 schoenebeck 3323 - Print the new EG behavior options (eg_opt_t).
299 schoenebeck 2923
300 schoenebeck 2984 * src/tools/gigextract.cpp:
301     - Fix: if sample name contains a path separator (slash or backslash) then
302     replace them by a minus sign to avoid file system issues.
303    
304 schoenebeck 3115 * src/tools/gig2stereo.cpp:
305     - Also merge mono sample pairs with non matching loop information if
306     argument --incompatible was given.
307    
308 schoenebeck 2912 * packaging changes:
309     - Automake: set environment variable GCC_COLORS=auto to allow GCC to
310     auto detect whether it (sh/c)ould output its messages in color.
311    
312 schoenebeck 2785 Version 4.0.0 (14 Jul 2015)
313 persson 2133 * general changes:
314     - minor Makefile fix for parallel make
315 persson 2182 - Mac OS X: link with CoreFoundation (for the UUID function)
316 persson 2334 - removed gcc 4.7 warnings
317 persson 2364 - modernized configure script
318 persson 2419 - removed usage of deprecated Automake variable INCLUDES
319 schoenebeck 2482 - added new command line tool "gigmerge"
320     - added "const" keyword to several methods
321 schoenebeck 2484 - added new command line tool "gig2mono"
322 schoenebeck 2495 - added man page for "sf2dump"
323 schoenebeck 2543 - added new command line tool "korgdump" (and a man page for it)
324     - added new command line tool "korg2gig" (and a man page for it)
325 schoenebeck 2571 - moved source files of command line tools to new subdir src/tools
326 schoenebeck 2586 - libgig.so and libakai.so files are now installed under
327     $(prefix)/lib/libgig/ by default.
328     - Header files are now installed under $(prefix)/include/libgig/ by default.
329     - Fixed various packaging issues regarding installation directories
330     (fixes #218).
331 schoenebeck 2685 - added new command line tool "gig2stereo" (and a man page for it)
332 schoenebeck 2764 - unit tests: fixed wrong return value when test suite app exits
333     (patch by Ryan Schmidt)
334 schoenebeck 2780 - added new command line tool "sf2extract" (and a man page for it)
335 persson 2133
336 schoenebeck 2465 * SoundFont file format:
337 iliev 2016 - initial implementation
338 persson 2100 - changed region lookup API to avoid malloc in RT threads
339 persson 2202 - fixed GetEG1Sustain which didn't return correct value
340 persson 2381 - bugfix: GetPan always returned -1, 0 or 1
341 iliev 2016
342 schoenebeck 2543 * KORG file format:
343     - initial support for sample based instruments in KORG's file format
344     (.KMP and .KSF files)
345    
346 schoenebeck 2572 * AKAI file format:
347     - Added Linux/POSIX ported version of libakai. Note that libakai is released
348     under LGPL terms while libgig is released under GPL terms. To handle this
349     license difference appropriately the AKAI support part is built as
350     separate DLL (.so file).
351 schoenebeck 2573 - Fixed Mac OSX support so that the Akai lib files and tools compile without
352     any exotic third party libraries.
353 schoenebeck 2574 - Fixed various compilation errors for Windows.
354 schoenebeck 2587 - POSIX fix: open() requires third (mode) argument if used with O_CREAT
355     (fixes #219).
356 schoenebeck 2572
357 persson 2152 * src/gig.cpp:
358     - bugfix: VCF velocity dynamic range and VCF velocity curve
359     weren't saved correctly
360 schoenebeck 2394 - implemented File::AddDuplicateInstrument()
361 persson 2402 - bugfix: negative EG3 depth values were not correctly parsed or
362     saved
363 persson 2450 - added write support for CtrlTrigger midi rule
364     - added read and write support for Legato and Alternator midi
365     rules
366 schoenebeck 2467 - bugfix: sample groups were sometimes created multiple times or with
367     wrong textual group name
368 schoenebeck 2482 - added new method File::AddContentOf() for merging .gig files
369 schoenebeck 2540 - GIG FORMAT EXTENSION: added additional MIDI controllers for leverage
370     controller types (only works with LinuxSampler & gigedit, will not
371     work with Gigasampler/GigaStudio)
372 schoenebeck 2543 - added new method File::GetGroup(String name) for getting group by name
373 schoenebeck 2547 - added new method Region::GetDimensionDefinition(dimension_t type)
374     - bugfix: don't alter region pointer in DimensionRegion::CopyAssign()
375     - added some more sanity checks in Region::AddDimension()
376 schoenebeck 2555 - added new method Region::DeleteDimensionZone(dimension_t, int)
377     - added new method Region::SplitDimensionZone(dimension_t, int)
378 schoenebeck 2564 - Fixed crash caused by Region::GetDimensionRegionByValue() that happened
379     with certain velocity split sounds under certain conditions (added bound
380     constraints to prevent that)
381 schoenebeck 2584 - GIG FORMAT EXTENSION: added support for real-time instrument scripts.
382 schoenebeck 2599 - added new method Region::GetDimensionRegionIndexByValue()
383 schoenebeck 2601 - added new method Script::GetGroup()
384 schoenebeck 2639 - added new method Region::SetDimensionType()
385 schoenebeck 2682 - Added support for custom progress notification while saving to gig file.
386 schoenebeck 2698 - Bugfix: Adding a new region in between two existing regions caused the
387     new one being dropped after save operation and the gig file being tainted
388     (chunks at wrong location in the RIFF tree).
389 schoenebeck 2700 - Added new method Instrument::MoveTo() which allows to rearrange the order
390     of instruments within the same gig file.
391 persson 2152
392 schoenebeck 2274 * src/DLS.cpp, src/DLS.h:
393     - added new method File::GetFileName()
394 persson 2310 - fixed minor "memory leak on exception" bug found with cppcheck
395 schoenebeck 2329 - added new method File::GetExtensionFile(int index)
396 schoenebeck 2482 - added new method File::SetFileName() allowing to call File::Save()
397     later on without passing a file name
398 schoenebeck 2547 - added inline helper methods overlaps() for struct range_t
399 schoenebeck 2682 - Added support for custom progress notification while saving to DLS file.
400 schoenebeck 2698 - Bugfix: Adding a new region in between two existing regions caused the
401     new one being dropped after save operation and the gig file being tainted
402     (chunks at wrong location in the RIFF tree).
403 schoenebeck 2274
404 schoenebeck 2780 * src/SF.cpp, src/SF.h:
405     - added new method Sample::ReadNoClear()
406    
407 persson 2120 * src/RIFF.cpp, src/RIFF.h:
408     - bugfix: avoid calling read() with count 0 when writing a file,
409     as this may hang on some systems
410 persson 2155 - fixed memory leak and memory handling errors when file loading
411     fails
412 persson 2450 - added new method Chunk::ReadString
413 schoenebeck 2482 - added new method File::SetFileName() allowing to call File::Save()
414     later on without passing a file name
415     - added new method File::IsNew()
416 schoenebeck 2543 - added support for loading RIFF-like files with a bit different layout
417     than "real" RIFF files (used for KORG format support)
418     - added new method Chunk::GetFile()
419     - added new method Chunk::GetLayout()
420 schoenebeck 2584 - added 2nd, alternative method for List::MoveSubChunk(), the old 1st one
421     allows to move a subchunk within the current List, whereas the new 2nd
422     one allows to move the subchunk from the current list to another list
423 schoenebeck 2675 - POSIX: only assume -1 result value as error on open() calls
424     - POSIX: show operating system's error reason if opening a file failed
425 schoenebeck 2682 - Added support for custom progress notification while saving to RIFF file.
426 schoenebeck 2685 - Fixed embarrassing old bug: POSIX read() errors were never detected on
427     Chunk::Read() calls due to signment incompatible variable.
428 schoenebeck 2703 - Cleanup of an old DLL binary backward compatibility hack.
429 persson 2120
430 schoenebeck 2465 * src/gigextract.cpp:
431     - export sample loop, unity note and fine tune with libsndfile
432    
433 schoenebeck 2543 * src/riftree.cpp:
434     - added more command line options for being able to also dump other kind
435     of file formats similar but not equal to the RIFF format
436    
437 schoenebeck 1953 Version 3.3.0 (30 Jul 2009)
438 persson 1627
439 persson 1713 * general changes:
440     - fixed compilation with gcc 4.3
441 persson 1869 - fixes for building with Visual C++
442 persson 1894 - minor fix in configure for building DLL on Windows
443 persson 1713
444 persson 1627 * src/gig.cpp, src/gig.h:
445     - added partial support for MIDI rules, only the Controller
446     Triggered rule is supported so far
447 persson 1678 - bugfix: removed another iterator invalidation in DeleteSample
448 schoenebeck 1851 - bugfix in Sample::LoadSampleData*(): reset sample read position to
449     sample start before trying to (re)load sample data from file (#82)
450 persson 1869 - bugfix: EG3 depth parameter was not saved correctly
451 schoenebeck 1875 - fixed crash which occured when streaming a gig sample with
452     bi-directional (a.k.a. 'pingpong') loop type (fixes #102)
453 persson 1627
454 persson 1678 * src/RIFF.cpp, src/RIFF.h:
455     - bugfix: saving to the same file after the file size had been
456     increased made the file corrupt (#82)
457 schoenebeck 1851 - bugfix: refuse Chunk::Read() in case chunk has just been added, that
458     is not written physically yet (#82)
459 persson 1859 - bugfix: saving to the same file after the file size had been
460     decreased sometimes also made the file corrupt!
461 schoenebeck 1863 - bugfix: undefined behavior (e.g. endless loop) when opening zero
462     length files, now throws a RIFF::Exception instead (fixes bug #121)
463 persson 1869 - bugfix: destructor for base class RIFF::Chunk accessed members
464     of derived class RIFF::File, which is bad, and caused crashes
465     when using Visual C++
466 persson 1885 - bugfix: files that contain zero length RIFF lists were not read
467     correctly (fixes #127) (bug was introduced 2009-03-13)
468 persson 1678
469 schoenebeck 1549 Version 3.2.1 (5 Dec 2007)
470 schoenebeck 1459
471     * src/RIFF.cpp, src/RIFF.h:
472     - avoid Windows to perform unnecessary file stream caching which would
473     decrease disk streaming performance on Windows systems otherwise
474    
475 schoenebeck 1524 * src/gig.cpp, src/gig.h:
476     - added File::SetAutoLoad() and File::GetAutoLoad() for allowing
477     applications to retrieve very superficial informations like amount of
478     instruments and their names in a very fast way
479    
480 schoenebeck 1416 Version 3.2.0 (14 Oct 2007)
481 schoenebeck 1154
482 schoenebeck 1172 * packaging changes:
483     - added Mac OSX XCode project files (patch by Toshi Nagata)
484 schoenebeck 1186 - Dev-C++ (win32) project file is automatically updated with
485     the version info from configure.in
486 persson 1330 - the configure script can now be used in Windows with MSYS
487 schoenebeck 1378 - added a mainpage for the Doxygen API documentation
488 schoenebeck 1172
489 schoenebeck 1154 * src/DLS.cpp, src/DLS.h:
490     - added Sampler::AddSampleLoop() and Sampler::DeleteSampleLoop() methods
491 persson 1179 - fixed write support for big-endian systems
492 persson 1180 - improved handling of fixed length info strings - separate default
493     lengths can be specified for each INFO chunk
494 persson 1209 - added Resource::GenerateDLSID function
495 persson 1266 - write support fix: allow regions without mapped samples
496 schoenebeck 1335 - added method SetKeyRange() to the Region class which should be used
497     instead of setting the KeyRange member variable directly
498     - MoveRegion() method of Region class is now private
499 schoenebeck 1358 - added SetGain() method to Sampler class
500 persson 1388 - fixed crash when saving a file after a sample loop was added
501 schoenebeck 1154
502 schoenebeck 1158 * src/gig.cpp, src/gig.h:
503     - fixed segmentation fault in the gig::File destructor sequence which
504     happened when gig::Group informations were accessed before
505 persson 1179 - fixed write support for big-endian systems
506 persson 1180 - defined lengths of a fixed set of info strings. These strings
507     are saved when the file is written, even if they are empty.
508 persson 1182 - added missing parameter initalizations in sample, region and
509     instrument constructors
510     - clear unused fields when saving samples and regions
511     - fixed write support bugs: v3 dimension limits and chunksize
512     weren't saved, leverage controller of type controlchange
513 persson 1195 couldn't be saved, group name list chunk was placed wrong,
514     dimension region chunks also placed wrong
515 persson 1182 - added initialization of some fixed info strings in file and
516     instrument
517 persson 1192 - write support: files created by libgig will now have the RIFF
518     chunks in correct order
519 persson 1199 - write support: two previously unknown fields in dimension
520     definition are now saved
521     - added constants for gig file versions
522     - write support: the 3crc and einf chunks are now created or
523     updated when a file is saved (3crc contains sample checksums,
524     einf contains file statistics)
525 persson 1209 - write support: DLSID is now generated on the file and the
526     instruments
527 persson 1218 - write support: improved the default values for dimension region
528     parameters
529 persson 1247 - more write support fixes: crossfade parameters were not saved,
530     v3 dimension limits were not correctly initialized and saved
531     when dimensions were added or deleted, v3 wave pool offsets were
532     not saved correctly
533 persson 1264 - write support: 24 bit samples can now be written
534     - write support: version 3 is now the default for new files
535 persson 1266 - more write support fixes: the 3ewg chunk is now bigger for v3,
536     dimension regions without mapped samples are now allowed, 3gnl
537     list in v3 files now always has 128 entries, several parameters
538     where incorrectly saved due to an operator precedence mistake
539     - DeleteSample now removes all references to the deleted sample
540 persson 1301 - AddDimension now copies all parameters from existing dimension
541     regions and also makes sure that the samplechannel dimension is
542     placed first in the list of dimensions.
543 schoenebeck 1316 - added method GetParent() to class 'DimensionRegion', which returns its
544     parent Region
545 schoenebeck 1335 - fixed Instrument::UpdateRegionKeyTable() method which did not reset
546     unused areas
547 schoenebeck 1358 - added various setter methods to DimensionRegion class which take care
548     of updating lookup tables / caches.
549 schoenebeck 1158
550 persson 1183 * src/RIFF.cpp, src/RIFF.h:
551 persson 1184 - added File::SetByteOrder method
552 persson 1301 - Windows fix: saving a new file didn't work
553 persson 1183
554 persson 1264 * src/gigdump.cpp:
555     - added some missing dimension strings
556    
557 schoenebeck 1116 Version 3.1.1 (24 Mar 2007)
558 schoenebeck 1050
559     * packaging changes:
560     - ported to Windows using native Windows functions for file IO
561     (provided Dev-C++ + mingw project file)
562 schoenebeck 1079 - only export relevant files to Doxygen API documentation
563 schoenebeck 1050
564 persson 1070 * src/gig.cpp, src/gig.h:
565     - custom velocity splits now works for gig v3 files too
566     - added support for custom splits points for other dimensions than
567     velocity (gig v3 feature)
568 persson 1076 - added "smart midi" and "round robin keyboard" dimensions
569 schoenebeck 1081 - added new method File::DeleteGroupOnly() which only deletes the given
570     group but moves all its members to another group, the other method,
571     that is File::DeleteGroup() now removes not just the group, but also
572     all the samples that belong to that group
573 schoenebeck 1083 - fixed crash which occured on interfering File::DeleteSample() and
574     File::GetNextSample() calls (due to iterator invalidation)
575 schoenebeck 1098 - fixed group names which were not saved
576 schoenebeck 1099 - fixed group destructor which did not remove the RIFF chunk associated
577     with the group
578 persson 1102 - added Instrument::MoveRegion method
579     - fixed constructor for Region, which did not initialize correctly
580     when used from Instrument::AddRegion
581 schoenebeck 1106 - when saving, override the gig::Regions sample reference simply by
582     the region's first dimension region's sample (avoids an exception
583     when trying to save a new instrument)
584 schoenebeck 1113 - fixed AddDimension() method which did not fill out all mandatory
585     dimension definition fields
586 persson 1070
587 persson 1102 * src/DLS.cpp, src/DLS.h:
588     - added Instrument::MoveRegion method
589 schoenebeck 1106 - fixed software info field which was wrongly stored on instruments,
590     causing an exception when trying to save a new instrument
591 persson 1102
592 schoenebeck 1095 * src/RIFF.cpp, src/RIFF.h:
593     - fixed RIFF::Chunk destructor which did not unregister previously
594     resized chunks, leading to a "zero size chunk" exception when
595     File::Save() was called
596 persson 1102 - added List::MoveSubChunk method
597 schoenebeck 1095
598 schoenebeck 933 Version 3.1.0 (24 Nov 2006)
599 persson 858
600 capela 867 * packaging changes:
601     - changed deprecated copyright attribute to license;
602     added ldconfig to post-(un)install steps on libgig.spec (RPM)
603 persson 902
604 persson 858 * src/gig.cpp, src/gig.h:
605     - added support for more than one set of custom velocity splits
606     inside a region (for example different velocity split levels for
607     pedal up and pedal down)
608 persson 864 - sample loop parameters are now taken from the DimensionRegion
609     instead of the wave chunk
610     - keyswitching dimension is changed from split type "normal" to
611     "bit"
612 persson 902 - real support for 24 bit samples - samples are not truncated to
613     16 bits anymore
614     - support for reading of ".art" files. (Merging of .art and .gig
615     files are not implemented yet.)
616 persson 918 - several fixes for the write support
617 schoenebeck 929 - support for sample groups added
618 persson 858
619 persson 918 * src/DLS.cpp, src/DLS.h:
620 persson 902 - support for reading of ".art" files
621 persson 918 - removed incorrect use of memccpy in the write support (patch by
622     Jeremy Kerr)
623     - several fixes for the write support
624 persson 902
625     * src/gigextract.cpp:
626     - real support for 24 bit samples
627    
628 schoenebeck 916 * src/gigdump.cpp:
629     - print global file informations
630 schoenebeck 929 - print sample groups
631 schoenebeck 916
632 schoenebeck 917 * general changes:
633     - added CPPUnit test cases (at the moment primarily for automatic check
634     of Gigasampler write support)
635    
636 schoenebeck 854 Version 3.0.0 (28 Apr 2006)
637 persson 773
638 schoenebeck 780 * general changes:
639 schoenebeck 809 - added write support (that is for creating and modifying RIFF, DLS and
640     gig files)
641     - loading DLS and gig files is now much more permissive, DLS and gig
642     files are now loaded even if mandatory RIFF chunks are missing
643 persson 834 - fixed some memory management errors, one of them was causing a
644     crash when a multi-file gig was deallocated
645 schoenebeck 780
646 persson 773 * src/gig.cpp, src/gig.h:
647     - fixed the GetVelocityCutoff function, it wasn't always using the
648     VCFVelocityScale parameter when no cutoff controller was defined
649 persson 774 - support for the gig v3 feature to have a number of dimension
650     splits not equal to a power of two
651 schoenebeck 809 - added write support (highly experimental)
652 persson 773
653 schoenebeck 800 * src/DLS.cpp, src/DLS.h:
654     - fixed loading of Articulation Connections (<artl> list chunks were
655     seeked instead of ordinary <artl> data chunks)
656     - added write support (highly experimental)
657    
658     * src/RIFF.cpp, src/RIFF.h:
659     - added write support
660     - Chunk::LoadChunkData() can now be called again to resize the buffer
661     after a Chunk::Resize() and before the File::Save() call to allow
662     placing the new data in the chunk's write buffer and perform the
663     resize and write operations in one rush
664    
665 schoenebeck 809 * src/gigdump.cpp:
666     - fixed to show the correct amount of dimension regions instead of 32
667     (patch by James Wylder)
668    
669 schoenebeck 804 * src/dlsdump.cpp:
670     - show for every region the name of the referenced sample
671     - show file name in quotation marks
672    
673 schoenebeck 732 Version 2.0.2 (15 Aug 2005)
674 schoenebeck 652
675     * packaging changes:
676     - require automake (>= 1.5) for 'make -f Makefile.cvs'
677     (mandatory for 'dist-bzip2' automake option)
678    
679 persson 666 * src/gig.cpp, src/gig.h:
680     - support for gig v3 multi-file format (.gig, .gx01, .gx02, ...),
681     the extension files are read automatically when the samples are
682     loaded
683 persson 695 - fixed the 24 bit decompression, the result should now be exact
684     instead of an approximation
685 persson 728 - added VCFCutoffControllerInvert parameter and GetVelocityCutoff
686     function to DimensionRegion
687 persson 666
688     * src/DLS.cpp, src/DLS.h:
689     - the upper bits of the pool table indices are read (used as
690     extension file numbers for gig v3)
691    
692     * src/RIFF.cpp, src/RIFF.h:
693     - the file name is remembered in the RIFF::File object
694    
695 schoenebeck 632 Version 2.0.1 (12 Jun 2005)
696 schoenebeck 549
697 schoenebeck 634 * packaging changes:
698     - include debian/ directory on 'make dist'
699     - create a bzip2 tarball on 'make dist'
700    
701 schoenebeck 549 * src/gigextract.cpp:
702     - show also version of libsndfile or build version of libaudiofile when
703     using the -v switch
704 schoenebeck 608 - fixed mutual link dependency to libsndfile / libaudiofile
705 schoenebeck 549
706 persson 613 * src/gig.cpp, src/gig.h:
707     - added DimensionRegion::GetVelocityRelease function
708    
709 schoenebeck 530 Version 2.0.0 (9 May 2005)
710 schoenebeck 317
711 schoenebeck 383 * packaging changes:
712     - fixed conditional linkage of either libsndfile or libaudiofile
713     (if none of the two exist, configure script will abort)
714 schoenebeck 518 - man pages are now auto generated with the correct libgig version
715 schoenebeck 383
716 schoenebeck 317 * src/gig.cpp, src/gig.h:
717     - experimental support for Gigasampler v3 format;
718     64 bit file offsets are truncated to 32 bit, 24 bit samples are
719 schoenebeck 347 truncated to 16 bit, up to 8 dimensions are read, additional
720     articulation informations are ignored at the moment
721     (patch by Andreas Persson)
722 schoenebeck 317 - added some file format compatibility checks
723 schoenebeck 345 - fixed vcf_type_lowpassturbo value (vcf_type_lowpassturbo was actually
724     never used, because the necessary check was made before
725     initialization)
726     - fixed crossfade points order (structure for big endian and little
727     endian systems was interchanged)
728 schoenebeck 355 - fixed some memory leaks (patch by 'Gene', a.k.a Anders Alm)
729 schoenebeck 352 - fixed crash which occured when patches did not have a sample assigned
730     to their region or dimension region (patch by Andreas Persson)
731 persson 365 - support for compressed mono samples
732     - experimental support for compressed 24 bit samples
733     - fixed decompression on big-endian CPUs
734     - fixed decompression bug that truncated the last block of samples
735 schoenebeck 384 - external decompression buffers can now be used for streaming samples
736     to avoid race conditions in case of multiple streaming threads
737 persson 406 - added pre-calculated sample attenuation parameter
738 persson 437 - added v3 "random" and "round robin" dimensions
739 schoenebeck 515 - implemented progress indicator callback mechanism for loading
740     instruments and samples
741 schoenebeck 518 - added functions libraryName() and libraryVersion()
742 schoenebeck 317
743 schoenebeck 518 * src/DLS.cpp, src/DLS.h:
744 schoenebeck 515 - fixed File constructor which caused variable File::Instruments always
745     to be zero
746 schoenebeck 518 - added functions libraryName() and libraryVersion()
747 schoenebeck 515
748 schoenebeck 518 * src/RIFF.cpp, src/RIFF.h:
749 schoenebeck 515 - fixed method List::LoadSubChunks() which did not restore the original
750     position within the body of the given list chunk
751 schoenebeck 518 - added functions libraryName() and libraryVersion()
752 schoenebeck 515
753 schoenebeck 518 * src/rifftree.cpp:
754     - added command line switch -v to show rifftree's revision and the used
755     libgig version
756    
757     * src/dlsdump.cpp:
758     - added command line switch -v to show dlsdump's revision and the used
759     libgig version
760    
761 schoenebeck 334 * src/gigdump.cpp:
762 schoenebeck 530 - added output of UnityNote, FineTune, Gain, SampleStartOffset an
763     LoopPlayCount
764 schoenebeck 518 - added command line switch -v to show gigdump's revision and the used
765     libgig version
766 schoenebeck 334
767 persson 365 * src/gigextract.cpp:
768     - support for compressed mono samples and compressed 24 bit samples
769 schoenebeck 518 - added command line switch -v to show gigextract's revision and the
770     used libgig version
771 persson 365
772 schoenebeck 315 Version 1.0.0 (26 Nov 2004)
773 schoenebeck 196
774     * packaging changes:
775     - renamed 'libgig.pc.in' -> 'gig.pc.in' and renamed pkg-config lib name
776     'libgig' -> 'gig' as it's common practice to omit the 'lib' prefix
777 schoenebeck 315 - fixed man pages automake install rule (which didn't work on Mandrake,
778     SuSE and Fedora)
779     - fixed generation of Doxygen API documentation (now also included in
780     RPM and Debian packages)
781 schoenebeck 196
782 schoenebeck 231 * src/gig.cpp, src/gig.h:
783     - fixed / improved accuracy of all three velocity to volume
784 schoenebeck 315 transformation functions a.k.a. 'nonlinear','linear','special'
785     (patch by Andreas Persson)
786 schoenebeck 231 - denormals are filtered from the velocity to volume tables
787 schoenebeck 241 - bugfix for dimension region switching (wrong handling of the release
788     trigger dimension, no bit range check for dimensions of split type
789     'split_type_bit')
790 schoenebeck 269 - fixed panorama value in DimensionRegion (invalid conversion from
791     signed 7 bit to signed 8 bit)
792 schoenebeck 282 - added class attribute 'Layers' to class 'gig::Region'
793 schoenebeck 315 - symbol prototyping of gig::Region (fixes build failure with qsampler)
794 schoenebeck 231
795 schoenebeck 220 * src/gigextract.cpp:
796     - added support for libsndfile (if libaudiofile and libsndfile are
797     available then libsndfile is preferred)
798    
799 schoenebeck 229 * src/gigdump.cpp:
800     - added printout for dimension informations (amount, type, bits, zones)
801 schoenebeck 231 - added printout for velocity response curve parameters
802 schoenebeck 235 - added printout for crossfade definitions
803 schoenebeck 269 - added printout for panorama value for each DimensionRegion
804 schoenebeck 282 - replaced printout of DLS Region layer by printout of amount of
805     Gigasampler layers
806 schoenebeck 229
807 capela 168 Version 0.7.1 (2 Jul 2004)
808    
809     * packaging changes:
810 schoenebeck 192 - added libgig.spec and libgig.pc package configurations for generating
811     Redhat packages
812 capela 168 - header files included on installation.
813     - autotools-generated files removed from CVS repository.
814 schoenebeck 186 - added support for generating Debian packages
815     - version of shared library can be set in configure.in
816    
817 schoenebeck 58 Version 0.7.0 (3 May 2004)
818    
819     * general changes:
820     - various big endian specific corrections
821     (successfully tested now on PPC)
822     - minor adjustments to avoid compile errors on some systems
823     (using now pow() instead of powl() and --pedantic g++ compiler switch)
824     - libtoolized the library
825     - added man pages for the command line tools
826     (gigextract, gigdump, dlsdump, rifftree)
827    
828     * src/gig.cpp, src/gig.h:
829     - fixed bug in decompression algorithm which caused it not to detect
830     the end of a stream
831     - added method GetVelocityAttenuation() to class 'DimensionRegion' which
832     takes the MIDI key velocity value as an argument and returns the
833     appropriate volume factor (0.0 ... 1.0) for the sample to be played
834     back, the velocity curve transformation functions used for this are
835     only an approximation so far
836     - fixed class attributes 'Sample::LoopStart', 'Sample::LoopEnd' and
837     'Sample::LoopSize' which reflected wrong values
838     - class attributes 'Sample::LoopStart' and 'Sample::LoopEnd' are now
839     measured in sample points instead of byte offset
840     - renamed misleading attribute name 'Sample::MIDIPitchFraction' to
841     'Sample::FineTune'
842     - added class attribute 'Sample::LoopSize'
843     - added method GetInstrument(uint index) to class 'File'
844     - added ReadAndLoop() method to class 'Sample' which is an extension to
845     the normal Read() method to honor the sample's looping information
846     while streaming from disk
847     - changed interface for 'attenuation_ctrl_t', 'eg1_ctrl_t' and
848     'eg2_ctrl_t': replaced this huge enumeration by a structure which
849     reflects the MIDI controller number in case of an ordinary control
850     change controller (this saves a huge switch-case block in the
851     application of the library user)
852     - renamed following attributes in class 'DimensionRegion':
853     'AttenuationContol' -> 'AttenuationController',
854     'InvertAttenuationControl' -> 'InvertAttenuationController',
855     'AttenuationControlTreshold' -> 'AttenuationControllerThreshold'
856     - minor fix in API documentation for method GetVelocityAttenuation() in
857     class 'DimensionRegion'
858    
859     * src/RIFF.cpp, src/RIFF.h:
860     - added additional API documentation
861     - minor fix in Chunk::Read() method (only a minor efficiency issue)
862    
863     * src/gigdump.cpp:
864     - added printout of samples' looping informations
865    
866 schoenebeck 11 Version 0.6.0 (3 Nov 2003)
867    
868     * initial release

  ViewVC Help
Powered by ViewVC