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

Diff of /libgig/trunk/ChangeLog

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

revision 3656 by schoenebeck, Sat Dec 14 17:04:28 2019 UTC revision 3900 by schoenebeck, Wed May 12 17:25:27 2021 UTC
# Line 1  Line 1 
1  Version SVN trunk (?)  Version SVN trunk (?)
2    
3      * src/SF.cpp, src/SF.h:
4        - File::DeleteInstrument(): Fix clang sanatizer warning.
5    
6    Version 4.3.0 (9 May 2021)
7    
8    * general changes:    * general changes:
9      - Require at least a C++11 compliant compiler.      - Require at least a C++11 compliant compiler.
10        - Require some UUID generating function by underlying system.
11    
12    * src/gig.cpp, src/gig.h:    * src/gig.cpp, src/gig.h:
13      - GIG FORMAT EXTENSION: Added attributes DimensionRegion::LFO1WaveForm,      - GIG FORMAT EXTENSION: Added attributes DimensionRegion::LFO1WaveForm,
# Line 15  Version SVN trunk (?) Line 21  Version SVN trunk (?)
21      - GIG FORMAT EXTENSION: Added attribute DimensionRegion::LFO3FlipPhase      - GIG FORMAT EXTENSION: Added attribute DimensionRegion::LFO3FlipPhase
22        (the original Gigasampler/GigaStudio software only had that flip phase        (the original Gigasampler/GigaStudio software only had that flip phase
23        option for LFO1 and LFO2).        option for LFO1 and LFO2).
24      - Added method DimensionRegion::UsesAnyGigFormatExtension() (however only as      - Added methods DimensionRegion::UsesAnyGigFormatExtension(),
25        private method yet, see comments on method why).        Region::UsesAnyGigFormatExtension(),
26          Instrument::UsesAnyGigFormatExtension() and
27          File::UsesAnyGigFormatExtension() (however only as private methods yet,
28          see comments on methods why).
29      - GIG FORMAT EXTENSION: added LinuxSampler specific filter type      - GIG FORMAT EXTENSION: added LinuxSampler specific filter type
30        implementations to enum vcf_type_t: vcf_type_lowpass_1p,        implementations to enum vcf_type_t: vcf_type_lowpass_1p,
31        vcf_type_lowpass_2p, vcf_type_lowpass_4p, vcf_type_lowpass_6p,        vcf_type_lowpass_2p, vcf_type_lowpass_4p, vcf_type_lowpass_6p,
# Line 24  Version SVN trunk (?) Line 33  Version SVN trunk (?)
33        vcf_type_highpass_6p, vcf_type_bandpass_2p, vcf_type_bandreject_2p.        vcf_type_highpass_6p, vcf_type_bandpass_2p, vcf_type_bandreject_2p.
34      - Compatibility fix: GigaStudio always expects 128 '3gnm' RIFF chunks      - Compatibility fix: GigaStudio always expects 128 '3gnm' RIFF chunks
35        (patch by Ivan Maguidhir).        (patch by Ivan Maguidhir).
36        - Compatibility fix: GigaStudio 3 expects '3dnm' and '3ddp' RIFF chunks
37          (original patch by Ivan Maguidhir).
38        - Region::DeleteDimensionZone() and Region::SplitDimensionZone(): Fixed
39          dimensions being in different order after deleting a dimension zone.
40        - Script: Generate a persistent UUID for each script.
41        - GIG FORMAT EXTENSION: Added support for script 'patch' variables and
42          accordingly added new methods to Instrument class:
43          IsScriptPatchVariableSet(), GetScriptPatchVariables(),
44          GetScriptPatchVariable(), SetScriptPatchVariable(),
45          UnsetScriptPatchVariable(); stored persistently as new 'SCPV' RIFF chunk
46          as child of our '3LS ' list chunk on Instrument level.
47        - Fixed undefined behaviour when modifying script slots on an instrument
48          that had been cloned and not been saved yet (e.g. unintended modification
49          of original instrument's script slots, and crash on Instrument destruction
50          due to double free of pScriptRefs).
51    
52      * src/Serialization.cpp, src/Serialization.h:
53        - Fixed broken Archive(RawData) constructor which always threw an
54          Exception.
55        - Added built-in support for C++ String objects (a.k.a. std::string
56          from the STL) and bumped Srx format version to 1.1 for that reason.
57        - Fixed assertion fault on some systems if a member variable defined was
58          serialized which was declared as size_t or ssize_t data type.
59        - Added new method Archive::operation() which allows applications to
60          distinguish between serialization vs. deserialization in their
61          serialize() method implementations.
62        - Added built-in support for C++ Array<> objects (a.k.a. std::vector from
63          the STL).
64        - Member offsets are now signed and for (newly added support of) member
65          variables on the heap -1 is always used as offset instead.
66        - Added built-in support for C++ Set<> objects (a.k.a. std::set from the
67          STL).
68        - DataType: Added optional 2nd custom type name.
69        - Added built-in support for C++ Map<> objects (a.k.a. std::map from the
70          STL).
71    
72      * src/helper.h:
73        - Fix compile error with GCC 9 due to ignored result value of vasprintf()
74          function call.
75    
76    * src/tools/gigdump.cpp:    * src/tools/gigdump.cpp:
77      - Print dimension region properties LFO1WaveForm, LFO2WaveForm,      - Print dimension region properties LFO1WaveForm, LFO2WaveForm,

Legend:
Removed from v.3656  
changed lines
  Added in v.3900

  ViewVC Help
Powered by ViewVC